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 /* STEP_UP_TIME and STEP_DOWN_TIME regs are swapped for all chips but NCT6775 */
354 #define NCT6776_REG_FAN_STEP_UP_TIME NCT6775_REG_FAN_STEP_DOWN_TIME
355 #define NCT6776_REG_FAN_STEP_DOWN_TIME NCT6775_REG_FAN_STEP_UP_TIME
357 static const s8 NCT6776_ALARM_BITS
[] = {
358 0, 1, 2, 3, 8, 21, 20, 16, /* in0.. in7 */
359 17, -1, -1, -1, -1, -1, -1, /* in8..in14 */
361 6, 7, 11, 10, 23, /* fan1..fan5 */
362 -1, -1, -1, /* unused */
363 4, 5, 13, -1, -1, -1, /* temp1..temp6 */
364 12, 9 }; /* intrusion0, intrusion1 */
366 static const u16 NCT6776_REG_BEEP
[NUM_REG_BEEP
] = { 0xb2, 0xb3, 0xb4, 0xb5 };
368 static const s8 NCT6776_BEEP_BITS
[] = {
369 0, 1, 2, 3, 4, 5, 6, 7, /* in0.. in7 */
370 8, -1, -1, -1, -1, -1, -1, /* in8..in14 */
371 24, /* global beep enable */
372 25, 26, 27, 28, 29, /* fan1..fan5 */
373 -1, -1, -1, /* unused */
374 16, 17, 18, 19, 20, 21, /* temp1..temp6 */
375 30, 31 }; /* intrusion0, intrusion1 */
377 static const u16 NCT6776_REG_TOLERANCE_H
[] = {
378 0x10c, 0x20c, 0x30c, 0x80c, 0x90c, 0xa0c };
380 static const u8 NCT6776_REG_PWM_MODE
[] = { 0x04, 0, 0, 0, 0, 0 };
381 static const u8 NCT6776_PWM_MODE_MASK
[] = { 0x01, 0, 0, 0, 0, 0 };
383 static const u16 NCT6776_REG_FAN_MIN
[] = { 0x63a, 0x63c, 0x63e, 0x640, 0x642 };
384 static const u16 NCT6776_REG_FAN_PULSES
[] = { 0x644, 0x645, 0x646, 0, 0 };
386 static const u16 NCT6776_REG_WEIGHT_DUTY_BASE
[] = {
387 0x13e, 0x23e, 0x33e, 0x83e, 0x93e, 0xa3e };
389 static const u16 NCT6776_REG_TEMP_CONFIG
[ARRAY_SIZE(NCT6775_REG_TEMP
)] = {
390 0x18, 0x152, 0x252, 0x628, 0x629, 0x62A };
392 static const char *const nct6776_temp_label
[] = {
407 "PCH_CHIP_CPU_MAX_TEMP",
418 static const u16 NCT6776_REG_TEMP_ALTERNATE
[ARRAY_SIZE(nct6776_temp_label
) - 1]
419 = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x401, 0x402, 0x404 };
421 static const u16 NCT6776_REG_TEMP_CRIT
[ARRAY_SIZE(nct6776_temp_label
) - 1]
422 = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x709, 0x70a };
424 /* NCT6779 specific data */
426 static const u16 NCT6779_REG_IN
[] = {
427 0x480, 0x481, 0x482, 0x483, 0x484, 0x485, 0x486, 0x487,
428 0x488, 0x489, 0x48a, 0x48b, 0x48c, 0x48d, 0x48e };
430 static const u16 NCT6779_REG_ALARM
[NUM_REG_ALARM
] = {
431 0x459, 0x45A, 0x45B, 0x568 };
433 static const s8 NCT6779_ALARM_BITS
[] = {
434 0, 1, 2, 3, 8, 21, 20, 16, /* in0.. in7 */
435 17, 24, 25, 26, 27, 28, 29, /* in8..in14 */
437 6, 7, 11, 10, 23, /* fan1..fan5 */
438 -1, -1, -1, /* unused */
439 4, 5, 13, -1, -1, -1, /* temp1..temp6 */
440 12, 9 }; /* intrusion0, intrusion1 */
442 static const s8 NCT6779_BEEP_BITS
[] = {
443 0, 1, 2, 3, 4, 5, 6, 7, /* in0.. in7 */
444 8, 9, 10, 11, 12, 13, 14, /* in8..in14 */
445 24, /* global beep enable */
446 25, 26, 27, 28, 29, /* fan1..fan5 */
447 -1, -1, -1, /* unused */
448 16, 17, -1, -1, -1, -1, /* temp1..temp6 */
449 30, 31 }; /* intrusion0, intrusion1 */
451 static const u16 NCT6779_REG_FAN
[] = {
452 0x4b0, 0x4b2, 0x4b4, 0x4b6, 0x4b8, 0x4ba };
453 static const u16 NCT6779_REG_FAN_PULSES
[] = {
454 0x644, 0x645, 0x646, 0x647, 0x648, 0x649 };
456 static const u16 NCT6779_REG_CRITICAL_PWM_ENABLE
[] = {
457 0x136, 0x236, 0x336, 0x836, 0x936, 0xa36 };
458 #define NCT6779_CRITICAL_PWM_ENABLE_MASK 0x01
459 static const u16 NCT6779_REG_CRITICAL_PWM
[] = {
460 0x137, 0x237, 0x337, 0x837, 0x937, 0xa37 };
462 static const u16 NCT6779_REG_TEMP
[] = { 0x27, 0x150 };
463 static const u16 NCT6779_REG_TEMP_MON
[] = { 0x73, 0x75, 0x77, 0x79, 0x7b };
464 static const u16 NCT6779_REG_TEMP_CONFIG
[ARRAY_SIZE(NCT6779_REG_TEMP
)] = {
466 static const u16 NCT6779_REG_TEMP_HYST
[ARRAY_SIZE(NCT6779_REG_TEMP
)] = {
468 static const u16 NCT6779_REG_TEMP_OVER
[ARRAY_SIZE(NCT6779_REG_TEMP
)] = {
471 static const u16 NCT6779_REG_TEMP_OFFSET
[] = {
472 0x454, 0x455, 0x456, 0x44a, 0x44b, 0x44c };
474 static const char *const nct6779_temp_label
[] = {
493 "PCH_CHIP_CPU_MAX_TEMP",
504 static const u16 NCT6779_REG_TEMP_ALTERNATE
[ARRAY_SIZE(nct6779_temp_label
) - 1]
505 = { 0x490, 0x491, 0x492, 0x493, 0x494, 0x495, 0, 0,
506 0, 0, 0, 0, 0, 0, 0, 0,
507 0, 0x400, 0x401, 0x402, 0x404, 0x405, 0x406, 0x407,
510 static const u16 NCT6779_REG_TEMP_CRIT
[ARRAY_SIZE(nct6779_temp_label
) - 1]
511 = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x709, 0x70a };
513 /* NCT6791 specific data */
515 #define NCT6791_REG_HM_IO_SPACE_LOCK_ENABLE 0x28
517 static const u16 NCT6791_REG_WEIGHT_TEMP_SEL
[6] = { 0, 0x239 };
518 static const u16 NCT6791_REG_WEIGHT_TEMP_STEP
[6] = { 0, 0x23a };
519 static const u16 NCT6791_REG_WEIGHT_TEMP_STEP_TOL
[6] = { 0, 0x23b };
520 static const u16 NCT6791_REG_WEIGHT_DUTY_STEP
[6] = { 0, 0x23c };
521 static const u16 NCT6791_REG_WEIGHT_TEMP_BASE
[6] = { 0, 0x23d };
522 static const u16 NCT6791_REG_WEIGHT_DUTY_BASE
[6] = { 0, 0x23e };
524 static const u16 NCT6791_REG_ALARM
[NUM_REG_ALARM
] = {
525 0x459, 0x45A, 0x45B, 0x568, 0x45D };
527 static const s8 NCT6791_ALARM_BITS
[] = {
528 0, 1, 2, 3, 8, 21, 20, 16, /* in0.. in7 */
529 17, 24, 25, 26, 27, 28, 29, /* in8..in14 */
531 6, 7, 11, 10, 23, 33, /* fan1..fan6 */
533 4, 5, 13, -1, -1, -1, /* temp1..temp6 */
534 12, 9 }; /* intrusion0, intrusion1 */
537 /* NCT6102D/NCT6106D specific data */
539 #define NCT6106_REG_VBAT 0x318
540 #define NCT6106_REG_DIODE 0x319
541 #define NCT6106_DIODE_MASK 0x01
543 static const u16 NCT6106_REG_IN_MAX
[] = {
544 0x90, 0x92, 0x94, 0x96, 0x98, 0x9a, 0x9e, 0xa0, 0xa2 };
545 static const u16 NCT6106_REG_IN_MIN
[] = {
546 0x91, 0x93, 0x95, 0x97, 0x99, 0x9b, 0x9f, 0xa1, 0xa3 };
547 static const u16 NCT6106_REG_IN
[] = {
548 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x07, 0x08, 0x09 };
550 static const u16 NCT6106_REG_TEMP
[] = { 0x10, 0x11, 0x12, 0x13, 0x14, 0x15 };
551 static const u16 NCT6106_REG_TEMP_MON
[] = { 0x18, 0x19, 0x1a };
552 static const u16 NCT6106_REG_TEMP_HYST
[] = {
553 0xc3, 0xc7, 0xcb, 0xcf, 0xd3, 0xd7 };
554 static const u16 NCT6106_REG_TEMP_OVER
[] = {
555 0xc2, 0xc6, 0xca, 0xce, 0xd2, 0xd6 };
556 static const u16 NCT6106_REG_TEMP_CRIT_L
[] = {
557 0xc0, 0xc4, 0xc8, 0xcc, 0xd0, 0xd4 };
558 static const u16 NCT6106_REG_TEMP_CRIT_H
[] = {
559 0xc1, 0xc5, 0xc9, 0xcf, 0xd1, 0xd5 };
560 static const u16 NCT6106_REG_TEMP_OFFSET
[] = { 0x311, 0x312, 0x313 };
561 static const u16 NCT6106_REG_TEMP_CONFIG
[] = {
562 0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xbc };
564 static const u16 NCT6106_REG_FAN
[] = { 0x20, 0x22, 0x24 };
565 static const u16 NCT6106_REG_FAN_MIN
[] = { 0xe0, 0xe2, 0xe4 };
566 static const u16 NCT6106_REG_FAN_PULSES
[] = { 0xf6, 0xf6, 0xf6, 0, 0 };
567 static const u16 NCT6106_FAN_PULSE_SHIFT
[] = { 0, 2, 4, 0, 0 };
569 static const u8 NCT6106_REG_PWM_MODE
[] = { 0xf3, 0xf3, 0xf3 };
570 static const u8 NCT6106_PWM_MODE_MASK
[] = { 0x01, 0x02, 0x04 };
571 static const u16 NCT6106_REG_PWM
[] = { 0x119, 0x129, 0x139 };
572 static const u16 NCT6106_REG_PWM_READ
[] = { 0x4a, 0x4b, 0x4c };
573 static const u16 NCT6106_REG_FAN_MODE
[] = { 0x113, 0x123, 0x133 };
574 static const u16 NCT6106_REG_TEMP_SEL
[] = { 0x110, 0x120, 0x130 };
575 static const u16 NCT6106_REG_TEMP_SOURCE
[] = {
576 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5 };
578 static const u16 NCT6106_REG_CRITICAL_TEMP
[] = { 0x11a, 0x12a, 0x13a };
579 static const u16 NCT6106_REG_CRITICAL_TEMP_TOLERANCE
[] = {
580 0x11b, 0x12b, 0x13b };
582 static const u16 NCT6106_REG_CRITICAL_PWM_ENABLE
[] = { 0x11c, 0x12c, 0x13c };
583 #define NCT6106_CRITICAL_PWM_ENABLE_MASK 0x10
584 static const u16 NCT6106_REG_CRITICAL_PWM
[] = { 0x11d, 0x12d, 0x13d };
586 static const u16 NCT6106_REG_FAN_STEP_UP_TIME
[] = { 0x114, 0x124, 0x134 };
587 static const u16 NCT6106_REG_FAN_STEP_DOWN_TIME
[] = { 0x115, 0x125, 0x135 };
588 static const u16 NCT6106_REG_FAN_STOP_OUTPUT
[] = { 0x116, 0x126, 0x136 };
589 static const u16 NCT6106_REG_FAN_START_OUTPUT
[] = { 0x117, 0x127, 0x137 };
590 static const u16 NCT6106_REG_FAN_STOP_TIME
[] = { 0x118, 0x128, 0x138 };
591 static const u16 NCT6106_REG_TOLERANCE_H
[] = { 0x112, 0x122, 0x132 };
593 static const u16 NCT6106_REG_TARGET
[] = { 0x111, 0x121, 0x131 };
595 static const u16 NCT6106_REG_WEIGHT_TEMP_SEL
[] = { 0x168, 0x178, 0x188 };
596 static const u16 NCT6106_REG_WEIGHT_TEMP_STEP
[] = { 0x169, 0x179, 0x189 };
597 static const u16 NCT6106_REG_WEIGHT_TEMP_STEP_TOL
[] = { 0x16a, 0x17a, 0x18a };
598 static const u16 NCT6106_REG_WEIGHT_DUTY_STEP
[] = { 0x16b, 0x17b, 0x17c };
599 static const u16 NCT6106_REG_WEIGHT_TEMP_BASE
[] = { 0x16c, 0x17c, 0x18c };
600 static const u16 NCT6106_REG_WEIGHT_DUTY_BASE
[] = { 0x16d, 0x17d, 0x18d };
602 static const u16 NCT6106_REG_AUTO_TEMP
[] = { 0x160, 0x170, 0x180 };
603 static const u16 NCT6106_REG_AUTO_PWM
[] = { 0x164, 0x174, 0x184 };
605 static const u16 NCT6106_REG_ALARM
[NUM_REG_ALARM
] = {
606 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d };
608 static const s8 NCT6106_ALARM_BITS
[] = {
609 0, 1, 2, 3, 4, 5, 7, 8, /* in0.. in7 */
610 9, -1, -1, -1, -1, -1, -1, /* in8..in14 */
612 32, 33, 34, -1, -1, /* fan1..fan5 */
613 -1, -1, -1, /* unused */
614 16, 17, 18, 19, 20, 21, /* temp1..temp6 */
615 48, -1 /* intrusion0, intrusion1 */
618 static const u16 NCT6106_REG_BEEP
[NUM_REG_BEEP
] = {
619 0x3c0, 0x3c1, 0x3c2, 0x3c3, 0x3c4 };
621 static const s8 NCT6106_BEEP_BITS
[] = {
622 0, 1, 2, 3, 4, 5, 7, 8, /* in0.. in7 */
623 9, 10, 11, 12, -1, -1, -1, /* in8..in14 */
624 32, /* global beep enable */
625 24, 25, 26, 27, 28, /* fan1..fan5 */
626 -1, -1, -1, /* unused */
627 16, 17, 18, 19, 20, 21, /* temp1..temp6 */
628 34, -1 /* intrusion0, intrusion1 */
631 static const u16 NCT6106_REG_TEMP_ALTERNATE
[ARRAY_SIZE(nct6776_temp_label
) - 1]
632 = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x51, 0x52, 0x54 };
634 static const u16 NCT6106_REG_TEMP_CRIT
[ARRAY_SIZE(nct6776_temp_label
) - 1]
635 = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x204, 0x205 };
637 static enum pwm_enable
reg_to_pwm_enable(int pwm
, int mode
)
639 if (mode
== 0 && pwm
== 255)
644 static int pwm_enable_to_reg(enum pwm_enable mode
)
655 /* 1 is DC mode, output in ms */
656 static unsigned int step_time_from_reg(u8 reg
, u8 mode
)
658 return mode
? 400 * reg
: 100 * reg
;
661 static u8
step_time_to_reg(unsigned int msec
, u8 mode
)
663 return clamp_val((mode
? (msec
+ 200) / 400 :
664 (msec
+ 50) / 100), 1, 255);
667 static unsigned int fan_from_reg8(u16 reg
, unsigned int divreg
)
669 if (reg
== 0 || reg
== 255)
671 return 1350000U / (reg
<< divreg
);
674 static unsigned int fan_from_reg13(u16 reg
, unsigned int divreg
)
676 if ((reg
& 0xff1f) == 0xff1f)
679 reg
= (reg
& 0x1f) | ((reg
& 0xff00) >> 3);
684 return 1350000U / reg
;
687 static unsigned int fan_from_reg16(u16 reg
, unsigned int divreg
)
689 if (reg
== 0 || reg
== 0xffff)
693 * Even though the registers are 16 bit wide, the fan divisor
696 return 1350000U / (reg
<< divreg
);
699 static u16
fan_to_reg(u32 fan
, unsigned int divreg
)
704 return (1350000U / fan
) >> divreg
;
707 static inline unsigned int
714 * Some of the voltage inputs have internal scaling, the tables below
715 * contain 8 (the ADC LSB in mV) * scaling factor * 100
717 static const u16 scale_in
[15] = {
718 800, 800, 1600, 1600, 800, 800, 800, 1600, 1600, 800, 800, 800, 800,
722 static inline long in_from_reg(u8 reg
, u8 nr
)
724 return DIV_ROUND_CLOSEST(reg
* scale_in
[nr
], 100);
727 static inline u8
in_to_reg(u32 val
, u8 nr
)
729 return clamp_val(DIV_ROUND_CLOSEST(val
* 100, scale_in
[nr
]), 0, 255);
733 * Data structures and manipulation thereof
736 struct nct6775_data
{
737 int addr
; /* IO base of hw monitor block */
738 int sioreg
; /* SIO register address */
743 const struct attribute_group
*groups
[6];
745 u16 reg_temp
[5][NUM_TEMP
]; /* 0=temp, 1=temp_over, 2=temp_hyst,
746 * 3=temp_crit, 4=temp_lcrit
748 u8 temp_src
[NUM_TEMP
];
749 u16 reg_temp_config
[NUM_TEMP
];
750 const char * const *temp_label
;
758 const s8
*ALARM_BITS
;
762 const u16
*REG_IN_MINMAX
[2];
764 const u16
*REG_TARGET
;
766 const u16
*REG_FAN_MODE
;
767 const u16
*REG_FAN_MIN
;
768 const u16
*REG_FAN_PULSES
;
769 const u16
*FAN_PULSE_SHIFT
;
770 const u16
*REG_FAN_TIME
[3];
772 const u16
*REG_TOLERANCE_H
;
774 const u8
*REG_PWM_MODE
;
775 const u8
*PWM_MODE_MASK
;
777 const u16
*REG_PWM
[7]; /* [0]=pwm, [1]=pwm_start, [2]=pwm_floor,
778 * [3]=pwm_max, [4]=pwm_step,
779 * [5]=weight_duty_step, [6]=weight_duty_base
781 const u16
*REG_PWM_READ
;
783 const u16
*REG_CRITICAL_PWM_ENABLE
;
784 u8 CRITICAL_PWM_ENABLE_MASK
;
785 const u16
*REG_CRITICAL_PWM
;
787 const u16
*REG_AUTO_TEMP
;
788 const u16
*REG_AUTO_PWM
;
790 const u16
*REG_CRITICAL_TEMP
;
791 const u16
*REG_CRITICAL_TEMP_TOLERANCE
;
793 const u16
*REG_TEMP_SOURCE
; /* temp register sources */
794 const u16
*REG_TEMP_SEL
;
795 const u16
*REG_WEIGHT_TEMP_SEL
;
796 const u16
*REG_WEIGHT_TEMP
[3]; /* 0=base, 1=tolerance, 2=step */
798 const u16
*REG_TEMP_OFFSET
;
800 const u16
*REG_ALARM
;
803 unsigned int (*fan_from_reg
)(u16 reg
, unsigned int divreg
);
804 unsigned int (*fan_from_reg_min
)(u16 reg
, unsigned int divreg
);
806 struct mutex update_lock
;
807 bool valid
; /* true if following fields are valid */
808 unsigned long last_updated
; /* In jiffies */
810 /* Register values */
811 u8 bank
; /* current register bank */
812 u8 in_num
; /* number of in inputs we have */
813 u8 in
[15][3]; /* [0]=in, [1]=in_max, [2]=in_min */
814 unsigned int rpm
[NUM_FAN
];
815 u16 fan_min
[NUM_FAN
];
816 u8 fan_pulses
[NUM_FAN
];
819 u8 has_fan
; /* some fan inputs can be disabled */
820 u8 has_fan_min
; /* some fans don't have min register */
823 u8 num_temp_alarms
; /* 2, 3, or 6 */
824 u8 num_temp_beeps
; /* 2, 3, or 6 */
825 u8 temp_fixed_num
; /* 3 or 6 */
826 u8 temp_type
[NUM_TEMP_FIXED
];
827 s8 temp_offset
[NUM_TEMP_FIXED
];
828 s16 temp
[5][NUM_TEMP
]; /* 0=temp, 1=temp_over, 2=temp_hyst,
829 * 3=temp_crit, 4=temp_lcrit */
833 u8 pwm_num
; /* number of pwm */
834 u8 pwm_mode
[NUM_FAN
]; /* 1->DC variable voltage,
835 * 0->PWM variable duty cycle
837 enum pwm_enable pwm_enable
[NUM_FAN
];
840 * 2->thermal cruise mode (also called SmartFan I)
841 * 3->fan speed cruise mode
843 * 5->enhanced variable thermal cruise (SmartFan IV)
845 u8 pwm
[7][NUM_FAN
]; /* [0]=pwm, [1]=pwm_start, [2]=pwm_floor,
846 * [3]=pwm_max, [4]=pwm_step,
847 * [5]=weight_duty_step, [6]=weight_duty_base
850 u8 target_temp
[NUM_FAN
];
852 u32 target_speed
[NUM_FAN
];
853 u32 target_speed_tolerance
[NUM_FAN
];
854 u8 speed_tolerance_limit
;
856 u8 temp_tolerance
[2][NUM_FAN
];
859 u8 fan_time
[3][NUM_FAN
]; /* 0 = stop_time, 1 = step_up, 2 = step_down */
861 /* Automatic fan speed control registers */
863 u8 auto_pwm
[NUM_FAN
][7];
864 u8 auto_temp
[NUM_FAN
][7];
865 u8 pwm_temp_sel
[NUM_FAN
];
866 u8 pwm_weight_temp_sel
[NUM_FAN
];
867 u8 weight_temp
[3][NUM_FAN
]; /* 0->temp_step, 1->temp_step_tol,
880 /* Remember extra register values over suspend/resume */
887 struct nct6775_sio_data
{
892 struct sensor_device_template
{
893 struct device_attribute dev_attr
;
901 bool s2
; /* true if both index and nr are used */
904 struct sensor_device_attr_u
{
906 struct sensor_device_attribute a1
;
907 struct sensor_device_attribute_2 a2
;
912 #define __TEMPLATE_ATTR(_template, _mode, _show, _store) { \
913 .attr = {.name = _template, .mode = _mode }, \
918 #define SENSOR_DEVICE_TEMPLATE(_template, _mode, _show, _store, _index) \
919 { .dev_attr = __TEMPLATE_ATTR(_template, _mode, _show, _store), \
923 #define SENSOR_DEVICE_TEMPLATE_2(_template, _mode, _show, _store, \
925 { .dev_attr = __TEMPLATE_ATTR(_template, _mode, _show, _store), \
926 .u.s.index = _index, \
930 #define SENSOR_TEMPLATE(_name, _template, _mode, _show, _store, _index) \
931 static struct sensor_device_template sensor_dev_template_##_name \
932 = SENSOR_DEVICE_TEMPLATE(_template, _mode, _show, _store, \
935 #define SENSOR_TEMPLATE_2(_name, _template, _mode, _show, _store, \
937 static struct sensor_device_template sensor_dev_template_##_name \
938 = SENSOR_DEVICE_TEMPLATE_2(_template, _mode, _show, _store, \
941 struct sensor_template_group
{
942 struct sensor_device_template
**templates
;
943 umode_t (*is_visible
)(struct kobject
*, struct attribute
*, int);
947 static struct attribute_group
*
948 nct6775_create_attr_group(struct device
*dev
, struct sensor_template_group
*tg
,
951 struct attribute_group
*group
;
952 struct sensor_device_attr_u
*su
;
953 struct sensor_device_attribute
*a
;
954 struct sensor_device_attribute_2
*a2
;
955 struct attribute
**attrs
;
956 struct sensor_device_template
**t
;
960 return ERR_PTR(-EINVAL
);
963 for (count
= 0; *t
; t
++, count
++)
967 return ERR_PTR(-EINVAL
);
969 group
= devm_kzalloc(dev
, sizeof(*group
), GFP_KERNEL
);
971 return ERR_PTR(-ENOMEM
);
973 attrs
= devm_kzalloc(dev
, sizeof(*attrs
) * (repeat
* count
+ 1),
976 return ERR_PTR(-ENOMEM
);
978 su
= devm_kzalloc(dev
, sizeof(*su
) * repeat
* count
,
981 return ERR_PTR(-ENOMEM
);
983 group
->attrs
= attrs
;
984 group
->is_visible
= tg
->is_visible
;
986 for (i
= 0; i
< repeat
; i
++) {
989 snprintf(su
->name
, sizeof(su
->name
),
990 (*t
)->dev_attr
.attr
.name
, tg
->base
+ i
);
993 sysfs_attr_init(&a2
->dev_attr
.attr
);
994 a2
->dev_attr
.attr
.name
= su
->name
;
995 a2
->nr
= (*t
)->u
.s
.nr
+ i
;
996 a2
->index
= (*t
)->u
.s
.index
;
997 a2
->dev_attr
.attr
.mode
=
998 (*t
)->dev_attr
.attr
.mode
;
999 a2
->dev_attr
.show
= (*t
)->dev_attr
.show
;
1000 a2
->dev_attr
.store
= (*t
)->dev_attr
.store
;
1001 *attrs
= &a2
->dev_attr
.attr
;
1004 sysfs_attr_init(&a
->dev_attr
.attr
);
1005 a
->dev_attr
.attr
.name
= su
->name
;
1006 a
->index
= (*t
)->u
.index
+ i
;
1007 a
->dev_attr
.attr
.mode
=
1008 (*t
)->dev_attr
.attr
.mode
;
1009 a
->dev_attr
.show
= (*t
)->dev_attr
.show
;
1010 a
->dev_attr
.store
= (*t
)->dev_attr
.store
;
1011 *attrs
= &a
->dev_attr
.attr
;
1022 static bool is_word_sized(struct nct6775_data
*data
, u16 reg
)
1024 switch (data
->kind
) {
1026 return reg
== 0x20 || reg
== 0x22 || reg
== 0x24 ||
1027 reg
== 0xe0 || reg
== 0xe2 || reg
== 0xe4 ||
1028 reg
== 0x111 || reg
== 0x121 || reg
== 0x131;
1030 return (((reg
& 0xff00) == 0x100 ||
1031 (reg
& 0xff00) == 0x200) &&
1032 ((reg
& 0x00ff) == 0x50 ||
1033 (reg
& 0x00ff) == 0x53 ||
1034 (reg
& 0x00ff) == 0x55)) ||
1035 (reg
& 0xfff0) == 0x630 ||
1036 reg
== 0x640 || reg
== 0x642 ||
1038 ((reg
& 0xfff0) == 0x650 && (reg
& 0x000f) >= 0x06) ||
1039 reg
== 0x73 || reg
== 0x75 || reg
== 0x77;
1041 return (((reg
& 0xff00) == 0x100 ||
1042 (reg
& 0xff00) == 0x200) &&
1043 ((reg
& 0x00ff) == 0x50 ||
1044 (reg
& 0x00ff) == 0x53 ||
1045 (reg
& 0x00ff) == 0x55)) ||
1046 (reg
& 0xfff0) == 0x630 ||
1048 reg
== 0x640 || reg
== 0x642 ||
1049 ((reg
& 0xfff0) == 0x650 && (reg
& 0x000f) >= 0x06) ||
1050 reg
== 0x73 || reg
== 0x75 || reg
== 0x77;
1053 return reg
== 0x150 || reg
== 0x153 || reg
== 0x155 ||
1054 ((reg
& 0xfff0) == 0x4b0 && (reg
& 0x000f) < 0x0b) ||
1056 reg
== 0x63a || reg
== 0x63c || reg
== 0x63e ||
1057 reg
== 0x640 || reg
== 0x642 ||
1058 reg
== 0x73 || reg
== 0x75 || reg
== 0x77 || reg
== 0x79 ||
1065 * On older chips, only registers 0x50-0x5f are banked.
1066 * On more recent chips, all registers are banked.
1067 * Assume that is the case and set the bank number for each access.
1068 * Cache the bank number so it only needs to be set if it changes.
1070 static inline void nct6775_set_bank(struct nct6775_data
*data
, u16 reg
)
1073 if (data
->bank
!= bank
) {
1074 outb_p(NCT6775_REG_BANK
, data
->addr
+ ADDR_REG_OFFSET
);
1075 outb_p(bank
, data
->addr
+ DATA_REG_OFFSET
);
1080 static u16
nct6775_read_value(struct nct6775_data
*data
, u16 reg
)
1082 int res
, word_sized
= is_word_sized(data
, reg
);
1084 nct6775_set_bank(data
, reg
);
1085 outb_p(reg
& 0xff, data
->addr
+ ADDR_REG_OFFSET
);
1086 res
= inb_p(data
->addr
+ DATA_REG_OFFSET
);
1088 outb_p((reg
& 0xff) + 1,
1089 data
->addr
+ ADDR_REG_OFFSET
);
1090 res
= (res
<< 8) + inb_p(data
->addr
+ DATA_REG_OFFSET
);
1095 static int nct6775_write_value(struct nct6775_data
*data
, u16 reg
, u16 value
)
1097 int word_sized
= is_word_sized(data
, reg
);
1099 nct6775_set_bank(data
, reg
);
1100 outb_p(reg
& 0xff, data
->addr
+ ADDR_REG_OFFSET
);
1102 outb_p(value
>> 8, data
->addr
+ DATA_REG_OFFSET
);
1103 outb_p((reg
& 0xff) + 1,
1104 data
->addr
+ ADDR_REG_OFFSET
);
1106 outb_p(value
& 0xff, data
->addr
+ DATA_REG_OFFSET
);
1110 /* We left-align 8-bit temperature values to make the code simpler */
1111 static u16
nct6775_read_temp(struct nct6775_data
*data
, u16 reg
)
1115 res
= nct6775_read_value(data
, reg
);
1116 if (!is_word_sized(data
, reg
))
1122 static int nct6775_write_temp(struct nct6775_data
*data
, u16 reg
, u16 value
)
1124 if (!is_word_sized(data
, reg
))
1126 return nct6775_write_value(data
, reg
, value
);
1129 /* This function assumes that the caller holds data->update_lock */
1130 static void nct6775_write_fan_div(struct nct6775_data
*data
, int nr
)
1136 reg
= (nct6775_read_value(data
, NCT6775_REG_FANDIV1
) & 0x70)
1137 | (data
->fan_div
[0] & 0x7);
1138 nct6775_write_value(data
, NCT6775_REG_FANDIV1
, reg
);
1141 reg
= (nct6775_read_value(data
, NCT6775_REG_FANDIV1
) & 0x7)
1142 | ((data
->fan_div
[1] << 4) & 0x70);
1143 nct6775_write_value(data
, NCT6775_REG_FANDIV1
, reg
);
1146 reg
= (nct6775_read_value(data
, NCT6775_REG_FANDIV2
) & 0x70)
1147 | (data
->fan_div
[2] & 0x7);
1148 nct6775_write_value(data
, NCT6775_REG_FANDIV2
, reg
);
1151 reg
= (nct6775_read_value(data
, NCT6775_REG_FANDIV2
) & 0x7)
1152 | ((data
->fan_div
[3] << 4) & 0x70);
1153 nct6775_write_value(data
, NCT6775_REG_FANDIV2
, reg
);
1158 static void nct6775_write_fan_div_common(struct nct6775_data
*data
, int nr
)
1160 if (data
->kind
== nct6775
)
1161 nct6775_write_fan_div(data
, nr
);
1164 static void nct6775_update_fan_div(struct nct6775_data
*data
)
1168 i
= nct6775_read_value(data
, NCT6775_REG_FANDIV1
);
1169 data
->fan_div
[0] = i
& 0x7;
1170 data
->fan_div
[1] = (i
& 0x70) >> 4;
1171 i
= nct6775_read_value(data
, NCT6775_REG_FANDIV2
);
1172 data
->fan_div
[2] = i
& 0x7;
1173 if (data
->has_fan
& (1 << 3))
1174 data
->fan_div
[3] = (i
& 0x70) >> 4;
1177 static void nct6775_update_fan_div_common(struct nct6775_data
*data
)
1179 if (data
->kind
== nct6775
)
1180 nct6775_update_fan_div(data
);
1183 static void nct6775_init_fan_div(struct nct6775_data
*data
)
1187 nct6775_update_fan_div_common(data
);
1189 * For all fans, start with highest divider value if the divider
1190 * register is not initialized. This ensures that we get a
1191 * reading from the fan count register, even if it is not optimal.
1192 * We'll compute a better divider later on.
1194 for (i
= 0; i
< ARRAY_SIZE(data
->fan_div
); i
++) {
1195 if (!(data
->has_fan
& (1 << i
)))
1197 if (data
->fan_div
[i
] == 0) {
1198 data
->fan_div
[i
] = 7;
1199 nct6775_write_fan_div_common(data
, i
);
1204 static void nct6775_init_fan_common(struct device
*dev
,
1205 struct nct6775_data
*data
)
1210 if (data
->has_fan_div
)
1211 nct6775_init_fan_div(data
);
1214 * If fan_min is not set (0), set it to 0xff to disable it. This
1215 * prevents the unnecessary warning when fanX_min is reported as 0.
1217 for (i
= 0; i
< ARRAY_SIZE(data
->fan_min
); i
++) {
1218 if (data
->has_fan_min
& (1 << i
)) {
1219 reg
= nct6775_read_value(data
, data
->REG_FAN_MIN
[i
]);
1221 nct6775_write_value(data
, data
->REG_FAN_MIN
[i
],
1222 data
->has_fan_div
? 0xff
1228 static void nct6775_select_fan_div(struct device
*dev
,
1229 struct nct6775_data
*data
, int nr
, u16 reg
)
1231 u8 fan_div
= data
->fan_div
[nr
];
1234 if (!data
->has_fan_div
)
1238 * If we failed to measure the fan speed, or the reported value is not
1239 * in the optimal range, and the clock divider can be modified,
1240 * let's try that for next time.
1242 if (reg
== 0x00 && fan_div
< 0x07)
1244 else if (reg
!= 0x00 && reg
< 0x30 && fan_div
> 0)
1247 if (fan_div
!= data
->fan_div
[nr
]) {
1248 dev_dbg(dev
, "Modifying fan%d clock divider from %u to %u\n",
1249 nr
+ 1, div_from_reg(data
->fan_div
[nr
]),
1250 div_from_reg(fan_div
));
1252 /* Preserve min limit if possible */
1253 if (data
->has_fan_min
& (1 << nr
)) {
1254 fan_min
= data
->fan_min
[nr
];
1255 if (fan_div
> data
->fan_div
[nr
]) {
1256 if (fan_min
!= 255 && fan_min
> 1)
1259 if (fan_min
!= 255) {
1265 if (fan_min
!= data
->fan_min
[nr
]) {
1266 data
->fan_min
[nr
] = fan_min
;
1267 nct6775_write_value(data
, data
->REG_FAN_MIN
[nr
],
1271 data
->fan_div
[nr
] = fan_div
;
1272 nct6775_write_fan_div_common(data
, nr
);
1276 static void nct6775_update_pwm(struct device
*dev
)
1278 struct nct6775_data
*data
= dev_get_drvdata(dev
);
1280 int fanmodecfg
, reg
;
1283 for (i
= 0; i
< data
->pwm_num
; i
++) {
1284 if (!(data
->has_pwm
& (1 << i
)))
1287 duty_is_dc
= data
->REG_PWM_MODE
[i
] &&
1288 (nct6775_read_value(data
, data
->REG_PWM_MODE
[i
])
1289 & data
->PWM_MODE_MASK
[i
]);
1290 data
->pwm_mode
[i
] = duty_is_dc
;
1292 fanmodecfg
= nct6775_read_value(data
, data
->REG_FAN_MODE
[i
]);
1293 for (j
= 0; j
< ARRAY_SIZE(data
->REG_PWM
); j
++) {
1294 if (data
->REG_PWM
[j
] && data
->REG_PWM
[j
][i
]) {
1296 = nct6775_read_value(data
,
1297 data
->REG_PWM
[j
][i
]);
1301 data
->pwm_enable
[i
] = reg_to_pwm_enable(data
->pwm
[0][i
],
1302 (fanmodecfg
>> 4) & 7);
1304 if (!data
->temp_tolerance
[0][i
] ||
1305 data
->pwm_enable
[i
] != speed_cruise
)
1306 data
->temp_tolerance
[0][i
] = fanmodecfg
& 0x0f;
1307 if (!data
->target_speed_tolerance
[i
] ||
1308 data
->pwm_enable
[i
] == speed_cruise
) {
1309 u8 t
= fanmodecfg
& 0x0f;
1310 if (data
->REG_TOLERANCE_H
) {
1311 t
|= (nct6775_read_value(data
,
1312 data
->REG_TOLERANCE_H
[i
]) & 0x70) >> 1;
1314 data
->target_speed_tolerance
[i
] = t
;
1317 data
->temp_tolerance
[1][i
] =
1318 nct6775_read_value(data
,
1319 data
->REG_CRITICAL_TEMP_TOLERANCE
[i
]);
1321 reg
= nct6775_read_value(data
, data
->REG_TEMP_SEL
[i
]);
1322 data
->pwm_temp_sel
[i
] = reg
& 0x1f;
1323 /* If fan can stop, report floor as 0 */
1325 data
->pwm
[2][i
] = 0;
1327 if (!data
->REG_WEIGHT_TEMP_SEL
[i
])
1330 reg
= nct6775_read_value(data
, data
->REG_WEIGHT_TEMP_SEL
[i
]);
1331 data
->pwm_weight_temp_sel
[i
] = reg
& 0x1f;
1332 /* If weight is disabled, report weight source as 0 */
1333 if (j
== 1 && !(reg
& 0x80))
1334 data
->pwm_weight_temp_sel
[i
] = 0;
1336 /* Weight temp data */
1337 for (j
= 0; j
< ARRAY_SIZE(data
->weight_temp
); j
++) {
1338 data
->weight_temp
[j
][i
]
1339 = nct6775_read_value(data
,
1340 data
->REG_WEIGHT_TEMP
[j
][i
]);
1345 static void nct6775_update_pwm_limits(struct device
*dev
)
1347 struct nct6775_data
*data
= dev_get_drvdata(dev
);
1352 for (i
= 0; i
< data
->pwm_num
; i
++) {
1353 if (!(data
->has_pwm
& (1 << i
)))
1356 for (j
= 0; j
< ARRAY_SIZE(data
->fan_time
); j
++) {
1357 data
->fan_time
[j
][i
] =
1358 nct6775_read_value(data
, data
->REG_FAN_TIME
[j
][i
]);
1361 reg_t
= nct6775_read_value(data
, data
->REG_TARGET
[i
]);
1362 /* Update only in matching mode or if never updated */
1363 if (!data
->target_temp
[i
] ||
1364 data
->pwm_enable
[i
] == thermal_cruise
)
1365 data
->target_temp
[i
] = reg_t
& data
->target_temp_mask
;
1366 if (!data
->target_speed
[i
] ||
1367 data
->pwm_enable
[i
] == speed_cruise
) {
1368 if (data
->REG_TOLERANCE_H
) {
1369 reg_t
|= (nct6775_read_value(data
,
1370 data
->REG_TOLERANCE_H
[i
]) & 0x0f) << 8;
1372 data
->target_speed
[i
] = reg_t
;
1375 for (j
= 0; j
< data
->auto_pwm_num
; j
++) {
1376 data
->auto_pwm
[i
][j
] =
1377 nct6775_read_value(data
,
1378 NCT6775_AUTO_PWM(data
, i
, j
));
1379 data
->auto_temp
[i
][j
] =
1380 nct6775_read_value(data
,
1381 NCT6775_AUTO_TEMP(data
, i
, j
));
1384 /* critical auto_pwm temperature data */
1385 data
->auto_temp
[i
][data
->auto_pwm_num
] =
1386 nct6775_read_value(data
, data
->REG_CRITICAL_TEMP
[i
]);
1388 switch (data
->kind
) {
1390 reg
= nct6775_read_value(data
,
1391 NCT6775_REG_CRITICAL_ENAB
[i
]);
1392 data
->auto_pwm
[i
][data
->auto_pwm_num
] =
1393 (reg
& 0x02) ? 0xff : 0x00;
1396 data
->auto_pwm
[i
][data
->auto_pwm_num
] = 0xff;
1401 reg
= nct6775_read_value(data
,
1402 data
->REG_CRITICAL_PWM_ENABLE
[i
]);
1403 if (reg
& data
->CRITICAL_PWM_ENABLE_MASK
)
1404 reg
= nct6775_read_value(data
,
1405 data
->REG_CRITICAL_PWM
[i
]);
1408 data
->auto_pwm
[i
][data
->auto_pwm_num
] = reg
;
1414 static struct nct6775_data
*nct6775_update_device(struct device
*dev
)
1416 struct nct6775_data
*data
= dev_get_drvdata(dev
);
1419 mutex_lock(&data
->update_lock
);
1421 if (time_after(jiffies
, data
->last_updated
+ HZ
+ HZ
/ 2)
1423 /* Fan clock dividers */
1424 nct6775_update_fan_div_common(data
);
1426 /* Measured voltages and limits */
1427 for (i
= 0; i
< data
->in_num
; i
++) {
1428 if (!(data
->have_in
& (1 << i
)))
1431 data
->in
[i
][0] = nct6775_read_value(data
,
1433 data
->in
[i
][1] = nct6775_read_value(data
,
1434 data
->REG_IN_MINMAX
[0][i
]);
1435 data
->in
[i
][2] = nct6775_read_value(data
,
1436 data
->REG_IN_MINMAX
[1][i
]);
1439 /* Measured fan speeds and limits */
1440 for (i
= 0; i
< ARRAY_SIZE(data
->rpm
); i
++) {
1443 if (!(data
->has_fan
& (1 << i
)))
1446 reg
= nct6775_read_value(data
, data
->REG_FAN
[i
]);
1447 data
->rpm
[i
] = data
->fan_from_reg(reg
,
1450 if (data
->has_fan_min
& (1 << i
))
1451 data
->fan_min
[i
] = nct6775_read_value(data
,
1452 data
->REG_FAN_MIN
[i
]);
1453 data
->fan_pulses
[i
] =
1454 (nct6775_read_value(data
, data
->REG_FAN_PULSES
[i
])
1455 >> data
->FAN_PULSE_SHIFT
[i
]) & 0x03;
1457 nct6775_select_fan_div(dev
, data
, i
, reg
);
1460 nct6775_update_pwm(dev
);
1461 nct6775_update_pwm_limits(dev
);
1463 /* Measured temperatures and limits */
1464 for (i
= 0; i
< NUM_TEMP
; i
++) {
1465 if (!(data
->have_temp
& (1 << i
)))
1467 for (j
= 0; j
< ARRAY_SIZE(data
->reg_temp
); j
++) {
1468 if (data
->reg_temp
[j
][i
])
1470 = nct6775_read_temp(data
,
1471 data
->reg_temp
[j
][i
]);
1473 if (i
>= NUM_TEMP_FIXED
||
1474 !(data
->have_temp_fixed
& (1 << i
)))
1476 data
->temp_offset
[i
]
1477 = nct6775_read_value(data
, data
->REG_TEMP_OFFSET
[i
]);
1481 for (i
= 0; i
< NUM_REG_ALARM
; i
++) {
1483 if (!data
->REG_ALARM
[i
])
1485 alarm
= nct6775_read_value(data
, data
->REG_ALARM
[i
]);
1486 data
->alarms
|= ((u64
)alarm
) << (i
<< 3);
1490 for (i
= 0; i
< NUM_REG_BEEP
; i
++) {
1492 if (!data
->REG_BEEP
[i
])
1494 beep
= nct6775_read_value(data
, data
->REG_BEEP
[i
]);
1495 data
->beeps
|= ((u64
)beep
) << (i
<< 3);
1498 data
->last_updated
= jiffies
;
1502 mutex_unlock(&data
->update_lock
);
1507 * Sysfs callback functions
1510 show_in_reg(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1512 struct nct6775_data
*data
= nct6775_update_device(dev
);
1513 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
1515 int index
= sattr
->index
;
1516 return sprintf(buf
, "%ld\n", in_from_reg(data
->in
[nr
][index
], nr
));
1520 store_in_reg(struct device
*dev
, struct device_attribute
*attr
, const char *buf
,
1523 struct nct6775_data
*data
= dev_get_drvdata(dev
);
1524 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
1526 int index
= sattr
->index
;
1528 int err
= kstrtoul(buf
, 10, &val
);
1531 mutex_lock(&data
->update_lock
);
1532 data
->in
[nr
][index
] = in_to_reg(val
, nr
);
1533 nct6775_write_value(data
, data
->REG_IN_MINMAX
[index
- 1][nr
],
1534 data
->in
[nr
][index
]);
1535 mutex_unlock(&data
->update_lock
);
1540 show_alarm(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1542 struct nct6775_data
*data
= nct6775_update_device(dev
);
1543 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
1544 int nr
= data
->ALARM_BITS
[sattr
->index
];
1545 return sprintf(buf
, "%u\n",
1546 (unsigned int)((data
->alarms
>> nr
) & 0x01));
1549 static int find_temp_source(struct nct6775_data
*data
, int index
, int count
)
1551 int source
= data
->temp_src
[index
];
1554 for (nr
= 0; nr
< count
; nr
++) {
1557 src
= nct6775_read_value(data
,
1558 data
->REG_TEMP_SOURCE
[nr
]) & 0x1f;
1566 show_temp_alarm(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1568 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
1569 struct nct6775_data
*data
= nct6775_update_device(dev
);
1570 unsigned int alarm
= 0;
1574 * For temperatures, there is no fixed mapping from registers to alarm
1575 * bits. Alarm bits are determined by the temperature source mapping.
1577 nr
= find_temp_source(data
, sattr
->index
, data
->num_temp_alarms
);
1579 int bit
= data
->ALARM_BITS
[nr
+ TEMP_ALARM_BASE
];
1580 alarm
= (data
->alarms
>> bit
) & 0x01;
1582 return sprintf(buf
, "%u\n", alarm
);
1586 show_beep(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1588 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
1589 struct nct6775_data
*data
= nct6775_update_device(dev
);
1590 int nr
= data
->BEEP_BITS
[sattr
->index
];
1592 return sprintf(buf
, "%u\n",
1593 (unsigned int)((data
->beeps
>> nr
) & 0x01));
1597 store_beep(struct device
*dev
, struct device_attribute
*attr
, const char *buf
,
1600 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
1601 struct nct6775_data
*data
= dev_get_drvdata(dev
);
1602 int nr
= data
->BEEP_BITS
[sattr
->index
];
1603 int regindex
= nr
>> 3;
1606 int err
= kstrtoul(buf
, 10, &val
);
1612 mutex_lock(&data
->update_lock
);
1614 data
->beeps
|= (1ULL << nr
);
1616 data
->beeps
&= ~(1ULL << nr
);
1617 nct6775_write_value(data
, data
->REG_BEEP
[regindex
],
1618 (data
->beeps
>> (regindex
<< 3)) & 0xff);
1619 mutex_unlock(&data
->update_lock
);
1624 show_temp_beep(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1626 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
1627 struct nct6775_data
*data
= nct6775_update_device(dev
);
1628 unsigned int beep
= 0;
1632 * For temperatures, there is no fixed mapping from registers to beep
1633 * enable bits. Beep enable bits are determined by the temperature
1636 nr
= find_temp_source(data
, sattr
->index
, data
->num_temp_beeps
);
1638 int bit
= data
->BEEP_BITS
[nr
+ TEMP_ALARM_BASE
];
1639 beep
= (data
->beeps
>> bit
) & 0x01;
1641 return sprintf(buf
, "%u\n", beep
);
1645 store_temp_beep(struct device
*dev
, struct device_attribute
*attr
,
1646 const char *buf
, size_t count
)
1648 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
1649 struct nct6775_data
*data
= dev_get_drvdata(dev
);
1650 int nr
, bit
, regindex
;
1653 int err
= kstrtoul(buf
, 10, &val
);
1659 nr
= find_temp_source(data
, sattr
->index
, data
->num_temp_beeps
);
1663 bit
= data
->BEEP_BITS
[nr
+ TEMP_ALARM_BASE
];
1664 regindex
= bit
>> 3;
1666 mutex_lock(&data
->update_lock
);
1668 data
->beeps
|= (1ULL << bit
);
1670 data
->beeps
&= ~(1ULL << bit
);
1671 nct6775_write_value(data
, data
->REG_BEEP
[regindex
],
1672 (data
->beeps
>> (regindex
<< 3)) & 0xff);
1673 mutex_unlock(&data
->update_lock
);
1678 static umode_t
nct6775_in_is_visible(struct kobject
*kobj
,
1679 struct attribute
*attr
, int index
)
1681 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
1682 struct nct6775_data
*data
= dev_get_drvdata(dev
);
1683 int in
= index
/ 5; /* voltage index */
1685 if (!(data
->have_in
& (1 << in
)))
1691 SENSOR_TEMPLATE_2(in_input
, "in%d_input", S_IRUGO
, show_in_reg
, NULL
, 0, 0);
1692 SENSOR_TEMPLATE(in_alarm
, "in%d_alarm", S_IRUGO
, show_alarm
, NULL
, 0);
1693 SENSOR_TEMPLATE(in_beep
, "in%d_beep", S_IWUSR
| S_IRUGO
, show_beep
, store_beep
,
1695 SENSOR_TEMPLATE_2(in_min
, "in%d_min", S_IWUSR
| S_IRUGO
, show_in_reg
,
1696 store_in_reg
, 0, 1);
1697 SENSOR_TEMPLATE_2(in_max
, "in%d_max", S_IWUSR
| S_IRUGO
, show_in_reg
,
1698 store_in_reg
, 0, 2);
1701 * nct6775_in_is_visible uses the index into the following array
1702 * to determine if attributes should be created or not.
1703 * Any change in order or content must be matched.
1705 static struct sensor_device_template
*nct6775_attributes_in_template
[] = {
1706 &sensor_dev_template_in_input
,
1707 &sensor_dev_template_in_alarm
,
1708 &sensor_dev_template_in_beep
,
1709 &sensor_dev_template_in_min
,
1710 &sensor_dev_template_in_max
,
1714 static struct sensor_template_group nct6775_in_template_group
= {
1715 .templates
= nct6775_attributes_in_template
,
1716 .is_visible
= nct6775_in_is_visible
,
1720 show_fan(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1722 struct nct6775_data
*data
= nct6775_update_device(dev
);
1723 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
1724 int nr
= sattr
->index
;
1725 return sprintf(buf
, "%d\n", data
->rpm
[nr
]);
1729 show_fan_min(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1731 struct nct6775_data
*data
= nct6775_update_device(dev
);
1732 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
1733 int nr
= sattr
->index
;
1734 return sprintf(buf
, "%d\n",
1735 data
->fan_from_reg_min(data
->fan_min
[nr
],
1736 data
->fan_div
[nr
]));
1740 show_fan_div(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1742 struct nct6775_data
*data
= nct6775_update_device(dev
);
1743 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
1744 int nr
= sattr
->index
;
1745 return sprintf(buf
, "%u\n", div_from_reg(data
->fan_div
[nr
]));
1749 store_fan_min(struct device
*dev
, struct device_attribute
*attr
,
1750 const char *buf
, size_t count
)
1752 struct nct6775_data
*data
= dev_get_drvdata(dev
);
1753 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
1754 int nr
= sattr
->index
;
1760 err
= kstrtoul(buf
, 10, &val
);
1764 mutex_lock(&data
->update_lock
);
1765 if (!data
->has_fan_div
) {
1766 /* NCT6776F or NCT6779D; we know this is a 13 bit register */
1772 val
= 1350000U / val
;
1773 val
= (val
& 0x1f) | ((val
<< 3) & 0xff00);
1775 data
->fan_min
[nr
] = val
;
1776 goto write_min
; /* Leave fan divider alone */
1779 /* No min limit, alarm disabled */
1780 data
->fan_min
[nr
] = 255;
1781 new_div
= data
->fan_div
[nr
]; /* No change */
1782 dev_info(dev
, "fan%u low limit and alarm disabled\n", nr
+ 1);
1785 reg
= 1350000U / val
;
1786 if (reg
>= 128 * 255) {
1788 * Speed below this value cannot possibly be represented,
1789 * even with the highest divider (128)
1791 data
->fan_min
[nr
] = 254;
1792 new_div
= 7; /* 128 == (1 << 7) */
1794 "fan%u low limit %lu below minimum %u, set to minimum\n",
1795 nr
+ 1, val
, data
->fan_from_reg_min(254, 7));
1798 * Speed above this value cannot possibly be represented,
1799 * even with the lowest divider (1)
1801 data
->fan_min
[nr
] = 1;
1802 new_div
= 0; /* 1 == (1 << 0) */
1804 "fan%u low limit %lu above maximum %u, set to maximum\n",
1805 nr
+ 1, val
, data
->fan_from_reg_min(1, 0));
1808 * Automatically pick the best divider, i.e. the one such
1809 * that the min limit will correspond to a register value
1810 * in the 96..192 range
1813 while (reg
> 192 && new_div
< 7) {
1817 data
->fan_min
[nr
] = reg
;
1822 * Write both the fan clock divider (if it changed) and the new
1823 * fan min (unconditionally)
1825 if (new_div
!= data
->fan_div
[nr
]) {
1826 dev_dbg(dev
, "fan%u clock divider changed from %u to %u\n",
1827 nr
+ 1, div_from_reg(data
->fan_div
[nr
]),
1828 div_from_reg(new_div
));
1829 data
->fan_div
[nr
] = new_div
;
1830 nct6775_write_fan_div_common(data
, nr
);
1831 /* Give the chip time to sample a new speed value */
1832 data
->last_updated
= jiffies
;
1836 nct6775_write_value(data
, data
->REG_FAN_MIN
[nr
], data
->fan_min
[nr
]);
1837 mutex_unlock(&data
->update_lock
);
1843 show_fan_pulses(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1845 struct nct6775_data
*data
= nct6775_update_device(dev
);
1846 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
1847 int p
= data
->fan_pulses
[sattr
->index
];
1849 return sprintf(buf
, "%d\n", p
? : 4);
1853 store_fan_pulses(struct device
*dev
, struct device_attribute
*attr
,
1854 const char *buf
, size_t count
)
1856 struct nct6775_data
*data
= dev_get_drvdata(dev
);
1857 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
1858 int nr
= sattr
->index
;
1863 err
= kstrtoul(buf
, 10, &val
);
1870 mutex_lock(&data
->update_lock
);
1871 data
->fan_pulses
[nr
] = val
& 3;
1872 reg
= nct6775_read_value(data
, data
->REG_FAN_PULSES
[nr
]);
1873 reg
&= ~(0x03 << data
->FAN_PULSE_SHIFT
[nr
]);
1874 reg
|= (val
& 3) << data
->FAN_PULSE_SHIFT
[nr
];
1875 nct6775_write_value(data
, data
->REG_FAN_PULSES
[nr
], reg
);
1876 mutex_unlock(&data
->update_lock
);
1881 static umode_t
nct6775_fan_is_visible(struct kobject
*kobj
,
1882 struct attribute
*attr
, int index
)
1884 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
1885 struct nct6775_data
*data
= dev_get_drvdata(dev
);
1886 int fan
= index
/ 6; /* fan index */
1887 int nr
= index
% 6; /* attribute index */
1889 if (!(data
->has_fan
& (1 << fan
)))
1892 if (nr
== 1 && data
->ALARM_BITS
[FAN_ALARM_BASE
+ fan
] == -1)
1894 if (nr
== 2 && data
->BEEP_BITS
[FAN_ALARM_BASE
+ fan
] == -1)
1896 if (nr
== 4 && !(data
->has_fan_min
& (1 << fan
)))
1898 if (nr
== 5 && data
->kind
!= nct6775
)
1904 SENSOR_TEMPLATE(fan_input
, "fan%d_input", S_IRUGO
, show_fan
, NULL
, 0);
1905 SENSOR_TEMPLATE(fan_alarm
, "fan%d_alarm", S_IRUGO
, show_alarm
, NULL
,
1907 SENSOR_TEMPLATE(fan_beep
, "fan%d_beep", S_IWUSR
| S_IRUGO
, show_beep
,
1908 store_beep
, FAN_ALARM_BASE
);
1909 SENSOR_TEMPLATE(fan_pulses
, "fan%d_pulses", S_IWUSR
| S_IRUGO
, show_fan_pulses
,
1910 store_fan_pulses
, 0);
1911 SENSOR_TEMPLATE(fan_min
, "fan%d_min", S_IWUSR
| S_IRUGO
, show_fan_min
,
1913 SENSOR_TEMPLATE(fan_div
, "fan%d_div", S_IRUGO
, show_fan_div
, NULL
, 0);
1916 * nct6775_fan_is_visible uses the index into the following array
1917 * to determine if attributes should be created or not.
1918 * Any change in order or content must be matched.
1920 static struct sensor_device_template
*nct6775_attributes_fan_template
[] = {
1921 &sensor_dev_template_fan_input
,
1922 &sensor_dev_template_fan_alarm
, /* 1 */
1923 &sensor_dev_template_fan_beep
, /* 2 */
1924 &sensor_dev_template_fan_pulses
,
1925 &sensor_dev_template_fan_min
, /* 4 */
1926 &sensor_dev_template_fan_div
, /* 5 */
1930 static struct sensor_template_group nct6775_fan_template_group
= {
1931 .templates
= nct6775_attributes_fan_template
,
1932 .is_visible
= nct6775_fan_is_visible
,
1937 show_temp_label(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1939 struct nct6775_data
*data
= nct6775_update_device(dev
);
1940 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
1941 int nr
= sattr
->index
;
1942 return sprintf(buf
, "%s\n", data
->temp_label
[data
->temp_src
[nr
]]);
1946 show_temp(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1948 struct nct6775_data
*data
= nct6775_update_device(dev
);
1949 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
1951 int index
= sattr
->index
;
1953 return sprintf(buf
, "%d\n", LM75_TEMP_FROM_REG(data
->temp
[index
][nr
]));
1957 store_temp(struct device
*dev
, struct device_attribute
*attr
, const char *buf
,
1960 struct nct6775_data
*data
= dev_get_drvdata(dev
);
1961 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
1963 int index
= sattr
->index
;
1967 err
= kstrtol(buf
, 10, &val
);
1971 mutex_lock(&data
->update_lock
);
1972 data
->temp
[index
][nr
] = LM75_TEMP_TO_REG(val
);
1973 nct6775_write_temp(data
, data
->reg_temp
[index
][nr
],
1974 data
->temp
[index
][nr
]);
1975 mutex_unlock(&data
->update_lock
);
1980 show_temp_offset(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1982 struct nct6775_data
*data
= nct6775_update_device(dev
);
1983 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
1985 return sprintf(buf
, "%d\n", data
->temp_offset
[sattr
->index
] * 1000);
1989 store_temp_offset(struct device
*dev
, struct device_attribute
*attr
,
1990 const char *buf
, size_t count
)
1992 struct nct6775_data
*data
= dev_get_drvdata(dev
);
1993 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
1994 int nr
= sattr
->index
;
1998 err
= kstrtol(buf
, 10, &val
);
2002 val
= clamp_val(DIV_ROUND_CLOSEST(val
, 1000), -128, 127);
2004 mutex_lock(&data
->update_lock
);
2005 data
->temp_offset
[nr
] = val
;
2006 nct6775_write_value(data
, data
->REG_TEMP_OFFSET
[nr
], val
);
2007 mutex_unlock(&data
->update_lock
);
2013 show_temp_type(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
2015 struct nct6775_data
*data
= nct6775_update_device(dev
);
2016 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2017 int nr
= sattr
->index
;
2018 return sprintf(buf
, "%d\n", (int)data
->temp_type
[nr
]);
2022 store_temp_type(struct device
*dev
, struct device_attribute
*attr
,
2023 const char *buf
, size_t count
)
2025 struct nct6775_data
*data
= nct6775_update_device(dev
);
2026 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2027 int nr
= sattr
->index
;
2030 u8 vbat
, diode
, vbit
, dbit
;
2032 err
= kstrtoul(buf
, 10, &val
);
2036 if (val
!= 1 && val
!= 3 && val
!= 4)
2039 mutex_lock(&data
->update_lock
);
2041 data
->temp_type
[nr
] = val
;
2043 dbit
= data
->DIODE_MASK
<< nr
;
2044 vbat
= nct6775_read_value(data
, data
->REG_VBAT
) & ~vbit
;
2045 diode
= nct6775_read_value(data
, data
->REG_DIODE
) & ~dbit
;
2047 case 1: /* CPU diode (diode, current mode) */
2051 case 3: /* diode, voltage mode */
2054 case 4: /* thermistor */
2057 nct6775_write_value(data
, data
->REG_VBAT
, vbat
);
2058 nct6775_write_value(data
, data
->REG_DIODE
, diode
);
2060 mutex_unlock(&data
->update_lock
);
2064 static umode_t
nct6775_temp_is_visible(struct kobject
*kobj
,
2065 struct attribute
*attr
, int index
)
2067 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
2068 struct nct6775_data
*data
= dev_get_drvdata(dev
);
2069 int temp
= index
/ 10; /* temp index */
2070 int nr
= index
% 10; /* attribute index */
2072 if (!(data
->have_temp
& (1 << temp
)))
2075 if (nr
== 2 && find_temp_source(data
, temp
, data
->num_temp_alarms
) < 0)
2076 return 0; /* alarm */
2078 if (nr
== 3 && find_temp_source(data
, temp
, data
->num_temp_beeps
) < 0)
2079 return 0; /* beep */
2081 if (nr
== 4 && !data
->reg_temp
[1][temp
]) /* max */
2084 if (nr
== 5 && !data
->reg_temp
[2][temp
]) /* max_hyst */
2087 if (nr
== 6 && !data
->reg_temp
[3][temp
]) /* crit */
2090 if (nr
== 7 && !data
->reg_temp
[4][temp
]) /* lcrit */
2093 /* offset and type only apply to fixed sensors */
2094 if (nr
> 7 && !(data
->have_temp_fixed
& (1 << temp
)))
2100 SENSOR_TEMPLATE_2(temp_input
, "temp%d_input", S_IRUGO
, show_temp
, NULL
, 0, 0);
2101 SENSOR_TEMPLATE(temp_label
, "temp%d_label", S_IRUGO
, show_temp_label
, NULL
, 0);
2102 SENSOR_TEMPLATE_2(temp_max
, "temp%d_max", S_IRUGO
| S_IWUSR
, show_temp
,
2104 SENSOR_TEMPLATE_2(temp_max_hyst
, "temp%d_max_hyst", S_IRUGO
| S_IWUSR
,
2105 show_temp
, store_temp
, 0, 2);
2106 SENSOR_TEMPLATE_2(temp_crit
, "temp%d_crit", S_IRUGO
| S_IWUSR
, show_temp
,
2108 SENSOR_TEMPLATE_2(temp_lcrit
, "temp%d_lcrit", S_IRUGO
| S_IWUSR
, show_temp
,
2110 SENSOR_TEMPLATE(temp_offset
, "temp%d_offset", S_IRUGO
| S_IWUSR
,
2111 show_temp_offset
, store_temp_offset
, 0);
2112 SENSOR_TEMPLATE(temp_type
, "temp%d_type", S_IRUGO
| S_IWUSR
, show_temp_type
,
2113 store_temp_type
, 0);
2114 SENSOR_TEMPLATE(temp_alarm
, "temp%d_alarm", S_IRUGO
, show_temp_alarm
, NULL
, 0);
2115 SENSOR_TEMPLATE(temp_beep
, "temp%d_beep", S_IRUGO
| S_IWUSR
, show_temp_beep
,
2116 store_temp_beep
, 0);
2119 * nct6775_temp_is_visible uses the index into the following array
2120 * to determine if attributes should be created or not.
2121 * Any change in order or content must be matched.
2123 static struct sensor_device_template
*nct6775_attributes_temp_template
[] = {
2124 &sensor_dev_template_temp_input
,
2125 &sensor_dev_template_temp_label
,
2126 &sensor_dev_template_temp_alarm
, /* 2 */
2127 &sensor_dev_template_temp_beep
, /* 3 */
2128 &sensor_dev_template_temp_max
, /* 4 */
2129 &sensor_dev_template_temp_max_hyst
, /* 5 */
2130 &sensor_dev_template_temp_crit
, /* 6 */
2131 &sensor_dev_template_temp_lcrit
, /* 7 */
2132 &sensor_dev_template_temp_offset
, /* 8 */
2133 &sensor_dev_template_temp_type
, /* 9 */
2137 static struct sensor_template_group nct6775_temp_template_group
= {
2138 .templates
= nct6775_attributes_temp_template
,
2139 .is_visible
= nct6775_temp_is_visible
,
2144 show_pwm_mode(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
2146 struct nct6775_data
*data
= nct6775_update_device(dev
);
2147 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2149 return sprintf(buf
, "%d\n", !data
->pwm_mode
[sattr
->index
]);
2153 store_pwm_mode(struct device
*dev
, struct device_attribute
*attr
,
2154 const char *buf
, size_t count
)
2156 struct nct6775_data
*data
= dev_get_drvdata(dev
);
2157 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2158 int nr
= sattr
->index
;
2163 err
= kstrtoul(buf
, 10, &val
);
2170 /* Setting DC mode is not supported for all chips/channels */
2171 if (data
->REG_PWM_MODE
[nr
] == 0) {
2177 mutex_lock(&data
->update_lock
);
2178 data
->pwm_mode
[nr
] = val
;
2179 reg
= nct6775_read_value(data
, data
->REG_PWM_MODE
[nr
]);
2180 reg
&= ~data
->PWM_MODE_MASK
[nr
];
2182 reg
|= data
->PWM_MODE_MASK
[nr
];
2183 nct6775_write_value(data
, data
->REG_PWM_MODE
[nr
], reg
);
2184 mutex_unlock(&data
->update_lock
);
2189 show_pwm(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
2191 struct nct6775_data
*data
= nct6775_update_device(dev
);
2192 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
2194 int index
= sattr
->index
;
2198 * For automatic fan control modes, show current pwm readings.
2199 * Otherwise, show the configured value.
2201 if (index
== 0 && data
->pwm_enable
[nr
] > manual
)
2202 pwm
= nct6775_read_value(data
, data
->REG_PWM_READ
[nr
]);
2204 pwm
= data
->pwm
[index
][nr
];
2206 return sprintf(buf
, "%d\n", pwm
);
2210 store_pwm(struct device
*dev
, struct device_attribute
*attr
, const char *buf
,
2213 struct nct6775_data
*data
= dev_get_drvdata(dev
);
2214 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
2216 int index
= sattr
->index
;
2218 int minval
[7] = { 0, 1, 1, data
->pwm
[2][nr
], 0, 0, 0 };
2220 = { 255, 255, data
->pwm
[3][nr
] ? : 255, 255, 255, 255, 255 };
2224 err
= kstrtoul(buf
, 10, &val
);
2227 val
= clamp_val(val
, minval
[index
], maxval
[index
]);
2229 mutex_lock(&data
->update_lock
);
2230 data
->pwm
[index
][nr
] = val
;
2231 nct6775_write_value(data
, data
->REG_PWM
[index
][nr
], val
);
2232 if (index
== 2) { /* floor: disable if val == 0 */
2233 reg
= nct6775_read_value(data
, data
->REG_TEMP_SEL
[nr
]);
2237 nct6775_write_value(data
, data
->REG_TEMP_SEL
[nr
], reg
);
2239 mutex_unlock(&data
->update_lock
);
2243 /* Returns 0 if OK, -EINVAL otherwise */
2244 static int check_trip_points(struct nct6775_data
*data
, int nr
)
2248 for (i
= 0; i
< data
->auto_pwm_num
- 1; i
++) {
2249 if (data
->auto_temp
[nr
][i
] > data
->auto_temp
[nr
][i
+ 1])
2252 for (i
= 0; i
< data
->auto_pwm_num
- 1; i
++) {
2253 if (data
->auto_pwm
[nr
][i
] > data
->auto_pwm
[nr
][i
+ 1])
2256 /* validate critical temperature and pwm if enabled (pwm > 0) */
2257 if (data
->auto_pwm
[nr
][data
->auto_pwm_num
]) {
2258 if (data
->auto_temp
[nr
][data
->auto_pwm_num
- 1] >
2259 data
->auto_temp
[nr
][data
->auto_pwm_num
] ||
2260 data
->auto_pwm
[nr
][data
->auto_pwm_num
- 1] >
2261 data
->auto_pwm
[nr
][data
->auto_pwm_num
])
2267 static void pwm_update_registers(struct nct6775_data
*data
, int nr
)
2271 switch (data
->pwm_enable
[nr
]) {
2276 reg
= nct6775_read_value(data
, data
->REG_FAN_MODE
[nr
]);
2277 reg
= (reg
& ~data
->tolerance_mask
) |
2278 (data
->target_speed_tolerance
[nr
] & data
->tolerance_mask
);
2279 nct6775_write_value(data
, data
->REG_FAN_MODE
[nr
], reg
);
2280 nct6775_write_value(data
, data
->REG_TARGET
[nr
],
2281 data
->target_speed
[nr
] & 0xff);
2282 if (data
->REG_TOLERANCE_H
) {
2283 reg
= (data
->target_speed
[nr
] >> 8) & 0x0f;
2284 reg
|= (data
->target_speed_tolerance
[nr
] & 0x38) << 1;
2285 nct6775_write_value(data
,
2286 data
->REG_TOLERANCE_H
[nr
],
2290 case thermal_cruise
:
2291 nct6775_write_value(data
, data
->REG_TARGET
[nr
],
2292 data
->target_temp
[nr
]);
2295 reg
= nct6775_read_value(data
, data
->REG_FAN_MODE
[nr
]);
2296 reg
= (reg
& ~data
->tolerance_mask
) |
2297 data
->temp_tolerance
[0][nr
];
2298 nct6775_write_value(data
, data
->REG_FAN_MODE
[nr
], reg
);
2304 show_pwm_enable(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
2306 struct nct6775_data
*data
= nct6775_update_device(dev
);
2307 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2309 return sprintf(buf
, "%d\n", data
->pwm_enable
[sattr
->index
]);
2313 store_pwm_enable(struct device
*dev
, struct device_attribute
*attr
,
2314 const char *buf
, size_t count
)
2316 struct nct6775_data
*data
= dev_get_drvdata(dev
);
2317 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2318 int nr
= sattr
->index
;
2323 err
= kstrtoul(buf
, 10, &val
);
2330 if (val
== sf3
&& data
->kind
!= nct6775
)
2333 if (val
== sf4
&& check_trip_points(data
, nr
)) {
2334 dev_err(dev
, "Inconsistent trip points, not switching to SmartFan IV mode\n");
2335 dev_err(dev
, "Adjust trip points and try again\n");
2339 mutex_lock(&data
->update_lock
);
2340 data
->pwm_enable
[nr
] = val
;
2343 * turn off pwm control: select manual mode, set pwm to maximum
2345 data
->pwm
[0][nr
] = 255;
2346 nct6775_write_value(data
, data
->REG_PWM
[0][nr
], 255);
2348 pwm_update_registers(data
, nr
);
2349 reg
= nct6775_read_value(data
, data
->REG_FAN_MODE
[nr
]);
2351 reg
|= pwm_enable_to_reg(val
) << 4;
2352 nct6775_write_value(data
, data
->REG_FAN_MODE
[nr
], reg
);
2353 mutex_unlock(&data
->update_lock
);
2358 show_pwm_temp_sel_common(struct nct6775_data
*data
, char *buf
, int src
)
2362 for (i
= 0; i
< NUM_TEMP
; i
++) {
2363 if (!(data
->have_temp
& (1 << i
)))
2365 if (src
== data
->temp_src
[i
]) {
2371 return sprintf(buf
, "%d\n", sel
);
2375 show_pwm_temp_sel(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
2377 struct nct6775_data
*data
= nct6775_update_device(dev
);
2378 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2379 int index
= sattr
->index
;
2381 return show_pwm_temp_sel_common(data
, buf
, data
->pwm_temp_sel
[index
]);
2385 store_pwm_temp_sel(struct device
*dev
, struct device_attribute
*attr
,
2386 const char *buf
, size_t count
)
2388 struct nct6775_data
*data
= nct6775_update_device(dev
);
2389 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2390 int nr
= sattr
->index
;
2394 err
= kstrtoul(buf
, 10, &val
);
2397 if (val
== 0 || val
> NUM_TEMP
)
2399 if (!(data
->have_temp
& (1 << (val
- 1))) || !data
->temp_src
[val
- 1])
2402 mutex_lock(&data
->update_lock
);
2403 src
= data
->temp_src
[val
- 1];
2404 data
->pwm_temp_sel
[nr
] = src
;
2405 reg
= nct6775_read_value(data
, data
->REG_TEMP_SEL
[nr
]);
2408 nct6775_write_value(data
, data
->REG_TEMP_SEL
[nr
], reg
);
2409 mutex_unlock(&data
->update_lock
);
2415 show_pwm_weight_temp_sel(struct device
*dev
, struct device_attribute
*attr
,
2418 struct nct6775_data
*data
= nct6775_update_device(dev
);
2419 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2420 int index
= sattr
->index
;
2422 return show_pwm_temp_sel_common(data
, buf
,
2423 data
->pwm_weight_temp_sel
[index
]);
2427 store_pwm_weight_temp_sel(struct device
*dev
, struct device_attribute
*attr
,
2428 const char *buf
, size_t count
)
2430 struct nct6775_data
*data
= nct6775_update_device(dev
);
2431 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2432 int nr
= sattr
->index
;
2436 err
= kstrtoul(buf
, 10, &val
);
2441 if (val
&& (!(data
->have_temp
& (1 << (val
- 1))) ||
2442 !data
->temp_src
[val
- 1]))
2445 mutex_lock(&data
->update_lock
);
2447 src
= data
->temp_src
[val
- 1];
2448 data
->pwm_weight_temp_sel
[nr
] = src
;
2449 reg
= nct6775_read_value(data
, data
->REG_WEIGHT_TEMP_SEL
[nr
]);
2451 reg
|= (src
| 0x80);
2452 nct6775_write_value(data
, data
->REG_WEIGHT_TEMP_SEL
[nr
], reg
);
2454 data
->pwm_weight_temp_sel
[nr
] = 0;
2455 reg
= nct6775_read_value(data
, data
->REG_WEIGHT_TEMP_SEL
[nr
]);
2457 nct6775_write_value(data
, data
->REG_WEIGHT_TEMP_SEL
[nr
], reg
);
2459 mutex_unlock(&data
->update_lock
);
2465 show_target_temp(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
2467 struct nct6775_data
*data
= nct6775_update_device(dev
);
2468 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2470 return sprintf(buf
, "%d\n", data
->target_temp
[sattr
->index
] * 1000);
2474 store_target_temp(struct device
*dev
, struct device_attribute
*attr
,
2475 const char *buf
, size_t count
)
2477 struct nct6775_data
*data
= dev_get_drvdata(dev
);
2478 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2479 int nr
= sattr
->index
;
2483 err
= kstrtoul(buf
, 10, &val
);
2487 val
= clamp_val(DIV_ROUND_CLOSEST(val
, 1000), 0,
2488 data
->target_temp_mask
);
2490 mutex_lock(&data
->update_lock
);
2491 data
->target_temp
[nr
] = val
;
2492 pwm_update_registers(data
, nr
);
2493 mutex_unlock(&data
->update_lock
);
2498 show_target_speed(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
2500 struct nct6775_data
*data
= nct6775_update_device(dev
);
2501 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2502 int nr
= sattr
->index
;
2504 return sprintf(buf
, "%d\n",
2505 fan_from_reg16(data
->target_speed
[nr
],
2506 data
->fan_div
[nr
]));
2510 store_target_speed(struct device
*dev
, struct device_attribute
*attr
,
2511 const char *buf
, size_t count
)
2513 struct nct6775_data
*data
= dev_get_drvdata(dev
);
2514 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2515 int nr
= sattr
->index
;
2520 err
= kstrtoul(buf
, 10, &val
);
2524 val
= clamp_val(val
, 0, 1350000U);
2525 speed
= fan_to_reg(val
, data
->fan_div
[nr
]);
2527 mutex_lock(&data
->update_lock
);
2528 data
->target_speed
[nr
] = speed
;
2529 pwm_update_registers(data
, nr
);
2530 mutex_unlock(&data
->update_lock
);
2535 show_temp_tolerance(struct device
*dev
, struct device_attribute
*attr
,
2538 struct nct6775_data
*data
= nct6775_update_device(dev
);
2539 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
2541 int index
= sattr
->index
;
2543 return sprintf(buf
, "%d\n", data
->temp_tolerance
[index
][nr
] * 1000);
2547 store_temp_tolerance(struct device
*dev
, struct device_attribute
*attr
,
2548 const char *buf
, size_t count
)
2550 struct nct6775_data
*data
= dev_get_drvdata(dev
);
2551 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
2553 int index
= sattr
->index
;
2557 err
= kstrtoul(buf
, 10, &val
);
2561 /* Limit tolerance as needed */
2562 val
= clamp_val(DIV_ROUND_CLOSEST(val
, 1000), 0, data
->tolerance_mask
);
2564 mutex_lock(&data
->update_lock
);
2565 data
->temp_tolerance
[index
][nr
] = val
;
2567 pwm_update_registers(data
, nr
);
2569 nct6775_write_value(data
,
2570 data
->REG_CRITICAL_TEMP_TOLERANCE
[nr
],
2572 mutex_unlock(&data
->update_lock
);
2577 * Fan speed tolerance is a tricky beast, since the associated register is
2578 * a tick counter, but the value is reported and configured as rpm.
2579 * Compute resulting low and high rpm values and report the difference.
2582 show_speed_tolerance(struct device
*dev
, struct device_attribute
*attr
,
2585 struct nct6775_data
*data
= nct6775_update_device(dev
);
2586 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2587 int nr
= sattr
->index
;
2588 int low
= data
->target_speed
[nr
] - data
->target_speed_tolerance
[nr
];
2589 int high
= data
->target_speed
[nr
] + data
->target_speed_tolerance
[nr
];
2599 tolerance
= (fan_from_reg16(low
, data
->fan_div
[nr
])
2600 - fan_from_reg16(high
, data
->fan_div
[nr
])) / 2;
2602 return sprintf(buf
, "%d\n", tolerance
);
2606 store_speed_tolerance(struct device
*dev
, struct device_attribute
*attr
,
2607 const char *buf
, size_t count
)
2609 struct nct6775_data
*data
= dev_get_drvdata(dev
);
2610 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2611 int nr
= sattr
->index
;
2616 err
= kstrtoul(buf
, 10, &val
);
2620 high
= fan_from_reg16(data
->target_speed
[nr
],
2621 data
->fan_div
[nr
]) + val
;
2622 low
= fan_from_reg16(data
->target_speed
[nr
],
2623 data
->fan_div
[nr
]) - val
;
2629 val
= (fan_to_reg(low
, data
->fan_div
[nr
]) -
2630 fan_to_reg(high
, data
->fan_div
[nr
])) / 2;
2632 /* Limit tolerance as needed */
2633 val
= clamp_val(val
, 0, data
->speed_tolerance_limit
);
2635 mutex_lock(&data
->update_lock
);
2636 data
->target_speed_tolerance
[nr
] = val
;
2637 pwm_update_registers(data
, nr
);
2638 mutex_unlock(&data
->update_lock
);
2642 SENSOR_TEMPLATE_2(pwm
, "pwm%d", S_IWUSR
| S_IRUGO
, show_pwm
, store_pwm
, 0, 0);
2643 SENSOR_TEMPLATE(pwm_mode
, "pwm%d_mode", S_IWUSR
| S_IRUGO
, show_pwm_mode
,
2645 SENSOR_TEMPLATE(pwm_enable
, "pwm%d_enable", S_IWUSR
| S_IRUGO
, show_pwm_enable
,
2646 store_pwm_enable
, 0);
2647 SENSOR_TEMPLATE(pwm_temp_sel
, "pwm%d_temp_sel", S_IWUSR
| S_IRUGO
,
2648 show_pwm_temp_sel
, store_pwm_temp_sel
, 0);
2649 SENSOR_TEMPLATE(pwm_target_temp
, "pwm%d_target_temp", S_IWUSR
| S_IRUGO
,
2650 show_target_temp
, store_target_temp
, 0);
2651 SENSOR_TEMPLATE(fan_target
, "fan%d_target", S_IWUSR
| S_IRUGO
,
2652 show_target_speed
, store_target_speed
, 0);
2653 SENSOR_TEMPLATE(fan_tolerance
, "fan%d_tolerance", S_IWUSR
| S_IRUGO
,
2654 show_speed_tolerance
, store_speed_tolerance
, 0);
2656 /* Smart Fan registers */
2659 show_weight_temp(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
2661 struct nct6775_data
*data
= nct6775_update_device(dev
);
2662 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
2664 int index
= sattr
->index
;
2666 return sprintf(buf
, "%d\n", data
->weight_temp
[index
][nr
] * 1000);
2670 store_weight_temp(struct device
*dev
, struct device_attribute
*attr
,
2671 const char *buf
, size_t count
)
2673 struct nct6775_data
*data
= dev_get_drvdata(dev
);
2674 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
2676 int index
= sattr
->index
;
2680 err
= kstrtoul(buf
, 10, &val
);
2684 val
= clamp_val(DIV_ROUND_CLOSEST(val
, 1000), 0, 255);
2686 mutex_lock(&data
->update_lock
);
2687 data
->weight_temp
[index
][nr
] = val
;
2688 nct6775_write_value(data
, data
->REG_WEIGHT_TEMP
[index
][nr
], val
);
2689 mutex_unlock(&data
->update_lock
);
2693 SENSOR_TEMPLATE(pwm_weight_temp_sel
, "pwm%d_weight_temp_sel", S_IWUSR
| S_IRUGO
,
2694 show_pwm_weight_temp_sel
, store_pwm_weight_temp_sel
, 0);
2695 SENSOR_TEMPLATE_2(pwm_weight_temp_step
, "pwm%d_weight_temp_step",
2696 S_IWUSR
| S_IRUGO
, show_weight_temp
, store_weight_temp
, 0, 0);
2697 SENSOR_TEMPLATE_2(pwm_weight_temp_step_tol
, "pwm%d_weight_temp_step_tol",
2698 S_IWUSR
| S_IRUGO
, show_weight_temp
, store_weight_temp
, 0, 1);
2699 SENSOR_TEMPLATE_2(pwm_weight_temp_step_base
, "pwm%d_weight_temp_step_base",
2700 S_IWUSR
| S_IRUGO
, show_weight_temp
, store_weight_temp
, 0, 2);
2701 SENSOR_TEMPLATE_2(pwm_weight_duty_step
, "pwm%d_weight_duty_step",
2702 S_IWUSR
| S_IRUGO
, show_pwm
, store_pwm
, 0, 5);
2703 SENSOR_TEMPLATE_2(pwm_weight_duty_base
, "pwm%d_weight_duty_base",
2704 S_IWUSR
| S_IRUGO
, show_pwm
, store_pwm
, 0, 6);
2707 show_fan_time(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
2709 struct nct6775_data
*data
= nct6775_update_device(dev
);
2710 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
2712 int index
= sattr
->index
;
2714 return sprintf(buf
, "%d\n",
2715 step_time_from_reg(data
->fan_time
[index
][nr
],
2716 data
->pwm_mode
[nr
]));
2720 store_fan_time(struct device
*dev
, struct device_attribute
*attr
,
2721 const char *buf
, size_t count
)
2723 struct nct6775_data
*data
= dev_get_drvdata(dev
);
2724 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
2726 int index
= sattr
->index
;
2730 err
= kstrtoul(buf
, 10, &val
);
2734 val
= step_time_to_reg(val
, data
->pwm_mode
[nr
]);
2735 mutex_lock(&data
->update_lock
);
2736 data
->fan_time
[index
][nr
] = val
;
2737 nct6775_write_value(data
, data
->REG_FAN_TIME
[index
][nr
], val
);
2738 mutex_unlock(&data
->update_lock
);
2743 show_auto_pwm(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
2745 struct nct6775_data
*data
= nct6775_update_device(dev
);
2746 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
2748 return sprintf(buf
, "%d\n", data
->auto_pwm
[sattr
->nr
][sattr
->index
]);
2752 store_auto_pwm(struct device
*dev
, struct device_attribute
*attr
,
2753 const char *buf
, size_t count
)
2755 struct nct6775_data
*data
= dev_get_drvdata(dev
);
2756 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
2758 int point
= sattr
->index
;
2763 err
= kstrtoul(buf
, 10, &val
);
2769 if (point
== data
->auto_pwm_num
) {
2770 if (data
->kind
!= nct6775
&& !val
)
2772 if (data
->kind
!= nct6779
&& val
)
2776 mutex_lock(&data
->update_lock
);
2777 data
->auto_pwm
[nr
][point
] = val
;
2778 if (point
< data
->auto_pwm_num
) {
2779 nct6775_write_value(data
,
2780 NCT6775_AUTO_PWM(data
, nr
, point
),
2781 data
->auto_pwm
[nr
][point
]);
2783 switch (data
->kind
) {
2785 /* disable if needed (pwm == 0) */
2786 reg
= nct6775_read_value(data
,
2787 NCT6775_REG_CRITICAL_ENAB
[nr
]);
2792 nct6775_write_value(data
, NCT6775_REG_CRITICAL_ENAB
[nr
],
2796 break; /* always enabled, nothing to do */
2800 nct6775_write_value(data
, data
->REG_CRITICAL_PWM
[nr
],
2802 reg
= nct6775_read_value(data
,
2803 data
->REG_CRITICAL_PWM_ENABLE
[nr
]);
2805 reg
&= ~data
->CRITICAL_PWM_ENABLE_MASK
;
2807 reg
|= data
->CRITICAL_PWM_ENABLE_MASK
;
2808 nct6775_write_value(data
,
2809 data
->REG_CRITICAL_PWM_ENABLE
[nr
],
2814 mutex_unlock(&data
->update_lock
);
2819 show_auto_temp(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
2821 struct nct6775_data
*data
= nct6775_update_device(dev
);
2822 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
2824 int point
= sattr
->index
;
2827 * We don't know for sure if the temperature is signed or unsigned.
2828 * Assume it is unsigned.
2830 return sprintf(buf
, "%d\n", data
->auto_temp
[nr
][point
] * 1000);
2834 store_auto_temp(struct device
*dev
, struct device_attribute
*attr
,
2835 const char *buf
, size_t count
)
2837 struct nct6775_data
*data
= dev_get_drvdata(dev
);
2838 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
2840 int point
= sattr
->index
;
2844 err
= kstrtoul(buf
, 10, &val
);
2850 mutex_lock(&data
->update_lock
);
2851 data
->auto_temp
[nr
][point
] = DIV_ROUND_CLOSEST(val
, 1000);
2852 if (point
< data
->auto_pwm_num
) {
2853 nct6775_write_value(data
,
2854 NCT6775_AUTO_TEMP(data
, nr
, point
),
2855 data
->auto_temp
[nr
][point
]);
2857 nct6775_write_value(data
, data
->REG_CRITICAL_TEMP
[nr
],
2858 data
->auto_temp
[nr
][point
]);
2860 mutex_unlock(&data
->update_lock
);
2864 static umode_t
nct6775_pwm_is_visible(struct kobject
*kobj
,
2865 struct attribute
*attr
, int index
)
2867 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
2868 struct nct6775_data
*data
= dev_get_drvdata(dev
);
2869 int pwm
= index
/ 36; /* pwm index */
2870 int nr
= index
% 36; /* attribute index */
2872 if (!(data
->has_pwm
& (1 << pwm
)))
2875 if ((nr
>= 14 && nr
<= 18) || nr
== 21) /* weight */
2876 if (!data
->REG_WEIGHT_TEMP_SEL
[pwm
])
2878 if (nr
== 19 && data
->REG_PWM
[3] == NULL
) /* pwm_max */
2880 if (nr
== 20 && data
->REG_PWM
[4] == NULL
) /* pwm_step */
2882 if (nr
== 21 && data
->REG_PWM
[6] == NULL
) /* weight_duty_base */
2885 if (nr
>= 22 && nr
<= 35) { /* auto point */
2886 int api
= (nr
- 22) / 2; /* auto point index */
2888 if (api
> data
->auto_pwm_num
)
2894 SENSOR_TEMPLATE_2(pwm_stop_time
, "pwm%d_stop_time", S_IWUSR
| S_IRUGO
,
2895 show_fan_time
, store_fan_time
, 0, 0);
2896 SENSOR_TEMPLATE_2(pwm_step_up_time
, "pwm%d_step_up_time", S_IWUSR
| S_IRUGO
,
2897 show_fan_time
, store_fan_time
, 0, 1);
2898 SENSOR_TEMPLATE_2(pwm_step_down_time
, "pwm%d_step_down_time", S_IWUSR
| S_IRUGO
,
2899 show_fan_time
, store_fan_time
, 0, 2);
2900 SENSOR_TEMPLATE_2(pwm_start
, "pwm%d_start", S_IWUSR
| S_IRUGO
, show_pwm
,
2902 SENSOR_TEMPLATE_2(pwm_floor
, "pwm%d_floor", S_IWUSR
| S_IRUGO
, show_pwm
,
2904 SENSOR_TEMPLATE_2(pwm_temp_tolerance
, "pwm%d_temp_tolerance", S_IWUSR
| S_IRUGO
,
2905 show_temp_tolerance
, store_temp_tolerance
, 0, 0);
2906 SENSOR_TEMPLATE_2(pwm_crit_temp_tolerance
, "pwm%d_crit_temp_tolerance",
2907 S_IWUSR
| S_IRUGO
, show_temp_tolerance
, store_temp_tolerance
,
2910 SENSOR_TEMPLATE_2(pwm_max
, "pwm%d_max", S_IWUSR
| S_IRUGO
, show_pwm
, store_pwm
,
2913 SENSOR_TEMPLATE_2(pwm_step
, "pwm%d_step", S_IWUSR
| S_IRUGO
, show_pwm
,
2916 SENSOR_TEMPLATE_2(pwm_auto_point1_pwm
, "pwm%d_auto_point1_pwm",
2917 S_IWUSR
| S_IRUGO
, show_auto_pwm
, store_auto_pwm
, 0, 0);
2918 SENSOR_TEMPLATE_2(pwm_auto_point1_temp
, "pwm%d_auto_point1_temp",
2919 S_IWUSR
| S_IRUGO
, show_auto_temp
, store_auto_temp
, 0, 0);
2921 SENSOR_TEMPLATE_2(pwm_auto_point2_pwm
, "pwm%d_auto_point2_pwm",
2922 S_IWUSR
| S_IRUGO
, show_auto_pwm
, store_auto_pwm
, 0, 1);
2923 SENSOR_TEMPLATE_2(pwm_auto_point2_temp
, "pwm%d_auto_point2_temp",
2924 S_IWUSR
| S_IRUGO
, show_auto_temp
, store_auto_temp
, 0, 1);
2926 SENSOR_TEMPLATE_2(pwm_auto_point3_pwm
, "pwm%d_auto_point3_pwm",
2927 S_IWUSR
| S_IRUGO
, show_auto_pwm
, store_auto_pwm
, 0, 2);
2928 SENSOR_TEMPLATE_2(pwm_auto_point3_temp
, "pwm%d_auto_point3_temp",
2929 S_IWUSR
| S_IRUGO
, show_auto_temp
, store_auto_temp
, 0, 2);
2931 SENSOR_TEMPLATE_2(pwm_auto_point4_pwm
, "pwm%d_auto_point4_pwm",
2932 S_IWUSR
| S_IRUGO
, show_auto_pwm
, store_auto_pwm
, 0, 3);
2933 SENSOR_TEMPLATE_2(pwm_auto_point4_temp
, "pwm%d_auto_point4_temp",
2934 S_IWUSR
| S_IRUGO
, show_auto_temp
, store_auto_temp
, 0, 3);
2936 SENSOR_TEMPLATE_2(pwm_auto_point5_pwm
, "pwm%d_auto_point5_pwm",
2937 S_IWUSR
| S_IRUGO
, show_auto_pwm
, store_auto_pwm
, 0, 4);
2938 SENSOR_TEMPLATE_2(pwm_auto_point5_temp
, "pwm%d_auto_point5_temp",
2939 S_IWUSR
| S_IRUGO
, show_auto_temp
, store_auto_temp
, 0, 4);
2941 SENSOR_TEMPLATE_2(pwm_auto_point6_pwm
, "pwm%d_auto_point6_pwm",
2942 S_IWUSR
| S_IRUGO
, show_auto_pwm
, store_auto_pwm
, 0, 5);
2943 SENSOR_TEMPLATE_2(pwm_auto_point6_temp
, "pwm%d_auto_point6_temp",
2944 S_IWUSR
| S_IRUGO
, show_auto_temp
, store_auto_temp
, 0, 5);
2946 SENSOR_TEMPLATE_2(pwm_auto_point7_pwm
, "pwm%d_auto_point7_pwm",
2947 S_IWUSR
| S_IRUGO
, show_auto_pwm
, store_auto_pwm
, 0, 6);
2948 SENSOR_TEMPLATE_2(pwm_auto_point7_temp
, "pwm%d_auto_point7_temp",
2949 S_IWUSR
| S_IRUGO
, show_auto_temp
, store_auto_temp
, 0, 6);
2952 * nct6775_pwm_is_visible uses the index into the following array
2953 * to determine if attributes should be created or not.
2954 * Any change in order or content must be matched.
2956 static struct sensor_device_template
*nct6775_attributes_pwm_template
[] = {
2957 &sensor_dev_template_pwm
,
2958 &sensor_dev_template_pwm_mode
,
2959 &sensor_dev_template_pwm_enable
,
2960 &sensor_dev_template_pwm_temp_sel
,
2961 &sensor_dev_template_pwm_temp_tolerance
,
2962 &sensor_dev_template_pwm_crit_temp_tolerance
,
2963 &sensor_dev_template_pwm_target_temp
,
2964 &sensor_dev_template_fan_target
,
2965 &sensor_dev_template_fan_tolerance
,
2966 &sensor_dev_template_pwm_stop_time
,
2967 &sensor_dev_template_pwm_step_up_time
,
2968 &sensor_dev_template_pwm_step_down_time
,
2969 &sensor_dev_template_pwm_start
,
2970 &sensor_dev_template_pwm_floor
,
2971 &sensor_dev_template_pwm_weight_temp_sel
, /* 14 */
2972 &sensor_dev_template_pwm_weight_temp_step
,
2973 &sensor_dev_template_pwm_weight_temp_step_tol
,
2974 &sensor_dev_template_pwm_weight_temp_step_base
,
2975 &sensor_dev_template_pwm_weight_duty_step
, /* 18 */
2976 &sensor_dev_template_pwm_max
, /* 19 */
2977 &sensor_dev_template_pwm_step
, /* 20 */
2978 &sensor_dev_template_pwm_weight_duty_base
, /* 21 */
2979 &sensor_dev_template_pwm_auto_point1_pwm
, /* 22 */
2980 &sensor_dev_template_pwm_auto_point1_temp
,
2981 &sensor_dev_template_pwm_auto_point2_pwm
,
2982 &sensor_dev_template_pwm_auto_point2_temp
,
2983 &sensor_dev_template_pwm_auto_point3_pwm
,
2984 &sensor_dev_template_pwm_auto_point3_temp
,
2985 &sensor_dev_template_pwm_auto_point4_pwm
,
2986 &sensor_dev_template_pwm_auto_point4_temp
,
2987 &sensor_dev_template_pwm_auto_point5_pwm
,
2988 &sensor_dev_template_pwm_auto_point5_temp
,
2989 &sensor_dev_template_pwm_auto_point6_pwm
,
2990 &sensor_dev_template_pwm_auto_point6_temp
,
2991 &sensor_dev_template_pwm_auto_point7_pwm
,
2992 &sensor_dev_template_pwm_auto_point7_temp
, /* 35 */
2997 static struct sensor_template_group nct6775_pwm_template_group
= {
2998 .templates
= nct6775_attributes_pwm_template
,
2999 .is_visible
= nct6775_pwm_is_visible
,
3004 show_vid(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
3006 struct nct6775_data
*data
= dev_get_drvdata(dev
);
3007 return sprintf(buf
, "%d\n", vid_from_reg(data
->vid
, data
->vrm
));
3010 static DEVICE_ATTR(cpu0_vid
, S_IRUGO
, show_vid
, NULL
);
3012 /* Case open detection */
3015 clear_caseopen(struct device
*dev
, struct device_attribute
*attr
,
3016 const char *buf
, size_t count
)
3018 struct nct6775_data
*data
= dev_get_drvdata(dev
);
3019 int nr
= to_sensor_dev_attr(attr
)->index
- INTRUSION_ALARM_BASE
;
3024 if (kstrtoul(buf
, 10, &val
) || val
!= 0)
3027 mutex_lock(&data
->update_lock
);
3030 * Use CR registers to clear caseopen status.
3031 * The CR registers are the same for all chips, and not all chips
3032 * support clearing the caseopen status through "regular" registers.
3034 ret
= superio_enter(data
->sioreg
);
3040 superio_select(data
->sioreg
, NCT6775_LD_ACPI
);
3041 reg
= superio_inb(data
->sioreg
, NCT6775_REG_CR_CASEOPEN_CLR
[nr
]);
3042 reg
|= NCT6775_CR_CASEOPEN_CLR_MASK
[nr
];
3043 superio_outb(data
->sioreg
, NCT6775_REG_CR_CASEOPEN_CLR
[nr
], reg
);
3044 reg
&= ~NCT6775_CR_CASEOPEN_CLR_MASK
[nr
];
3045 superio_outb(data
->sioreg
, NCT6775_REG_CR_CASEOPEN_CLR
[nr
], reg
);
3046 superio_exit(data
->sioreg
);
3048 data
->valid
= false; /* Force cache refresh */
3050 mutex_unlock(&data
->update_lock
);
3054 static SENSOR_DEVICE_ATTR(intrusion0_alarm
, S_IWUSR
| S_IRUGO
, show_alarm
,
3055 clear_caseopen
, INTRUSION_ALARM_BASE
);
3056 static SENSOR_DEVICE_ATTR(intrusion1_alarm
, S_IWUSR
| S_IRUGO
, show_alarm
,
3057 clear_caseopen
, INTRUSION_ALARM_BASE
+ 1);
3058 static SENSOR_DEVICE_ATTR(intrusion0_beep
, S_IWUSR
| S_IRUGO
, show_beep
,
3059 store_beep
, INTRUSION_ALARM_BASE
);
3060 static SENSOR_DEVICE_ATTR(intrusion1_beep
, S_IWUSR
| S_IRUGO
, show_beep
,
3061 store_beep
, INTRUSION_ALARM_BASE
+ 1);
3062 static SENSOR_DEVICE_ATTR(beep_enable
, S_IWUSR
| S_IRUGO
, show_beep
,
3063 store_beep
, BEEP_ENABLE_BASE
);
3065 static umode_t
nct6775_other_is_visible(struct kobject
*kobj
,
3066 struct attribute
*attr
, int index
)
3068 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
3069 struct nct6775_data
*data
= dev_get_drvdata(dev
);
3071 if (index
== 0 && !data
->have_vid
)
3074 if (index
== 1 || index
== 2) {
3075 if (data
->ALARM_BITS
[INTRUSION_ALARM_BASE
+ index
- 1] < 0)
3079 if (index
== 3 || index
== 4) {
3080 if (data
->BEEP_BITS
[INTRUSION_ALARM_BASE
+ index
- 3] < 0)
3088 * nct6775_other_is_visible uses the index into the following array
3089 * to determine if attributes should be created or not.
3090 * Any change in order or content must be matched.
3092 static struct attribute
*nct6775_attributes_other
[] = {
3093 &dev_attr_cpu0_vid
.attr
, /* 0 */
3094 &sensor_dev_attr_intrusion0_alarm
.dev_attr
.attr
, /* 1 */
3095 &sensor_dev_attr_intrusion1_alarm
.dev_attr
.attr
, /* 2 */
3096 &sensor_dev_attr_intrusion0_beep
.dev_attr
.attr
, /* 3 */
3097 &sensor_dev_attr_intrusion1_beep
.dev_attr
.attr
, /* 4 */
3098 &sensor_dev_attr_beep_enable
.dev_attr
.attr
, /* 5 */
3103 static const struct attribute_group nct6775_group_other
= {
3104 .attrs
= nct6775_attributes_other
,
3105 .is_visible
= nct6775_other_is_visible
,
3108 static inline void nct6775_init_device(struct nct6775_data
*data
)
3113 /* Start monitoring if needed */
3114 if (data
->REG_CONFIG
) {
3115 tmp
= nct6775_read_value(data
, data
->REG_CONFIG
);
3117 nct6775_write_value(data
, data
->REG_CONFIG
, tmp
| 0x01);
3120 /* Enable temperature sensors if needed */
3121 for (i
= 0; i
< NUM_TEMP
; i
++) {
3122 if (!(data
->have_temp
& (1 << i
)))
3124 if (!data
->reg_temp_config
[i
])
3126 tmp
= nct6775_read_value(data
, data
->reg_temp_config
[i
]);
3128 nct6775_write_value(data
, data
->reg_temp_config
[i
],
3132 /* Enable VBAT monitoring if needed */
3133 tmp
= nct6775_read_value(data
, data
->REG_VBAT
);
3135 nct6775_write_value(data
, data
->REG_VBAT
, tmp
| 0x01);
3137 diode
= nct6775_read_value(data
, data
->REG_DIODE
);
3139 for (i
= 0; i
< data
->temp_fixed_num
; i
++) {
3140 if (!(data
->have_temp_fixed
& (1 << i
)))
3142 if ((tmp
& (data
->DIODE_MASK
<< i
))) /* diode */
3144 = 3 - ((diode
>> i
) & data
->DIODE_MASK
);
3145 else /* thermistor */
3146 data
->temp_type
[i
] = 4;
3151 nct6775_check_fan_inputs(struct nct6775_data
*data
)
3153 bool fan3pin
, fan4pin
, fan4min
, fan5pin
, fan6pin
;
3154 bool pwm3pin
, pwm4pin
, pwm5pin
, pwm6pin
;
3155 int sioreg
= data
->sioreg
;
3158 /* fan4 and fan5 share some pins with the GPIO and serial flash */
3159 if (data
->kind
== nct6775
) {
3160 regval
= superio_inb(sioreg
, 0x2c);
3162 fan3pin
= regval
& (1 << 6);
3163 pwm3pin
= regval
& (1 << 7);
3165 /* On NCT6775, fan4 shares pins with the fdc interface */
3166 fan4pin
= !(superio_inb(sioreg
, 0x2A) & 0x80);
3173 } else if (data
->kind
== nct6776
) {
3174 bool gpok
= superio_inb(sioreg
, 0x27) & 0x80;
3176 superio_select(sioreg
, NCT6775_LD_HWM
);
3177 regval
= superio_inb(sioreg
, SIO_REG_ENABLE
);
3182 fan3pin
= !(superio_inb(sioreg
, 0x24) & 0x40);
3187 fan4pin
= superio_inb(sioreg
, 0x1C) & 0x01;
3192 fan5pin
= superio_inb(sioreg
, 0x1C) & 0x02;
3200 } else if (data
->kind
== nct6106
) {
3201 regval
= superio_inb(sioreg
, 0x24);
3202 fan3pin
= !(regval
& 0x80);
3203 pwm3pin
= regval
& 0x08;
3212 } else { /* NCT6779D or NCT6791D */
3213 regval
= superio_inb(sioreg
, 0x1c);
3215 fan3pin
= !(regval
& (1 << 5));
3216 fan4pin
= !(regval
& (1 << 6));
3217 fan5pin
= !(regval
& (1 << 7));
3219 pwm3pin
= !(regval
& (1 << 0));
3220 pwm4pin
= !(regval
& (1 << 1));
3221 pwm5pin
= !(regval
& (1 << 2));
3225 if (data
->kind
== nct6791
) {
3226 regval
= superio_inb(sioreg
, 0x2d);
3227 fan6pin
= (regval
& (1 << 1));
3228 pwm6pin
= (regval
& (1 << 0));
3229 } else { /* NCT6779D */
3235 /* fan 1 and 2 (0x03) are always present */
3236 data
->has_fan
= 0x03 | (fan3pin
<< 2) | (fan4pin
<< 3) |
3237 (fan5pin
<< 4) | (fan6pin
<< 5);
3238 data
->has_fan_min
= 0x03 | (fan3pin
<< 2) | (fan4min
<< 3) |
3240 data
->has_pwm
= 0x03 | (pwm3pin
<< 2) | (pwm4pin
<< 3) |
3241 (pwm5pin
<< 4) | (pwm6pin
<< 5);
3244 static void add_temp_sensors(struct nct6775_data
*data
, const u16
*regp
,
3245 int *available
, int *mask
)
3250 for (i
= 0; i
< data
->pwm_num
&& *available
; i
++) {
3255 src
= nct6775_read_value(data
, regp
[i
]);
3257 if (!src
|| (*mask
& (1 << src
)))
3259 if (src
>= data
->temp_label_num
||
3260 !strlen(data
->temp_label
[src
]))
3263 index
= __ffs(*available
);
3264 nct6775_write_value(data
, data
->REG_TEMP_SOURCE
[index
], src
);
3265 *available
&= ~(1 << index
);
3270 static int nct6775_probe(struct platform_device
*pdev
)
3272 struct device
*dev
= &pdev
->dev
;
3273 struct nct6775_sio_data
*sio_data
= dev_get_platdata(dev
);
3274 struct nct6775_data
*data
;
3275 struct resource
*res
;
3277 int src
, mask
, available
;
3278 const u16
*reg_temp
, *reg_temp_over
, *reg_temp_hyst
, *reg_temp_config
;
3279 const u16
*reg_temp_mon
, *reg_temp_alternate
, *reg_temp_crit
;
3280 const u16
*reg_temp_crit_l
= NULL
, *reg_temp_crit_h
= NULL
;
3281 int num_reg_temp
, num_reg_temp_mon
;
3283 struct attribute_group
*group
;
3284 struct device
*hwmon_dev
;
3286 res
= platform_get_resource(pdev
, IORESOURCE_IO
, 0);
3287 if (!devm_request_region(&pdev
->dev
, res
->start
, IOREGION_LENGTH
,
3291 data
= devm_kzalloc(&pdev
->dev
, sizeof(struct nct6775_data
),
3296 data
->kind
= sio_data
->kind
;
3297 data
->sioreg
= sio_data
->sioreg
;
3298 data
->addr
= res
->start
;
3299 mutex_init(&data
->update_lock
);
3300 data
->name
= nct6775_device_names
[data
->kind
];
3301 data
->bank
= 0xff; /* Force initial bank selection */
3302 platform_set_drvdata(pdev
, data
);
3304 switch (data
->kind
) {
3308 data
->auto_pwm_num
= 4;
3309 data
->temp_fixed_num
= 3;
3310 data
->num_temp_alarms
= 6;
3311 data
->num_temp_beeps
= 6;
3313 data
->fan_from_reg
= fan_from_reg13
;
3314 data
->fan_from_reg_min
= fan_from_reg13
;
3316 data
->temp_label
= nct6776_temp_label
;
3317 data
->temp_label_num
= ARRAY_SIZE(nct6776_temp_label
);
3319 data
->REG_VBAT
= NCT6106_REG_VBAT
;
3320 data
->REG_DIODE
= NCT6106_REG_DIODE
;
3321 data
->DIODE_MASK
= NCT6106_DIODE_MASK
;
3322 data
->REG_VIN
= NCT6106_REG_IN
;
3323 data
->REG_IN_MINMAX
[0] = NCT6106_REG_IN_MIN
;
3324 data
->REG_IN_MINMAX
[1] = NCT6106_REG_IN_MAX
;
3325 data
->REG_TARGET
= NCT6106_REG_TARGET
;
3326 data
->REG_FAN
= NCT6106_REG_FAN
;
3327 data
->REG_FAN_MODE
= NCT6106_REG_FAN_MODE
;
3328 data
->REG_FAN_MIN
= NCT6106_REG_FAN_MIN
;
3329 data
->REG_FAN_PULSES
= NCT6106_REG_FAN_PULSES
;
3330 data
->FAN_PULSE_SHIFT
= NCT6106_FAN_PULSE_SHIFT
;
3331 data
->REG_FAN_TIME
[0] = NCT6106_REG_FAN_STOP_TIME
;
3332 data
->REG_FAN_TIME
[1] = NCT6106_REG_FAN_STEP_UP_TIME
;
3333 data
->REG_FAN_TIME
[2] = NCT6106_REG_FAN_STEP_DOWN_TIME
;
3334 data
->REG_PWM
[0] = NCT6106_REG_PWM
;
3335 data
->REG_PWM
[1] = NCT6106_REG_FAN_START_OUTPUT
;
3336 data
->REG_PWM
[2] = NCT6106_REG_FAN_STOP_OUTPUT
;
3337 data
->REG_PWM
[5] = NCT6106_REG_WEIGHT_DUTY_STEP
;
3338 data
->REG_PWM
[6] = NCT6106_REG_WEIGHT_DUTY_BASE
;
3339 data
->REG_PWM_READ
= NCT6106_REG_PWM_READ
;
3340 data
->REG_PWM_MODE
= NCT6106_REG_PWM_MODE
;
3341 data
->PWM_MODE_MASK
= NCT6106_PWM_MODE_MASK
;
3342 data
->REG_AUTO_TEMP
= NCT6106_REG_AUTO_TEMP
;
3343 data
->REG_AUTO_PWM
= NCT6106_REG_AUTO_PWM
;
3344 data
->REG_CRITICAL_TEMP
= NCT6106_REG_CRITICAL_TEMP
;
3345 data
->REG_CRITICAL_TEMP_TOLERANCE
3346 = NCT6106_REG_CRITICAL_TEMP_TOLERANCE
;
3347 data
->REG_CRITICAL_PWM_ENABLE
= NCT6106_REG_CRITICAL_PWM_ENABLE
;
3348 data
->CRITICAL_PWM_ENABLE_MASK
3349 = NCT6106_CRITICAL_PWM_ENABLE_MASK
;
3350 data
->REG_CRITICAL_PWM
= NCT6106_REG_CRITICAL_PWM
;
3351 data
->REG_TEMP_OFFSET
= NCT6106_REG_TEMP_OFFSET
;
3352 data
->REG_TEMP_SOURCE
= NCT6106_REG_TEMP_SOURCE
;
3353 data
->REG_TEMP_SEL
= NCT6106_REG_TEMP_SEL
;
3354 data
->REG_WEIGHT_TEMP_SEL
= NCT6106_REG_WEIGHT_TEMP_SEL
;
3355 data
->REG_WEIGHT_TEMP
[0] = NCT6106_REG_WEIGHT_TEMP_STEP
;
3356 data
->REG_WEIGHT_TEMP
[1] = NCT6106_REG_WEIGHT_TEMP_STEP_TOL
;
3357 data
->REG_WEIGHT_TEMP
[2] = NCT6106_REG_WEIGHT_TEMP_BASE
;
3358 data
->REG_ALARM
= NCT6106_REG_ALARM
;
3359 data
->ALARM_BITS
= NCT6106_ALARM_BITS
;
3360 data
->REG_BEEP
= NCT6106_REG_BEEP
;
3361 data
->BEEP_BITS
= NCT6106_BEEP_BITS
;
3363 reg_temp
= NCT6106_REG_TEMP
;
3364 reg_temp_mon
= NCT6106_REG_TEMP_MON
;
3365 num_reg_temp
= ARRAY_SIZE(NCT6106_REG_TEMP
);
3366 num_reg_temp_mon
= ARRAY_SIZE(NCT6106_REG_TEMP_MON
);
3367 reg_temp_over
= NCT6106_REG_TEMP_OVER
;
3368 reg_temp_hyst
= NCT6106_REG_TEMP_HYST
;
3369 reg_temp_config
= NCT6106_REG_TEMP_CONFIG
;
3370 reg_temp_alternate
= NCT6106_REG_TEMP_ALTERNATE
;
3371 reg_temp_crit
= NCT6106_REG_TEMP_CRIT
;
3372 reg_temp_crit_l
= NCT6106_REG_TEMP_CRIT_L
;
3373 reg_temp_crit_h
= NCT6106_REG_TEMP_CRIT_H
;
3379 data
->auto_pwm_num
= 6;
3380 data
->has_fan_div
= true;
3381 data
->temp_fixed_num
= 3;
3382 data
->num_temp_alarms
= 3;
3383 data
->num_temp_beeps
= 3;
3385 data
->ALARM_BITS
= NCT6775_ALARM_BITS
;
3386 data
->BEEP_BITS
= NCT6775_BEEP_BITS
;
3388 data
->fan_from_reg
= fan_from_reg16
;
3389 data
->fan_from_reg_min
= fan_from_reg8
;
3390 data
->target_temp_mask
= 0x7f;
3391 data
->tolerance_mask
= 0x0f;
3392 data
->speed_tolerance_limit
= 15;
3394 data
->temp_label
= nct6775_temp_label
;
3395 data
->temp_label_num
= ARRAY_SIZE(nct6775_temp_label
);
3397 data
->REG_CONFIG
= NCT6775_REG_CONFIG
;
3398 data
->REG_VBAT
= NCT6775_REG_VBAT
;
3399 data
->REG_DIODE
= NCT6775_REG_DIODE
;
3400 data
->DIODE_MASK
= NCT6775_DIODE_MASK
;
3401 data
->REG_VIN
= NCT6775_REG_IN
;
3402 data
->REG_IN_MINMAX
[0] = NCT6775_REG_IN_MIN
;
3403 data
->REG_IN_MINMAX
[1] = NCT6775_REG_IN_MAX
;
3404 data
->REG_TARGET
= NCT6775_REG_TARGET
;
3405 data
->REG_FAN
= NCT6775_REG_FAN
;
3406 data
->REG_FAN_MODE
= NCT6775_REG_FAN_MODE
;
3407 data
->REG_FAN_MIN
= NCT6775_REG_FAN_MIN
;
3408 data
->REG_FAN_PULSES
= NCT6775_REG_FAN_PULSES
;
3409 data
->FAN_PULSE_SHIFT
= NCT6775_FAN_PULSE_SHIFT
;
3410 data
->REG_FAN_TIME
[0] = NCT6775_REG_FAN_STOP_TIME
;
3411 data
->REG_FAN_TIME
[1] = NCT6775_REG_FAN_STEP_UP_TIME
;
3412 data
->REG_FAN_TIME
[2] = NCT6775_REG_FAN_STEP_DOWN_TIME
;
3413 data
->REG_PWM
[0] = NCT6775_REG_PWM
;
3414 data
->REG_PWM
[1] = NCT6775_REG_FAN_START_OUTPUT
;
3415 data
->REG_PWM
[2] = NCT6775_REG_FAN_STOP_OUTPUT
;
3416 data
->REG_PWM
[3] = NCT6775_REG_FAN_MAX_OUTPUT
;
3417 data
->REG_PWM
[4] = NCT6775_REG_FAN_STEP_OUTPUT
;
3418 data
->REG_PWM
[5] = NCT6775_REG_WEIGHT_DUTY_STEP
;
3419 data
->REG_PWM_READ
= NCT6775_REG_PWM_READ
;
3420 data
->REG_PWM_MODE
= NCT6775_REG_PWM_MODE
;
3421 data
->PWM_MODE_MASK
= NCT6775_PWM_MODE_MASK
;
3422 data
->REG_AUTO_TEMP
= NCT6775_REG_AUTO_TEMP
;
3423 data
->REG_AUTO_PWM
= NCT6775_REG_AUTO_PWM
;
3424 data
->REG_CRITICAL_TEMP
= NCT6775_REG_CRITICAL_TEMP
;
3425 data
->REG_CRITICAL_TEMP_TOLERANCE
3426 = NCT6775_REG_CRITICAL_TEMP_TOLERANCE
;
3427 data
->REG_TEMP_OFFSET
= NCT6775_REG_TEMP_OFFSET
;
3428 data
->REG_TEMP_SOURCE
= NCT6775_REG_TEMP_SOURCE
;
3429 data
->REG_TEMP_SEL
= NCT6775_REG_TEMP_SEL
;
3430 data
->REG_WEIGHT_TEMP_SEL
= NCT6775_REG_WEIGHT_TEMP_SEL
;
3431 data
->REG_WEIGHT_TEMP
[0] = NCT6775_REG_WEIGHT_TEMP_STEP
;
3432 data
->REG_WEIGHT_TEMP
[1] = NCT6775_REG_WEIGHT_TEMP_STEP_TOL
;
3433 data
->REG_WEIGHT_TEMP
[2] = NCT6775_REG_WEIGHT_TEMP_BASE
;
3434 data
->REG_ALARM
= NCT6775_REG_ALARM
;
3435 data
->REG_BEEP
= NCT6775_REG_BEEP
;
3437 reg_temp
= NCT6775_REG_TEMP
;
3438 reg_temp_mon
= NCT6775_REG_TEMP_MON
;
3439 num_reg_temp
= ARRAY_SIZE(NCT6775_REG_TEMP
);
3440 num_reg_temp_mon
= ARRAY_SIZE(NCT6775_REG_TEMP_MON
);
3441 reg_temp_over
= NCT6775_REG_TEMP_OVER
;
3442 reg_temp_hyst
= NCT6775_REG_TEMP_HYST
;
3443 reg_temp_config
= NCT6775_REG_TEMP_CONFIG
;
3444 reg_temp_alternate
= NCT6775_REG_TEMP_ALTERNATE
;
3445 reg_temp_crit
= NCT6775_REG_TEMP_CRIT
;
3451 data
->auto_pwm_num
= 4;
3452 data
->has_fan_div
= false;
3453 data
->temp_fixed_num
= 3;
3454 data
->num_temp_alarms
= 3;
3455 data
->num_temp_beeps
= 6;
3457 data
->ALARM_BITS
= NCT6776_ALARM_BITS
;
3458 data
->BEEP_BITS
= NCT6776_BEEP_BITS
;
3460 data
->fan_from_reg
= fan_from_reg13
;
3461 data
->fan_from_reg_min
= fan_from_reg13
;
3462 data
->target_temp_mask
= 0xff;
3463 data
->tolerance_mask
= 0x07;
3464 data
->speed_tolerance_limit
= 63;
3466 data
->temp_label
= nct6776_temp_label
;
3467 data
->temp_label_num
= ARRAY_SIZE(nct6776_temp_label
);
3469 data
->REG_CONFIG
= NCT6775_REG_CONFIG
;
3470 data
->REG_VBAT
= NCT6775_REG_VBAT
;
3471 data
->REG_DIODE
= NCT6775_REG_DIODE
;
3472 data
->DIODE_MASK
= NCT6775_DIODE_MASK
;
3473 data
->REG_VIN
= NCT6775_REG_IN
;
3474 data
->REG_IN_MINMAX
[0] = NCT6775_REG_IN_MIN
;
3475 data
->REG_IN_MINMAX
[1] = NCT6775_REG_IN_MAX
;
3476 data
->REG_TARGET
= NCT6775_REG_TARGET
;
3477 data
->REG_FAN
= NCT6775_REG_FAN
;
3478 data
->REG_FAN_MODE
= NCT6775_REG_FAN_MODE
;
3479 data
->REG_FAN_MIN
= NCT6776_REG_FAN_MIN
;
3480 data
->REG_FAN_PULSES
= NCT6776_REG_FAN_PULSES
;
3481 data
->FAN_PULSE_SHIFT
= NCT6775_FAN_PULSE_SHIFT
;
3482 data
->REG_FAN_TIME
[0] = NCT6775_REG_FAN_STOP_TIME
;
3483 data
->REG_FAN_TIME
[1] = NCT6776_REG_FAN_STEP_UP_TIME
;
3484 data
->REG_FAN_TIME
[2] = NCT6776_REG_FAN_STEP_DOWN_TIME
;
3485 data
->REG_TOLERANCE_H
= NCT6776_REG_TOLERANCE_H
;
3486 data
->REG_PWM
[0] = NCT6775_REG_PWM
;
3487 data
->REG_PWM
[1] = NCT6775_REG_FAN_START_OUTPUT
;
3488 data
->REG_PWM
[2] = NCT6775_REG_FAN_STOP_OUTPUT
;
3489 data
->REG_PWM
[5] = NCT6775_REG_WEIGHT_DUTY_STEP
;
3490 data
->REG_PWM
[6] = NCT6776_REG_WEIGHT_DUTY_BASE
;
3491 data
->REG_PWM_READ
= NCT6775_REG_PWM_READ
;
3492 data
->REG_PWM_MODE
= NCT6776_REG_PWM_MODE
;
3493 data
->PWM_MODE_MASK
= NCT6776_PWM_MODE_MASK
;
3494 data
->REG_AUTO_TEMP
= NCT6775_REG_AUTO_TEMP
;
3495 data
->REG_AUTO_PWM
= NCT6775_REG_AUTO_PWM
;
3496 data
->REG_CRITICAL_TEMP
= NCT6775_REG_CRITICAL_TEMP
;
3497 data
->REG_CRITICAL_TEMP_TOLERANCE
3498 = NCT6775_REG_CRITICAL_TEMP_TOLERANCE
;
3499 data
->REG_TEMP_OFFSET
= NCT6775_REG_TEMP_OFFSET
;
3500 data
->REG_TEMP_SOURCE
= NCT6775_REG_TEMP_SOURCE
;
3501 data
->REG_TEMP_SEL
= NCT6775_REG_TEMP_SEL
;
3502 data
->REG_WEIGHT_TEMP_SEL
= NCT6775_REG_WEIGHT_TEMP_SEL
;
3503 data
->REG_WEIGHT_TEMP
[0] = NCT6775_REG_WEIGHT_TEMP_STEP
;
3504 data
->REG_WEIGHT_TEMP
[1] = NCT6775_REG_WEIGHT_TEMP_STEP_TOL
;
3505 data
->REG_WEIGHT_TEMP
[2] = NCT6775_REG_WEIGHT_TEMP_BASE
;
3506 data
->REG_ALARM
= NCT6775_REG_ALARM
;
3507 data
->REG_BEEP
= NCT6776_REG_BEEP
;
3509 reg_temp
= NCT6775_REG_TEMP
;
3510 reg_temp_mon
= NCT6775_REG_TEMP_MON
;
3511 num_reg_temp
= ARRAY_SIZE(NCT6775_REG_TEMP
);
3512 num_reg_temp_mon
= ARRAY_SIZE(NCT6775_REG_TEMP_MON
);
3513 reg_temp_over
= NCT6775_REG_TEMP_OVER
;
3514 reg_temp_hyst
= NCT6775_REG_TEMP_HYST
;
3515 reg_temp_config
= NCT6776_REG_TEMP_CONFIG
;
3516 reg_temp_alternate
= NCT6776_REG_TEMP_ALTERNATE
;
3517 reg_temp_crit
= NCT6776_REG_TEMP_CRIT
;
3523 data
->auto_pwm_num
= 4;
3524 data
->has_fan_div
= false;
3525 data
->temp_fixed_num
= 6;
3526 data
->num_temp_alarms
= 2;
3527 data
->num_temp_beeps
= 2;
3529 data
->ALARM_BITS
= NCT6779_ALARM_BITS
;
3530 data
->BEEP_BITS
= NCT6779_BEEP_BITS
;
3532 data
->fan_from_reg
= fan_from_reg13
;
3533 data
->fan_from_reg_min
= fan_from_reg13
;
3534 data
->target_temp_mask
= 0xff;
3535 data
->tolerance_mask
= 0x07;
3536 data
->speed_tolerance_limit
= 63;
3538 data
->temp_label
= nct6779_temp_label
;
3539 data
->temp_label_num
= ARRAY_SIZE(nct6779_temp_label
);
3541 data
->REG_CONFIG
= NCT6775_REG_CONFIG
;
3542 data
->REG_VBAT
= NCT6775_REG_VBAT
;
3543 data
->REG_DIODE
= NCT6775_REG_DIODE
;
3544 data
->DIODE_MASK
= NCT6775_DIODE_MASK
;
3545 data
->REG_VIN
= NCT6779_REG_IN
;
3546 data
->REG_IN_MINMAX
[0] = NCT6775_REG_IN_MIN
;
3547 data
->REG_IN_MINMAX
[1] = NCT6775_REG_IN_MAX
;
3548 data
->REG_TARGET
= NCT6775_REG_TARGET
;
3549 data
->REG_FAN
= NCT6779_REG_FAN
;
3550 data
->REG_FAN_MODE
= NCT6775_REG_FAN_MODE
;
3551 data
->REG_FAN_MIN
= NCT6776_REG_FAN_MIN
;
3552 data
->REG_FAN_PULSES
= NCT6779_REG_FAN_PULSES
;
3553 data
->FAN_PULSE_SHIFT
= NCT6775_FAN_PULSE_SHIFT
;
3554 data
->REG_FAN_TIME
[0] = NCT6775_REG_FAN_STOP_TIME
;
3555 data
->REG_FAN_TIME
[1] = NCT6776_REG_FAN_STEP_UP_TIME
;
3556 data
->REG_FAN_TIME
[2] = NCT6776_REG_FAN_STEP_DOWN_TIME
;
3557 data
->REG_TOLERANCE_H
= NCT6776_REG_TOLERANCE_H
;
3558 data
->REG_PWM
[0] = NCT6775_REG_PWM
;
3559 data
->REG_PWM
[1] = NCT6775_REG_FAN_START_OUTPUT
;
3560 data
->REG_PWM
[2] = NCT6775_REG_FAN_STOP_OUTPUT
;
3561 data
->REG_PWM
[5] = NCT6775_REG_WEIGHT_DUTY_STEP
;
3562 data
->REG_PWM
[6] = NCT6776_REG_WEIGHT_DUTY_BASE
;
3563 data
->REG_PWM_READ
= NCT6775_REG_PWM_READ
;
3564 data
->REG_PWM_MODE
= NCT6776_REG_PWM_MODE
;
3565 data
->PWM_MODE_MASK
= NCT6776_PWM_MODE_MASK
;
3566 data
->REG_AUTO_TEMP
= NCT6775_REG_AUTO_TEMP
;
3567 data
->REG_AUTO_PWM
= NCT6775_REG_AUTO_PWM
;
3568 data
->REG_CRITICAL_TEMP
= NCT6775_REG_CRITICAL_TEMP
;
3569 data
->REG_CRITICAL_TEMP_TOLERANCE
3570 = NCT6775_REG_CRITICAL_TEMP_TOLERANCE
;
3571 data
->REG_CRITICAL_PWM_ENABLE
= NCT6779_REG_CRITICAL_PWM_ENABLE
;
3572 data
->CRITICAL_PWM_ENABLE_MASK
3573 = NCT6779_CRITICAL_PWM_ENABLE_MASK
;
3574 data
->REG_CRITICAL_PWM
= NCT6779_REG_CRITICAL_PWM
;
3575 data
->REG_TEMP_OFFSET
= NCT6779_REG_TEMP_OFFSET
;
3576 data
->REG_TEMP_SOURCE
= NCT6775_REG_TEMP_SOURCE
;
3577 data
->REG_TEMP_SEL
= NCT6775_REG_TEMP_SEL
;
3578 data
->REG_WEIGHT_TEMP_SEL
= NCT6775_REG_WEIGHT_TEMP_SEL
;
3579 data
->REG_WEIGHT_TEMP
[0] = NCT6775_REG_WEIGHT_TEMP_STEP
;
3580 data
->REG_WEIGHT_TEMP
[1] = NCT6775_REG_WEIGHT_TEMP_STEP_TOL
;
3581 data
->REG_WEIGHT_TEMP
[2] = NCT6775_REG_WEIGHT_TEMP_BASE
;
3582 data
->REG_ALARM
= NCT6779_REG_ALARM
;
3583 data
->REG_BEEP
= NCT6776_REG_BEEP
;
3585 reg_temp
= NCT6779_REG_TEMP
;
3586 reg_temp_mon
= NCT6779_REG_TEMP_MON
;
3587 num_reg_temp
= ARRAY_SIZE(NCT6779_REG_TEMP
);
3588 num_reg_temp_mon
= ARRAY_SIZE(NCT6779_REG_TEMP_MON
);
3589 reg_temp_over
= NCT6779_REG_TEMP_OVER
;
3590 reg_temp_hyst
= NCT6779_REG_TEMP_HYST
;
3591 reg_temp_config
= NCT6779_REG_TEMP_CONFIG
;
3592 reg_temp_alternate
= NCT6779_REG_TEMP_ALTERNATE
;
3593 reg_temp_crit
= NCT6779_REG_TEMP_CRIT
;
3599 data
->auto_pwm_num
= 4;
3600 data
->has_fan_div
= false;
3601 data
->temp_fixed_num
= 6;
3602 data
->num_temp_alarms
= 2;
3603 data
->num_temp_beeps
= 2;
3605 data
->ALARM_BITS
= NCT6791_ALARM_BITS
;
3606 data
->BEEP_BITS
= NCT6779_BEEP_BITS
;
3608 data
->fan_from_reg
= fan_from_reg13
;
3609 data
->fan_from_reg_min
= fan_from_reg13
;
3610 data
->target_temp_mask
= 0xff;
3611 data
->tolerance_mask
= 0x07;
3612 data
->speed_tolerance_limit
= 63;
3614 data
->temp_label
= nct6779_temp_label
;
3615 data
->temp_label_num
= ARRAY_SIZE(nct6779_temp_label
);
3617 data
->REG_CONFIG
= NCT6775_REG_CONFIG
;
3618 data
->REG_VBAT
= NCT6775_REG_VBAT
;
3619 data
->REG_DIODE
= NCT6775_REG_DIODE
;
3620 data
->DIODE_MASK
= NCT6775_DIODE_MASK
;
3621 data
->REG_VIN
= NCT6779_REG_IN
;
3622 data
->REG_IN_MINMAX
[0] = NCT6775_REG_IN_MIN
;
3623 data
->REG_IN_MINMAX
[1] = NCT6775_REG_IN_MAX
;
3624 data
->REG_TARGET
= NCT6775_REG_TARGET
;
3625 data
->REG_FAN
= NCT6779_REG_FAN
;
3626 data
->REG_FAN_MODE
= NCT6775_REG_FAN_MODE
;
3627 data
->REG_FAN_MIN
= NCT6776_REG_FAN_MIN
;
3628 data
->REG_FAN_PULSES
= NCT6779_REG_FAN_PULSES
;
3629 data
->FAN_PULSE_SHIFT
= NCT6775_FAN_PULSE_SHIFT
;
3630 data
->REG_FAN_TIME
[0] = NCT6775_REG_FAN_STOP_TIME
;
3631 data
->REG_FAN_TIME
[1] = NCT6776_REG_FAN_STEP_UP_TIME
;
3632 data
->REG_FAN_TIME
[2] = NCT6776_REG_FAN_STEP_DOWN_TIME
;
3633 data
->REG_TOLERANCE_H
= NCT6776_REG_TOLERANCE_H
;
3634 data
->REG_PWM
[0] = NCT6775_REG_PWM
;
3635 data
->REG_PWM
[1] = NCT6775_REG_FAN_START_OUTPUT
;
3636 data
->REG_PWM
[2] = NCT6775_REG_FAN_STOP_OUTPUT
;
3637 data
->REG_PWM
[5] = NCT6791_REG_WEIGHT_DUTY_STEP
;
3638 data
->REG_PWM
[6] = NCT6791_REG_WEIGHT_DUTY_BASE
;
3639 data
->REG_PWM_READ
= NCT6775_REG_PWM_READ
;
3640 data
->REG_PWM_MODE
= NCT6776_REG_PWM_MODE
;
3641 data
->PWM_MODE_MASK
= NCT6776_PWM_MODE_MASK
;
3642 data
->REG_AUTO_TEMP
= NCT6775_REG_AUTO_TEMP
;
3643 data
->REG_AUTO_PWM
= NCT6775_REG_AUTO_PWM
;
3644 data
->REG_CRITICAL_TEMP
= NCT6775_REG_CRITICAL_TEMP
;
3645 data
->REG_CRITICAL_TEMP_TOLERANCE
3646 = NCT6775_REG_CRITICAL_TEMP_TOLERANCE
;
3647 data
->REG_CRITICAL_PWM_ENABLE
= NCT6779_REG_CRITICAL_PWM_ENABLE
;
3648 data
->CRITICAL_PWM_ENABLE_MASK
3649 = NCT6779_CRITICAL_PWM_ENABLE_MASK
;
3650 data
->REG_CRITICAL_PWM
= NCT6779_REG_CRITICAL_PWM
;
3651 data
->REG_TEMP_OFFSET
= NCT6779_REG_TEMP_OFFSET
;
3652 data
->REG_TEMP_SOURCE
= NCT6775_REG_TEMP_SOURCE
;
3653 data
->REG_TEMP_SEL
= NCT6775_REG_TEMP_SEL
;
3654 data
->REG_WEIGHT_TEMP_SEL
= NCT6791_REG_WEIGHT_TEMP_SEL
;
3655 data
->REG_WEIGHT_TEMP
[0] = NCT6791_REG_WEIGHT_TEMP_STEP
;
3656 data
->REG_WEIGHT_TEMP
[1] = NCT6791_REG_WEIGHT_TEMP_STEP_TOL
;
3657 data
->REG_WEIGHT_TEMP
[2] = NCT6791_REG_WEIGHT_TEMP_BASE
;
3658 data
->REG_ALARM
= NCT6791_REG_ALARM
;
3659 data
->REG_BEEP
= NCT6776_REG_BEEP
;
3661 reg_temp
= NCT6779_REG_TEMP
;
3662 reg_temp_mon
= NCT6779_REG_TEMP_MON
;
3663 num_reg_temp
= ARRAY_SIZE(NCT6779_REG_TEMP
);
3664 num_reg_temp_mon
= ARRAY_SIZE(NCT6779_REG_TEMP_MON
);
3665 reg_temp_over
= NCT6779_REG_TEMP_OVER
;
3666 reg_temp_hyst
= NCT6779_REG_TEMP_HYST
;
3667 reg_temp_config
= NCT6779_REG_TEMP_CONFIG
;
3668 reg_temp_alternate
= NCT6779_REG_TEMP_ALTERNATE
;
3669 reg_temp_crit
= NCT6779_REG_TEMP_CRIT
;
3675 data
->have_in
= (1 << data
->in_num
) - 1;
3676 data
->have_temp
= 0;
3679 * On some boards, not all available temperature sources are monitored,
3680 * even though some of the monitoring registers are unused.
3681 * Get list of unused monitoring registers, then detect if any fan
3682 * controls are configured to use unmonitored temperature sources.
3683 * If so, assign the unmonitored temperature sources to available
3684 * monitoring registers.
3688 for (i
= 0; i
< num_reg_temp
; i
++) {
3689 if (reg_temp
[i
] == 0)
3692 src
= nct6775_read_value(data
, data
->REG_TEMP_SOURCE
[i
]) & 0x1f;
3693 if (!src
|| (mask
& (1 << src
)))
3694 available
|= 1 << i
;
3700 * Now find unmonitored temperature registers and enable monitoring
3701 * if additional monitoring registers are available.
3703 add_temp_sensors(data
, data
->REG_TEMP_SEL
, &available
, &mask
);
3704 add_temp_sensors(data
, data
->REG_WEIGHT_TEMP_SEL
, &available
, &mask
);
3707 s
= NUM_TEMP_FIXED
; /* First dynamic temperature attribute */
3708 for (i
= 0; i
< num_reg_temp
; i
++) {
3709 if (reg_temp
[i
] == 0)
3712 src
= nct6775_read_value(data
, data
->REG_TEMP_SOURCE
[i
]) & 0x1f;
3713 if (!src
|| (mask
& (1 << src
)))
3716 if (src
>= data
->temp_label_num
||
3717 !strlen(data
->temp_label
[src
])) {
3719 "Invalid temperature source %d at index %d, source register 0x%x, temp register 0x%x\n",
3720 src
, i
, data
->REG_TEMP_SOURCE
[i
], reg_temp
[i
]);
3726 /* Use fixed index for SYSTIN(1), CPUTIN(2), AUXTIN(3) */
3727 if (src
<= data
->temp_fixed_num
) {
3728 data
->have_temp
|= 1 << (src
- 1);
3729 data
->have_temp_fixed
|= 1 << (src
- 1);
3730 data
->reg_temp
[0][src
- 1] = reg_temp
[i
];
3731 data
->reg_temp
[1][src
- 1] = reg_temp_over
[i
];
3732 data
->reg_temp
[2][src
- 1] = reg_temp_hyst
[i
];
3733 if (reg_temp_crit_h
&& reg_temp_crit_h
[i
])
3734 data
->reg_temp
[3][src
- 1] = reg_temp_crit_h
[i
];
3735 else if (reg_temp_crit
[src
- 1])
3736 data
->reg_temp
[3][src
- 1]
3737 = reg_temp_crit
[src
- 1];
3738 if (reg_temp_crit_l
&& reg_temp_crit_l
[i
])
3739 data
->reg_temp
[4][src
- 1] = reg_temp_crit_l
[i
];
3740 data
->reg_temp_config
[src
- 1] = reg_temp_config
[i
];
3741 data
->temp_src
[src
- 1] = src
;
3748 /* Use dynamic index for other sources */
3749 data
->have_temp
|= 1 << s
;
3750 data
->reg_temp
[0][s
] = reg_temp
[i
];
3751 data
->reg_temp
[1][s
] = reg_temp_over
[i
];
3752 data
->reg_temp
[2][s
] = reg_temp_hyst
[i
];
3753 data
->reg_temp_config
[s
] = reg_temp_config
[i
];
3754 if (reg_temp_crit_h
&& reg_temp_crit_h
[i
])
3755 data
->reg_temp
[3][s
] = reg_temp_crit_h
[i
];
3756 else if (reg_temp_crit
[src
- 1])
3757 data
->reg_temp
[3][s
] = reg_temp_crit
[src
- 1];
3758 if (reg_temp_crit_l
&& reg_temp_crit_l
[i
])
3759 data
->reg_temp
[4][s
] = reg_temp_crit_l
[i
];
3761 data
->temp_src
[s
] = src
;
3766 * Repeat with temperatures used for fan control.
3767 * This set of registers does not support limits.
3769 for (i
= 0; i
< num_reg_temp_mon
; i
++) {
3770 if (reg_temp_mon
[i
] == 0)
3773 src
= nct6775_read_value(data
, data
->REG_TEMP_SEL
[i
]) & 0x1f;
3774 if (!src
|| (mask
& (1 << src
)))
3777 if (src
>= data
->temp_label_num
||
3778 !strlen(data
->temp_label
[src
])) {
3780 "Invalid temperature source %d at index %d, source register 0x%x, temp register 0x%x\n",
3781 src
, i
, data
->REG_TEMP_SEL
[i
],
3788 /* Use fixed index for SYSTIN(1), CPUTIN(2), AUXTIN(3) */
3789 if (src
<= data
->temp_fixed_num
) {
3790 if (data
->have_temp
& (1 << (src
- 1)))
3792 data
->have_temp
|= 1 << (src
- 1);
3793 data
->have_temp_fixed
|= 1 << (src
- 1);
3794 data
->reg_temp
[0][src
- 1] = reg_temp_mon
[i
];
3795 data
->temp_src
[src
- 1] = src
;
3802 /* Use dynamic index for other sources */
3803 data
->have_temp
|= 1 << s
;
3804 data
->reg_temp
[0][s
] = reg_temp_mon
[i
];
3805 data
->temp_src
[s
] = src
;
3809 #ifdef USE_ALTERNATE
3811 * Go through the list of alternate temp registers and enable
3813 * The temperature is already monitored if the respective bit in <mask>
3816 for (i
= 0; i
< data
->temp_label_num
- 1; i
++) {
3817 if (!reg_temp_alternate
[i
])
3819 if (mask
& (1 << (i
+ 1)))
3821 if (i
< data
->temp_fixed_num
) {
3822 if (data
->have_temp
& (1 << i
))
3824 data
->have_temp
|= 1 << i
;
3825 data
->have_temp_fixed
|= 1 << i
;
3826 data
->reg_temp
[0][i
] = reg_temp_alternate
[i
];
3827 if (i
< num_reg_temp
) {
3828 data
->reg_temp
[1][i
] = reg_temp_over
[i
];
3829 data
->reg_temp
[2][i
] = reg_temp_hyst
[i
];
3831 data
->temp_src
[i
] = i
+ 1;
3835 if (s
>= NUM_TEMP
) /* Abort if no more space */
3838 data
->have_temp
|= 1 << s
;
3839 data
->reg_temp
[0][s
] = reg_temp_alternate
[i
];
3840 data
->temp_src
[s
] = i
+ 1;
3843 #endif /* USE_ALTERNATE */
3845 /* Initialize the chip */
3846 nct6775_init_device(data
);
3848 err
= superio_enter(sio_data
->sioreg
);
3852 cr2a
= superio_inb(sio_data
->sioreg
, 0x2a);
3853 switch (data
->kind
) {
3855 data
->have_vid
= (cr2a
& 0x40);
3858 data
->have_vid
= (cr2a
& 0x60) == 0x40;
3868 * We can get the VID input values directly at logical device D 0xe3.
3870 if (data
->have_vid
) {
3871 superio_select(sio_data
->sioreg
, NCT6775_LD_VID
);
3872 data
->vid
= superio_inb(sio_data
->sioreg
, 0xe3);
3873 data
->vrm
= vid_which_vrm();
3879 superio_select(sio_data
->sioreg
, NCT6775_LD_HWM
);
3880 tmp
= superio_inb(sio_data
->sioreg
,
3881 NCT6775_REG_CR_FAN_DEBOUNCE
);
3882 switch (data
->kind
) {
3897 superio_outb(sio_data
->sioreg
, NCT6775_REG_CR_FAN_DEBOUNCE
,
3899 dev_info(&pdev
->dev
, "Enabled fan debounce for chip %s\n",
3903 nct6775_check_fan_inputs(data
);
3905 superio_exit(sio_data
->sioreg
);
3907 /* Read fan clock dividers immediately */
3908 nct6775_init_fan_common(dev
, data
);
3910 /* Register sysfs hooks */
3911 group
= nct6775_create_attr_group(dev
, &nct6775_pwm_template_group
,
3914 return PTR_ERR(group
);
3916 data
->groups
[data
->num_attr_groups
++] = group
;
3918 group
= nct6775_create_attr_group(dev
, &nct6775_in_template_group
,
3919 fls(data
->have_in
));
3921 return PTR_ERR(group
);
3923 data
->groups
[data
->num_attr_groups
++] = group
;
3925 group
= nct6775_create_attr_group(dev
, &nct6775_fan_template_group
,
3926 fls(data
->has_fan
));
3928 return PTR_ERR(group
);
3930 data
->groups
[data
->num_attr_groups
++] = group
;
3932 group
= nct6775_create_attr_group(dev
, &nct6775_temp_template_group
,
3933 fls(data
->have_temp
));
3935 return PTR_ERR(group
);
3937 data
->groups
[data
->num_attr_groups
++] = group
;
3938 data
->groups
[data
->num_attr_groups
++] = &nct6775_group_other
;
3940 hwmon_dev
= devm_hwmon_device_register_with_groups(dev
, data
->name
,
3941 data
, data
->groups
);
3942 return PTR_ERR_OR_ZERO(hwmon_dev
);
3945 static void nct6791_enable_io_mapping(int sioaddr
)
3949 val
= superio_inb(sioaddr
, NCT6791_REG_HM_IO_SPACE_LOCK_ENABLE
);
3951 pr_info("Enabling hardware monitor logical device mappings.\n");
3952 superio_outb(sioaddr
, NCT6791_REG_HM_IO_SPACE_LOCK_ENABLE
,
3958 static int nct6775_suspend(struct device
*dev
)
3960 struct nct6775_data
*data
= nct6775_update_device(dev
);
3962 mutex_lock(&data
->update_lock
);
3963 data
->vbat
= nct6775_read_value(data
, data
->REG_VBAT
);
3964 if (data
->kind
== nct6775
) {
3965 data
->fandiv1
= nct6775_read_value(data
, NCT6775_REG_FANDIV1
);
3966 data
->fandiv2
= nct6775_read_value(data
, NCT6775_REG_FANDIV2
);
3968 mutex_unlock(&data
->update_lock
);
3973 static int nct6775_resume(struct device
*dev
)
3975 struct nct6775_data
*data
= dev_get_drvdata(dev
);
3978 mutex_lock(&data
->update_lock
);
3979 data
->bank
= 0xff; /* Force initial bank selection */
3981 if (data
->kind
== nct6791
) {
3982 err
= superio_enter(data
->sioreg
);
3986 nct6791_enable_io_mapping(data
->sioreg
);
3987 superio_exit(data
->sioreg
);
3990 /* Restore limits */
3991 for (i
= 0; i
< data
->in_num
; i
++) {
3992 if (!(data
->have_in
& (1 << i
)))
3995 nct6775_write_value(data
, data
->REG_IN_MINMAX
[0][i
],
3997 nct6775_write_value(data
, data
->REG_IN_MINMAX
[1][i
],
4001 for (i
= 0; i
< ARRAY_SIZE(data
->fan_min
); i
++) {
4002 if (!(data
->has_fan_min
& (1 << i
)))
4005 nct6775_write_value(data
, data
->REG_FAN_MIN
[i
],
4009 for (i
= 0; i
< NUM_TEMP
; i
++) {
4010 if (!(data
->have_temp
& (1 << i
)))
4013 for (j
= 1; j
< ARRAY_SIZE(data
->reg_temp
); j
++)
4014 if (data
->reg_temp
[j
][i
])
4015 nct6775_write_temp(data
, data
->reg_temp
[j
][i
],
4019 /* Restore other settings */
4020 nct6775_write_value(data
, data
->REG_VBAT
, data
->vbat
);
4021 if (data
->kind
== nct6775
) {
4022 nct6775_write_value(data
, NCT6775_REG_FANDIV1
, data
->fandiv1
);
4023 nct6775_write_value(data
, NCT6775_REG_FANDIV2
, data
->fandiv2
);
4027 /* Force re-reading all values */
4028 data
->valid
= false;
4029 mutex_unlock(&data
->update_lock
);
4034 static const struct dev_pm_ops nct6775_dev_pm_ops
= {
4035 .suspend
= nct6775_suspend
,
4036 .resume
= nct6775_resume
,
4037 .freeze
= nct6775_suspend
,
4038 .restore
= nct6775_resume
,
4041 #define NCT6775_DEV_PM_OPS (&nct6775_dev_pm_ops)
4043 #define NCT6775_DEV_PM_OPS NULL
4044 #endif /* CONFIG_PM */
4046 static struct platform_driver nct6775_driver
= {
4048 .owner
= THIS_MODULE
,
4050 .pm
= NCT6775_DEV_PM_OPS
,
4052 .probe
= nct6775_probe
,
4055 static const char * const nct6775_sio_names
[] __initconst
= {
4063 /* nct6775_find() looks for a '627 in the Super-I/O config space */
4064 static int __init
nct6775_find(int sioaddr
, struct nct6775_sio_data
*sio_data
)
4070 err
= superio_enter(sioaddr
);
4077 val
= (superio_inb(sioaddr
, SIO_REG_DEVID
) << 8)
4078 | superio_inb(sioaddr
, SIO_REG_DEVID
+ 1);
4079 switch (val
& SIO_ID_MASK
) {
4080 case SIO_NCT6106_ID
:
4081 sio_data
->kind
= nct6106
;
4083 case SIO_NCT6775_ID
:
4084 sio_data
->kind
= nct6775
;
4086 case SIO_NCT6776_ID
:
4087 sio_data
->kind
= nct6776
;
4089 case SIO_NCT6779_ID
:
4090 sio_data
->kind
= nct6779
;
4092 case SIO_NCT6791_ID
:
4093 sio_data
->kind
= nct6791
;
4097 pr_debug("unsupported chip ID: 0x%04x\n", val
);
4098 superio_exit(sioaddr
);
4102 /* We have a known chip, find the HWM I/O address */
4103 superio_select(sioaddr
, NCT6775_LD_HWM
);
4104 val
= (superio_inb(sioaddr
, SIO_REG_ADDR
) << 8)
4105 | superio_inb(sioaddr
, SIO_REG_ADDR
+ 1);
4106 addr
= val
& IOREGION_ALIGNMENT
;
4108 pr_err("Refusing to enable a Super-I/O device with a base I/O port 0\n");
4109 superio_exit(sioaddr
);
4113 /* Activate logical device if needed */
4114 val
= superio_inb(sioaddr
, SIO_REG_ENABLE
);
4115 if (!(val
& 0x01)) {
4116 pr_warn("Forcibly enabling Super-I/O. Sensor is probably unusable.\n");
4117 superio_outb(sioaddr
, SIO_REG_ENABLE
, val
| 0x01);
4120 if (sio_data
->kind
== nct6791
)
4121 nct6791_enable_io_mapping(sioaddr
);
4123 superio_exit(sioaddr
);
4124 pr_info("Found %s or compatible chip at %#x:%#x\n",
4125 nct6775_sio_names
[sio_data
->kind
], sioaddr
, addr
);
4126 sio_data
->sioreg
= sioaddr
;
4132 * when Super-I/O functions move to a separate file, the Super-I/O
4133 * bus will manage the lifetime of the device and this module will only keep
4134 * track of the nct6775 driver. But since we use platform_device_alloc(), we
4135 * must keep track of the device
4137 static struct platform_device
*pdev
[2];
4139 static int __init
sensors_nct6775_init(void)
4144 struct resource res
;
4145 struct nct6775_sio_data sio_data
;
4146 int sioaddr
[2] = { 0x2e, 0x4e };
4148 err
= platform_driver_register(&nct6775_driver
);
4153 * initialize sio_data->kind and sio_data->sioreg.
4155 * when Super-I/O functions move to a separate file, the Super-I/O
4156 * driver will probe 0x2e and 0x4e and auto-detect the presence of a
4157 * nct6775 hardware monitor, and call probe()
4159 for (i
= 0; i
< ARRAY_SIZE(pdev
); i
++) {
4160 address
= nct6775_find(sioaddr
[i
], &sio_data
);
4166 pdev
[i
] = platform_device_alloc(DRVNAME
, address
);
4169 goto exit_device_unregister
;
4172 err
= platform_device_add_data(pdev
[i
], &sio_data
,
4173 sizeof(struct nct6775_sio_data
));
4175 goto exit_device_put
;
4177 memset(&res
, 0, sizeof(res
));
4179 res
.start
= address
+ IOREGION_OFFSET
;
4180 res
.end
= address
+ IOREGION_OFFSET
+ IOREGION_LENGTH
- 1;
4181 res
.flags
= IORESOURCE_IO
;
4183 err
= acpi_check_resource_conflict(&res
);
4185 platform_device_put(pdev
[i
]);
4190 err
= platform_device_add_resources(pdev
[i
], &res
, 1);
4192 goto exit_device_put
;
4194 /* platform_device_add calls probe() */
4195 err
= platform_device_add(pdev
[i
]);
4197 goto exit_device_put
;
4201 goto exit_unregister
;
4207 platform_device_put(pdev
[i
]);
4208 exit_device_unregister
:
4211 platform_device_unregister(pdev
[i
]);
4214 platform_driver_unregister(&nct6775_driver
);
4218 static void __exit
sensors_nct6775_exit(void)
4222 for (i
= 0; i
< ARRAY_SIZE(pdev
); i
++) {
4224 platform_device_unregister(pdev
[i
]);
4226 platform_driver_unregister(&nct6775_driver
);
4229 MODULE_AUTHOR("Guenter Roeck <linux@roeck-us.net>");
4230 MODULE_DESCRIPTION("NCT6775F/NCT6776F/NCT6779D driver");
4231 MODULE_LICENSE("GPL");
4233 module_init(sensors_nct6775_init
);
4234 module_exit(sensors_nct6775_exit
);