blob: 409116c52cc57f650c8939fc6c7b7c50d3a1daea [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jean Delvare5f2dc792010-03-05 22:17:18 +01002 * it87.c - Part of lm_sensors, Linux kernel modules for hardware
3 * monitoring.
4 *
5 * The IT8705F is an LPC-based Super I/O part that contains UARTs, a
6 * parallel port, an IR port, a MIDI port, a floppy controller, etc., in
7 * addition to an Environment Controller (Enhanced Hardware Monitor and
8 * Fan Controller)
9 *
10 * This driver supports only the Environment Controller in the IT8705F and
11 * similar parts. The other devices are supported by different drivers.
12 *
Rudolf Marekc145d5c2014-01-29 20:40:08 +010013 * Supports: IT8603E Super I/O chip w/LPC interface
Rudolf Marek574e9bd2014-04-04 18:01:35 +020014 * IT8623E Super I/O chip w/LPC interface
Rudolf Marekc145d5c2014-01-29 20:40:08 +010015 * IT8705F Super I/O chip w/LPC interface
Jean Delvare5f2dc792010-03-05 22:17:18 +010016 * IT8712F Super I/O chip w/LPC interface
17 * IT8716F Super I/O chip w/LPC interface
18 * IT8718F Super I/O chip w/LPC interface
19 * IT8720F Super I/O chip w/LPC interface
Jean Delvare44c1bcd2010-10-28 20:31:51 +020020 * IT8721F Super I/O chip w/LPC interface
Jean Delvare5f2dc792010-03-05 22:17:18 +010021 * IT8726F Super I/O chip w/LPC interface
Jean Delvare16b5dda2012-01-16 22:51:48 +010022 * IT8728F Super I/O chip w/LPC interface
Jean Delvare44c1bcd2010-10-28 20:31:51 +020023 * IT8758E Super I/O chip w/LPC interface
Guenter Roeckb0636702012-09-07 17:34:41 -060024 * IT8771E Super I/O chip w/LPC interface
25 * IT8772E Super I/O chip w/LPC interface
Guenter Roeck0531d982012-03-02 11:46:44 -080026 * IT8782F Super I/O chip w/LPC interface
27 * IT8783E/F Super I/O chip w/LPC interface
Jean Delvare5f2dc792010-03-05 22:17:18 +010028 * Sis950 A clone of the IT8705F
29 *
30 * Copyright (C) 2001 Chris Gauthron
Jean Delvare7c81c602014-01-29 20:40:08 +010031 * Copyright (C) 2005-2010 Jean Delvare <jdelvare@suse.de>
Jean Delvare5f2dc792010-03-05 22:17:18 +010032 *
33 * This program is free software; you can redistribute it and/or modify
34 * it under the terms of the GNU General Public License as published by
35 * the Free Software Foundation; either version 2 of the License, or
36 * (at your option) any later version.
37 *
38 * This program is distributed in the hope that it will be useful,
39 * but WITHOUT ANY WARRANTY; without even the implied warranty of
40 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
41 * GNU General Public License for more details.
42 *
43 * You should have received a copy of the GNU General Public License
44 * along with this program; if not, write to the Free Software
45 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
46 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Joe Perchesa8ca1032011-01-12 21:55:10 +010048#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/module.h>
51#include <linux/init.h>
52#include <linux/slab.h>
53#include <linux/jiffies.h>
corentin.labbeb74f3fd2007-06-13 20:27:36 +020054#include <linux/platform_device.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040055#include <linux/hwmon.h>
Jean Delvare303760b2005-07-31 21:52:01 +020056#include <linux/hwmon-sysfs.h>
57#include <linux/hwmon-vid.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040058#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010059#include <linux/mutex.h>
Jean Delvare87808be2006-09-24 21:17:13 +020060#include <linux/sysfs.h>
Jean Delvare98dd22c2008-10-09 15:33:58 +020061#include <linux/string.h>
62#include <linux/dmi.h>
Jean Delvareb9acb642009-01-07 16:37:35 +010063#include <linux/acpi.h>
H Hartley Sweeten6055fae2009-09-15 17:18:13 +020064#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
corentin.labbeb74f3fd2007-06-13 20:27:36 +020066#define DRVNAME "it87"
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Guenter Roeckb0636702012-09-07 17:34:41 -060068enum chips { it87, it8712, it8716, it8718, it8720, it8721, it8728, it8771,
Rudolf Marekc145d5c2014-01-29 20:40:08 +010069 it8772, it8782, it8783, it8603 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Jean Delvare67b671b2007-12-06 23:13:42 +010071static unsigned short force_id;
72module_param(force_id, ushort, 0);
73MODULE_PARM_DESC(force_id, "Override the detected device ID");
74
corentin.labbeb74f3fd2007-06-13 20:27:36 +020075static struct platform_device *pdev;
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#define REG 0x2e /* The register to read/write */
78#define DEV 0x07 /* Register: Logical device select */
79#define VAL 0x2f /* The value to read/write */
80#define PME 0x04 /* The device with the fan registers in it */
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +010081
82/* The device with the IT8718F/IT8720F VID value in it */
83#define GPIO 0x07
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#define DEVID 0x20 /* Register: Device ID */
86#define DEVREV 0x22 /* Register: Device Revision */
87
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +020088static inline int superio_inb(int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
90 outb(reg, REG);
91 return inb(VAL);
92}
93
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +020094static inline void superio_outb(int reg, int val)
Jean Delvare436cad22010-07-09 16:22:48 +020095{
96 outb(reg, REG);
97 outb(val, VAL);
98}
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100static int superio_inw(int reg)
101{
102 int val;
103 outb(reg++, REG);
104 val = inb(VAL) << 8;
105 outb(reg, REG);
106 val |= inb(VAL);
107 return val;
108}
109
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200110static inline void superio_select(int ldn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
112 outb(DEV, REG);
Jean Delvare87673dd2006-08-28 14:37:19 +0200113 outb(ldn, VAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200116static inline int superio_enter(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200118 /*
119 * Try to reserve REG and REG + 1 for exclusive access.
120 */
121 if (!request_muxed_region(REG, 2, DRVNAME))
122 return -EBUSY;
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 outb(0x87, REG);
125 outb(0x01, REG);
126 outb(0x55, REG);
127 outb(0x55, REG);
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200128 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129}
130
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200131static inline void superio_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
133 outb(0x02, REG);
134 outb(0x02, VAL);
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200135 release_region(REG, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
Jean Delvare87673dd2006-08-28 14:37:19 +0200138/* Logical device 4 registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139#define IT8712F_DEVID 0x8712
140#define IT8705F_DEVID 0x8705
Jean Delvare17d648b2006-08-28 14:23:46 +0200141#define IT8716F_DEVID 0x8716
Jean Delvare87673dd2006-08-28 14:37:19 +0200142#define IT8718F_DEVID 0x8718
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +0100143#define IT8720F_DEVID 0x8720
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200144#define IT8721F_DEVID 0x8721
Rudolf Marek08a8f6e2007-06-09 10:11:16 -0400145#define IT8726F_DEVID 0x8726
Jean Delvare16b5dda2012-01-16 22:51:48 +0100146#define IT8728F_DEVID 0x8728
Guenter Roeckb0636702012-09-07 17:34:41 -0600147#define IT8771E_DEVID 0x8771
148#define IT8772E_DEVID 0x8772
Guenter Roeck0531d982012-03-02 11:46:44 -0800149#define IT8782F_DEVID 0x8782
150#define IT8783E_DEVID 0x8783
Rudolf Marek7183ae82014-04-04 18:01:35 +0200151#define IT8603E_DEVID 0x8603
Rudolf Marek574e9bd2014-04-04 18:01:35 +0200152#define IT8623E_DEVID 0x8623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153#define IT87_ACT_REG 0x30
154#define IT87_BASE_REG 0x60
155
Jean Delvare87673dd2006-08-28 14:37:19 +0200156/* Logical device 7 registers (IT8712F and later) */
Guenter Roeck0531d982012-03-02 11:46:44 -0800157#define IT87_SIO_GPIO1_REG 0x25
Jean Delvare895ff262009-12-09 20:35:47 +0100158#define IT87_SIO_GPIO3_REG 0x27
Jean Delvare591ec652009-12-09 20:35:48 +0100159#define IT87_SIO_GPIO5_REG 0x29
Guenter Roeck0531d982012-03-02 11:46:44 -0800160#define IT87_SIO_PINX1_REG 0x2a /* Pin selection */
Jean Delvare87673dd2006-08-28 14:37:19 +0200161#define IT87_SIO_PINX2_REG 0x2c /* Pin selection */
Guenter Roeck0531d982012-03-02 11:46:44 -0800162#define IT87_SIO_SPI_REG 0xef /* SPI function pin select */
Jean Delvare87673dd2006-08-28 14:37:19 +0200163#define IT87_SIO_VID_REG 0xfc /* VID value */
Jean Delvared9b327c2010-03-05 22:17:17 +0100164#define IT87_SIO_BEEP_PIN_REG 0xf6 /* Beep pin mapping */
Jean Delvare87673dd2006-08-28 14:37:19 +0200165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166/* Update battery voltage after every reading if true */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030167static bool update_vbat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169/* Not all BIOSes properly configure the PWM registers */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030170static bool fix_pwm_polarity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172/* Many IT87 constants specified below */
173
174/* Length of ISA address segment */
175#define IT87_EXTENT 8
176
Bjorn Helgaas87b4b662008-01-22 07:21:03 -0500177/* Length of ISA address segment for Environmental Controller */
178#define IT87_EC_EXTENT 2
179
180/* Offset of EC registers from ISA base address */
181#define IT87_EC_OFFSET 5
182
183/* Where are the ISA address/data registers relative to the EC base address */
184#define IT87_ADDR_REG_OFFSET 0
185#define IT87_DATA_REG_OFFSET 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187/*----- The IT87 registers -----*/
188
189#define IT87_REG_CONFIG 0x00
190
191#define IT87_REG_ALARM1 0x01
192#define IT87_REG_ALARM2 0x02
193#define IT87_REG_ALARM3 0x03
194
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800195/*
196 * The IT8718F and IT8720F have the VID value in a different register, in
197 * Super-I/O configuration space.
198 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199#define IT87_REG_VID 0x0a
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800200/*
201 * The IT8705F and IT8712F earlier than revision 0x08 use register 0x0b
202 * for fan divisors. Later IT8712F revisions must use 16-bit tachometer
203 * mode.
204 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205#define IT87_REG_FAN_DIV 0x0b
Jean Delvare17d648b2006-08-28 14:23:46 +0200206#define IT87_REG_FAN_16BIT 0x0c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208/* Monitors: 9 voltage (0 to 7, battery), 3 temp (1 to 3), 3 fan (1 to 3) */
209
Jean Delvarec7f1f712007-09-03 17:11:46 +0200210static const u8 IT87_REG_FAN[] = { 0x0d, 0x0e, 0x0f, 0x80, 0x82 };
211static const u8 IT87_REG_FAN_MIN[] = { 0x10, 0x11, 0x12, 0x84, 0x86 };
212static const u8 IT87_REG_FANX[] = { 0x18, 0x19, 0x1a, 0x81, 0x83 };
213static const u8 IT87_REG_FANX_MIN[] = { 0x1b, 0x1c, 0x1d, 0x85, 0x87 };
Guenter Roeck161d8982012-12-19 22:17:01 +0100214static const u8 IT87_REG_TEMP_OFFSET[] = { 0x56, 0x57, 0x59 };
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216#define IT87_REG_FAN_MAIN_CTRL 0x13
217#define IT87_REG_FAN_CTL 0x14
218#define IT87_REG_PWM(nr) (0x15 + (nr))
Jean Delvare6229cdb2010-12-08 16:27:22 +0100219#define IT87_REG_PWM_DUTY(nr) (0x63 + (nr) * 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221#define IT87_REG_VIN(nr) (0x20 + (nr))
222#define IT87_REG_TEMP(nr) (0x29 + (nr))
223
224#define IT87_REG_VIN_MAX(nr) (0x30 + (nr) * 2)
225#define IT87_REG_VIN_MIN(nr) (0x31 + (nr) * 2)
226#define IT87_REG_TEMP_HIGH(nr) (0x40 + (nr) * 2)
227#define IT87_REG_TEMP_LOW(nr) (0x41 + (nr) * 2)
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229#define IT87_REG_VIN_ENABLE 0x50
230#define IT87_REG_TEMP_ENABLE 0x51
Guenter Roeck4573acb2012-03-26 16:17:41 -0700231#define IT87_REG_TEMP_EXTRA 0x55
Jean Delvared9b327c2010-03-05 22:17:17 +0100232#define IT87_REG_BEEP_ENABLE 0x5c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234#define IT87_REG_CHIPID 0x58
235
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100236#define IT87_REG_AUTO_TEMP(nr, i) (0x60 + (nr) * 8 + (i))
237#define IT87_REG_AUTO_PWM(nr, i) (0x65 + (nr) * 8 + (i))
238
Guenter Roeck483db432012-12-19 22:17:02 +0100239struct it87_devices {
240 const char *name;
241 u16 features;
Guenter Roeck19529782012-12-19 22:17:02 +0100242 u8 peci_mask;
243 u8 old_peci_mask;
Guenter Roeck483db432012-12-19 22:17:02 +0100244};
245
246#define FEAT_12MV_ADC (1 << 0)
247#define FEAT_NEWER_AUTOPWM (1 << 1)
248#define FEAT_OLD_AUTOPWM (1 << 2)
249#define FEAT_16BIT_FANS (1 << 3)
250#define FEAT_TEMP_OFFSET (1 << 4)
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100251#define FEAT_TEMP_PECI (1 << 5)
Guenter Roeck19529782012-12-19 22:17:02 +0100252#define FEAT_TEMP_OLD_PECI (1 << 6)
Guenter Roeck483db432012-12-19 22:17:02 +0100253
254static const struct it87_devices it87_devices[] = {
255 [it87] = {
256 .name = "it87",
257 .features = FEAT_OLD_AUTOPWM, /* may need to overwrite */
258 },
259 [it8712] = {
260 .name = "it8712",
261 .features = FEAT_OLD_AUTOPWM, /* may need to overwrite */
262 },
263 [it8716] = {
264 .name = "it8716",
265 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET,
266 },
267 [it8718] = {
268 .name = "it8718",
Guenter Roeck19529782012-12-19 22:17:02 +0100269 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET
270 | FEAT_TEMP_OLD_PECI,
271 .old_peci_mask = 0x4,
Guenter Roeck483db432012-12-19 22:17:02 +0100272 },
273 [it8720] = {
274 .name = "it8720",
Guenter Roeck19529782012-12-19 22:17:02 +0100275 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET
276 | FEAT_TEMP_OLD_PECI,
277 .old_peci_mask = 0x4,
Guenter Roeck483db432012-12-19 22:17:02 +0100278 },
279 [it8721] = {
280 .name = "it8721",
281 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck19529782012-12-19 22:17:02 +0100282 | FEAT_TEMP_OFFSET | FEAT_TEMP_OLD_PECI | FEAT_TEMP_PECI,
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100283 .peci_mask = 0x05,
Guenter Roeck19529782012-12-19 22:17:02 +0100284 .old_peci_mask = 0x02, /* Actually reports PCH */
Guenter Roeck483db432012-12-19 22:17:02 +0100285 },
286 [it8728] = {
287 .name = "it8728",
288 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100289 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI,
290 .peci_mask = 0x07,
Guenter Roeck483db432012-12-19 22:17:02 +0100291 },
Guenter Roeckb0636702012-09-07 17:34:41 -0600292 [it8771] = {
293 .name = "it8771",
294 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
295 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI,
296 /* PECI: guesswork */
297 /* 12mV ADC (OHM) */
298 /* 16 bit fans (OHM) */
299 .peci_mask = 0x07,
300 },
301 [it8772] = {
302 .name = "it8772",
303 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
304 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI,
305 /* PECI (coreboot) */
306 /* 12mV ADC (HWSensors4, OHM) */
307 /* 16 bit fans (HWSensors4, OHM) */
308 .peci_mask = 0x07,
309 },
Guenter Roeck483db432012-12-19 22:17:02 +0100310 [it8782] = {
311 .name = "it8782",
Guenter Roeck19529782012-12-19 22:17:02 +0100312 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET
313 | FEAT_TEMP_OLD_PECI,
314 .old_peci_mask = 0x4,
Guenter Roeck483db432012-12-19 22:17:02 +0100315 },
316 [it8783] = {
317 .name = "it8783",
Guenter Roeck19529782012-12-19 22:17:02 +0100318 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET
319 | FEAT_TEMP_OLD_PECI,
320 .old_peci_mask = 0x4,
Guenter Roeck483db432012-12-19 22:17:02 +0100321 },
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100322 [it8603] = {
323 .name = "it8603",
324 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
325 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI,
326 .peci_mask = 0x07,
327 },
Guenter Roeck483db432012-12-19 22:17:02 +0100328};
329
330#define has_16bit_fans(data) ((data)->features & FEAT_16BIT_FANS)
331#define has_12mv_adc(data) ((data)->features & FEAT_12MV_ADC)
332#define has_newer_autopwm(data) ((data)->features & FEAT_NEWER_AUTOPWM)
333#define has_old_autopwm(data) ((data)->features & FEAT_OLD_AUTOPWM)
334#define has_temp_offset(data) ((data)->features & FEAT_TEMP_OFFSET)
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100335#define has_temp_peci(data, nr) (((data)->features & FEAT_TEMP_PECI) && \
336 ((data)->peci_mask & (1 << nr)))
Guenter Roeck19529782012-12-19 22:17:02 +0100337#define has_temp_old_peci(data, nr) \
338 (((data)->features & FEAT_TEMP_OLD_PECI) && \
339 ((data)->old_peci_mask & (1 << nr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200341struct it87_sio_data {
342 enum chips type;
343 /* Values read from Super-I/O config space */
Andrew Paprocki04751692008-08-06 22:41:06 +0200344 u8 revision;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200345 u8 vid_value;
Jean Delvared9b327c2010-03-05 22:17:17 +0100346 u8 beep_pin;
Jean Delvare738e5e02010-08-14 21:08:50 +0200347 u8 internal; /* Internal sensors can be labeled */
Jean Delvare591ec652009-12-09 20:35:48 +0100348 /* Features skipped based on config or DMI */
Guenter Roeck9172b5d2012-03-24 21:49:54 -0700349 u16 skip_in;
Jean Delvare895ff262009-12-09 20:35:47 +0100350 u8 skip_vid;
Jean Delvare591ec652009-12-09 20:35:48 +0100351 u8 skip_fan;
Jean Delvare98dd22c2008-10-09 15:33:58 +0200352 u8 skip_pwm;
Guenter Roeck4573acb2012-03-26 16:17:41 -0700353 u8 skip_temp;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200354};
355
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800356/*
357 * For each registered chip, we need to keep some data in memory.
358 * The structure is dynamically allocated.
359 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360struct it87_data {
Tony Jones1beeffe2007-08-20 13:46:20 -0700361 struct device *hwmon_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 enum chips type;
Guenter Roeck483db432012-12-19 22:17:02 +0100363 u16 features;
Guenter Roeck19529782012-12-19 22:17:02 +0100364 u8 peci_mask;
365 u8 old_peci_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200367 unsigned short addr;
368 const char *name;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100369 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 char valid; /* !=0 if following fields are valid */
371 unsigned long last_updated; /* In jiffies */
372
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200373 u16 in_scaled; /* Internal voltage sensors are scaled */
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100374 u8 in[10][3]; /* [nr][0]=in, [1]=min, [2]=max */
Jean Delvare9060f8b2006-08-28 14:24:17 +0200375 u8 has_fan; /* Bitfield, fans enabled */
Guenter Roecke1169ba2012-12-19 22:17:01 +0100376 u16 fan[5][2]; /* Register values, [nr][0]=fan, [1]=min */
Guenter Roeck4573acb2012-03-26 16:17:41 -0700377 u8 has_temp; /* Bitfield, temp sensors enabled */
Guenter Roeck161d8982012-12-19 22:17:01 +0100378 s8 temp[3][4]; /* [nr][0]=temp, [1]=min, [2]=max, [3]=offset */
Guenter Roeck19529782012-12-19 22:17:02 +0100379 u8 sensor; /* Register value (IT87_REG_TEMP_ENABLE) */
380 u8 extra; /* Register value (IT87_REG_TEMP_EXTRA) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 u8 fan_div[3]; /* Register encoding, shifted right */
382 u8 vid; /* Register encoding, combined */
Jean Delvarea7be58a2005-12-18 16:40:14 +0100383 u8 vrm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 u32 alarms; /* Register encoding, combined */
Jean Delvared9b327c2010-03-05 22:17:17 +0100385 u8 beeps; /* Register encoding */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 u8 fan_main_ctrl; /* Register value */
Jean Delvaref8d0c192007-02-14 21:15:02 +0100387 u8 fan_ctl; /* Register value */
Jean Delvareb99883d2010-03-05 22:17:15 +0100388
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800389 /*
390 * The following 3 arrays correspond to the same registers up to
Jean Delvare6229cdb2010-12-08 16:27:22 +0100391 * the IT8720F. The meaning of bits 6-0 depends on the value of bit
392 * 7, and we want to preserve settings on mode changes, so we have
393 * to track all values separately.
394 * Starting with the IT8721F, the manual PWM duty cycles are stored
395 * in separate registers (8-bit values), so the separate tracking
396 * is no longer needed, but it is still done to keep the driver
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800397 * simple.
398 */
Jean Delvareb99883d2010-03-05 22:17:15 +0100399 u8 pwm_ctrl[3]; /* Register value */
Jean Delvare6229cdb2010-12-08 16:27:22 +0100400 u8 pwm_duty[3]; /* Manual PWM value set by user */
Jean Delvareb99883d2010-03-05 22:17:15 +0100401 u8 pwm_temp_map[3]; /* PWM to temp. chan. mapping (bits 1-0) */
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100402
403 /* Automatic fan speed control registers */
404 u8 auto_pwm[3][4]; /* [nr][3] is hard-coded */
405 s8 auto_temp[3][5]; /* [nr][0] is point1_temp_hyst */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406};
407
Guenter Roeck0531d982012-03-02 11:46:44 -0800408static int adc_lsb(const struct it87_data *data, int nr)
409{
410 int lsb = has_12mv_adc(data) ? 12 : 16;
411 if (data->in_scaled & (1 << nr))
412 lsb <<= 1;
413 return lsb;
414}
415
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200416static u8 in_to_reg(const struct it87_data *data, int nr, long val)
417{
Guenter Roeck0531d982012-03-02 11:46:44 -0800418 val = DIV_ROUND_CLOSEST(val, adc_lsb(data, nr));
Guenter Roeck2a844c12013-01-09 08:09:34 -0800419 return clamp_val(val, 0, 255);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200420}
421
422static int in_from_reg(const struct it87_data *data, int nr, int val)
423{
Guenter Roeck0531d982012-03-02 11:46:44 -0800424 return val * adc_lsb(data, nr);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200425}
Jean Delvare0df6454d2010-10-28 20:31:51 +0200426
427static inline u8 FAN_TO_REG(long rpm, int div)
428{
429 if (rpm == 0)
430 return 255;
Guenter Roeck2a844c12013-01-09 08:09:34 -0800431 rpm = clamp_val(rpm, 1, 1000000);
432 return clamp_val((1350000 + rpm * div / 2) / (rpm * div), 1, 254);
Jean Delvare0df6454d2010-10-28 20:31:51 +0200433}
434
435static inline u16 FAN16_TO_REG(long rpm)
436{
437 if (rpm == 0)
438 return 0xffff;
Guenter Roeck2a844c12013-01-09 08:09:34 -0800439 return clamp_val((1350000 + rpm) / (rpm * 2), 1, 0xfffe);
Jean Delvare0df6454d2010-10-28 20:31:51 +0200440}
441
442#define FAN_FROM_REG(val, div) ((val) == 0 ? -1 : (val) == 255 ? 0 : \
443 1350000 / ((val) * (div)))
444/* The divider is fixed to 2 in 16-bit mode */
445#define FAN16_FROM_REG(val) ((val) == 0 ? -1 : (val) == 0xffff ? 0 : \
446 1350000 / ((val) * 2))
447
Guenter Roeck2a844c12013-01-09 08:09:34 -0800448#define TEMP_TO_REG(val) (clamp_val(((val) < 0 ? (((val) - 500) / 1000) : \
449 ((val) + 500) / 1000), -128, 127))
Jean Delvare0df6454d2010-10-28 20:31:51 +0200450#define TEMP_FROM_REG(val) ((val) * 1000)
451
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200452static u8 pwm_to_reg(const struct it87_data *data, long val)
453{
Jean Delvare16b5dda2012-01-16 22:51:48 +0100454 if (has_newer_autopwm(data))
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200455 return val;
456 else
457 return val >> 1;
458}
459
460static int pwm_from_reg(const struct it87_data *data, u8 reg)
461{
Jean Delvare16b5dda2012-01-16 22:51:48 +0100462 if (has_newer_autopwm(data))
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200463 return reg;
464 else
465 return (reg & 0x7f) << 1;
466}
467
Jean Delvare0df6454d2010-10-28 20:31:51 +0200468
469static int DIV_TO_REG(int val)
470{
471 int answer = 0;
472 while (answer < 7 && (val >>= 1))
473 answer++;
474 return answer;
475}
476#define DIV_FROM_REG(val) (1 << (val))
477
478static const unsigned int pwm_freq[8] = {
479 48000000 / 128,
480 24000000 / 128,
481 12000000 / 128,
482 8000000 / 128,
483 6000000 / 128,
484 3000000 / 128,
485 1500000 / 128,
486 750000 / 128,
487};
488
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200489static int it87_probe(struct platform_device *pdev);
Bill Pemberton281dfd02012-11-19 13:25:51 -0500490static int it87_remove(struct platform_device *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200492static int it87_read_value(struct it87_data *data, u8 reg);
493static void it87_write_value(struct it87_data *data, u8 reg, u8 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494static struct it87_data *it87_update_device(struct device *dev);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200495static int it87_check_pwm(struct device *dev);
496static void it87_init_device(struct platform_device *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200499static struct platform_driver it87_driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100500 .driver = {
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200501 .name = DRVNAME,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100502 },
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200503 .probe = it87_probe,
Bill Pemberton9e5e9b72012-11-19 13:21:20 -0500504 .remove = it87_remove,
Jean Delvarefde09502005-07-19 23:51:07 +0200505};
506
Jean Delvare20ad93d2005-06-05 11:53:25 +0200507static ssize_t show_in(struct device *dev, struct device_attribute *attr,
Guenter Roeck929c6a52012-12-19 22:17:00 +0100508 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
Guenter Roeck929c6a52012-12-19 22:17:00 +0100510 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
511 int nr = sattr->nr;
512 int index = sattr->index;
Jean Delvare20ad93d2005-06-05 11:53:25 +0200513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 struct it87_data *data = it87_update_device(dev);
Guenter Roeck929c6a52012-12-19 22:17:00 +0100515 return sprintf(buf, "%d\n", in_from_reg(data, nr, data->in[nr][index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516}
517
Guenter Roeck929c6a52012-12-19 22:17:00 +0100518static ssize_t set_in(struct device *dev, struct device_attribute *attr,
519 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
Guenter Roeck929c6a52012-12-19 22:17:00 +0100521 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
522 int nr = sattr->nr;
523 int index = sattr->index;
Jean Delvare20ad93d2005-06-05 11:53:25 +0200524
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200525 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100526 unsigned long val;
527
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100528 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100529 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100531 mutex_lock(&data->update_lock);
Guenter Roeck929c6a52012-12-19 22:17:00 +0100532 data->in[nr][index] = in_to_reg(data, nr, val);
533 it87_write_value(data,
534 index == 1 ? IT87_REG_VIN_MIN(nr)
535 : IT87_REG_VIN_MAX(nr),
536 data->in[nr][index]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100537 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 return count;
539}
540
Guenter Roeck929c6a52012-12-19 22:17:00 +0100541static SENSOR_DEVICE_ATTR_2(in0_input, S_IRUGO, show_in, NULL, 0, 0);
542static SENSOR_DEVICE_ATTR_2(in0_min, S_IRUGO | S_IWUSR, show_in, set_in,
543 0, 1);
544static SENSOR_DEVICE_ATTR_2(in0_max, S_IRUGO | S_IWUSR, show_in, set_in,
545 0, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Guenter Roeck929c6a52012-12-19 22:17:00 +0100547static SENSOR_DEVICE_ATTR_2(in1_input, S_IRUGO, show_in, NULL, 1, 0);
548static SENSOR_DEVICE_ATTR_2(in1_min, S_IRUGO | S_IWUSR, show_in, set_in,
549 1, 1);
550static SENSOR_DEVICE_ATTR_2(in1_max, S_IRUGO | S_IWUSR, show_in, set_in,
551 1, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Guenter Roeck929c6a52012-12-19 22:17:00 +0100553static SENSOR_DEVICE_ATTR_2(in2_input, S_IRUGO, show_in, NULL, 2, 0);
554static SENSOR_DEVICE_ATTR_2(in2_min, S_IRUGO | S_IWUSR, show_in, set_in,
555 2, 1);
556static SENSOR_DEVICE_ATTR_2(in2_max, S_IRUGO | S_IWUSR, show_in, set_in,
557 2, 2);
558
559static SENSOR_DEVICE_ATTR_2(in3_input, S_IRUGO, show_in, NULL, 3, 0);
560static SENSOR_DEVICE_ATTR_2(in3_min, S_IRUGO | S_IWUSR, show_in, set_in,
561 3, 1);
562static SENSOR_DEVICE_ATTR_2(in3_max, S_IRUGO | S_IWUSR, show_in, set_in,
563 3, 2);
564
565static SENSOR_DEVICE_ATTR_2(in4_input, S_IRUGO, show_in, NULL, 4, 0);
566static SENSOR_DEVICE_ATTR_2(in4_min, S_IRUGO | S_IWUSR, show_in, set_in,
567 4, 1);
568static SENSOR_DEVICE_ATTR_2(in4_max, S_IRUGO | S_IWUSR, show_in, set_in,
569 4, 2);
570
571static SENSOR_DEVICE_ATTR_2(in5_input, S_IRUGO, show_in, NULL, 5, 0);
572static SENSOR_DEVICE_ATTR_2(in5_min, S_IRUGO | S_IWUSR, show_in, set_in,
573 5, 1);
574static SENSOR_DEVICE_ATTR_2(in5_max, S_IRUGO | S_IWUSR, show_in, set_in,
575 5, 2);
576
577static SENSOR_DEVICE_ATTR_2(in6_input, S_IRUGO, show_in, NULL, 6, 0);
578static SENSOR_DEVICE_ATTR_2(in6_min, S_IRUGO | S_IWUSR, show_in, set_in,
579 6, 1);
580static SENSOR_DEVICE_ATTR_2(in6_max, S_IRUGO | S_IWUSR, show_in, set_in,
581 6, 2);
582
583static SENSOR_DEVICE_ATTR_2(in7_input, S_IRUGO, show_in, NULL, 7, 0);
584static SENSOR_DEVICE_ATTR_2(in7_min, S_IRUGO | S_IWUSR, show_in, set_in,
585 7, 1);
586static SENSOR_DEVICE_ATTR_2(in7_max, S_IRUGO | S_IWUSR, show_in, set_in,
587 7, 2);
588
589static SENSOR_DEVICE_ATTR_2(in8_input, S_IRUGO, show_in, NULL, 8, 0);
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100590static SENSOR_DEVICE_ATTR_2(in9_input, S_IRUGO, show_in, NULL, 9, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592/* 3 temperatures */
Jean Delvare20ad93d2005-06-05 11:53:25 +0200593static ssize_t show_temp(struct device *dev, struct device_attribute *attr,
Guenter Roeck60ca3852012-12-19 22:17:00 +0100594 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Guenter Roeck60ca3852012-12-19 22:17:00 +0100596 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
597 int nr = sattr->nr;
598 int index = sattr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +0200600
Guenter Roeck60ca3852012-12-19 22:17:00 +0100601 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[nr][index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200603
Guenter Roeck60ca3852012-12-19 22:17:00 +0100604static ssize_t set_temp(struct device *dev, struct device_attribute *attr,
605 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
Guenter Roeck60ca3852012-12-19 22:17:00 +0100607 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
608 int nr = sattr->nr;
609 int index = sattr->index;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200610 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100611 long val;
Guenter Roeck161d8982012-12-19 22:17:01 +0100612 u8 reg, regval;
Jean Delvaref5f64502010-03-05 22:17:19 +0100613
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100614 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100615 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100617 mutex_lock(&data->update_lock);
Guenter Roeck161d8982012-12-19 22:17:01 +0100618
619 switch (index) {
620 default:
621 case 1:
622 reg = IT87_REG_TEMP_LOW(nr);
623 break;
624 case 2:
625 reg = IT87_REG_TEMP_HIGH(nr);
626 break;
627 case 3:
628 regval = it87_read_value(data, IT87_REG_BEEP_ENABLE);
629 if (!(regval & 0x80)) {
630 regval |= 0x80;
631 it87_write_value(data, IT87_REG_BEEP_ENABLE, regval);
632 }
633 data->valid = 0;
634 reg = IT87_REG_TEMP_OFFSET[nr];
635 break;
636 }
637
Guenter Roeck60ca3852012-12-19 22:17:00 +0100638 data->temp[nr][index] = TEMP_TO_REG(val);
Guenter Roeck161d8982012-12-19 22:17:01 +0100639 it87_write_value(data, reg, data->temp[nr][index]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100640 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 return count;
642}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200643
Guenter Roeck60ca3852012-12-19 22:17:00 +0100644static SENSOR_DEVICE_ATTR_2(temp1_input, S_IRUGO, show_temp, NULL, 0, 0);
645static SENSOR_DEVICE_ATTR_2(temp1_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
646 0, 1);
647static SENSOR_DEVICE_ATTR_2(temp1_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
648 0, 2);
Guenter Roeck161d8982012-12-19 22:17:01 +0100649static SENSOR_DEVICE_ATTR_2(temp1_offset, S_IRUGO | S_IWUSR, show_temp,
650 set_temp, 0, 3);
Guenter Roeck60ca3852012-12-19 22:17:00 +0100651static SENSOR_DEVICE_ATTR_2(temp2_input, S_IRUGO, show_temp, NULL, 1, 0);
652static SENSOR_DEVICE_ATTR_2(temp2_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
653 1, 1);
654static SENSOR_DEVICE_ATTR_2(temp2_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
655 1, 2);
Guenter Roeck161d8982012-12-19 22:17:01 +0100656static SENSOR_DEVICE_ATTR_2(temp2_offset, S_IRUGO | S_IWUSR, show_temp,
657 set_temp, 1, 3);
Guenter Roeck60ca3852012-12-19 22:17:00 +0100658static SENSOR_DEVICE_ATTR_2(temp3_input, S_IRUGO, show_temp, NULL, 2, 0);
659static SENSOR_DEVICE_ATTR_2(temp3_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
660 2, 1);
661static SENSOR_DEVICE_ATTR_2(temp3_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
662 2, 2);
Guenter Roeck161d8982012-12-19 22:17:01 +0100663static SENSOR_DEVICE_ATTR_2(temp3_offset, S_IRUGO | S_IWUSR, show_temp,
664 set_temp, 2, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Guenter Roeck2cece012012-12-19 22:17:01 +0100666static ssize_t show_temp_type(struct device *dev, struct device_attribute *attr,
667 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200669 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
670 int nr = sensor_attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 struct it87_data *data = it87_update_device(dev);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800672 u8 reg = data->sensor; /* In case value is updated while used */
Guenter Roeck19529782012-12-19 22:17:02 +0100673 u8 extra = data->extra;
Jean Delvare5f2dc792010-03-05 22:17:18 +0100674
Guenter Roeck19529782012-12-19 22:17:02 +0100675 if ((has_temp_peci(data, nr) && (reg >> 6 == nr + 1))
676 || (has_temp_old_peci(data, nr) && (extra & 0x80)))
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100677 return sprintf(buf, "6\n"); /* Intel PECI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (reg & (1 << nr))
679 return sprintf(buf, "3\n"); /* thermal diode */
680 if (reg & (8 << nr))
Jean Delvare4ed10772008-10-17 17:51:16 +0200681 return sprintf(buf, "4\n"); /* thermistor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 return sprintf(buf, "0\n"); /* disabled */
683}
Guenter Roeck2cece012012-12-19 22:17:01 +0100684
685static ssize_t set_temp_type(struct device *dev, struct device_attribute *attr,
686 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200688 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
689 int nr = sensor_attr->index;
690
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200691 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100692 long val;
Guenter Roeck19529782012-12-19 22:17:02 +0100693 u8 reg, extra;
Jean Delvaref5f64502010-03-05 22:17:19 +0100694
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100695 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100696 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Jean Delvare8acf07c2010-04-14 16:14:09 +0200698 reg = it87_read_value(data, IT87_REG_TEMP_ENABLE);
699 reg &= ~(1 << nr);
700 reg &= ~(8 << nr);
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100701 if (has_temp_peci(data, nr) && (reg >> 6 == nr + 1 || val == 6))
702 reg &= 0x3f;
Guenter Roeck19529782012-12-19 22:17:02 +0100703 extra = it87_read_value(data, IT87_REG_TEMP_EXTRA);
704 if (has_temp_old_peci(data, nr) && ((extra & 0x80) || val == 6))
705 extra &= 0x7f;
Jean Delvare4ed10772008-10-17 17:51:16 +0200706 if (val == 2) { /* backwards compatibility */
Guenter Roeck1d9bcf62012-12-19 22:17:01 +0100707 dev_warn(dev,
708 "Sensor type 2 is deprecated, please use 4 instead\n");
Jean Delvare4ed10772008-10-17 17:51:16 +0200709 val = 4;
710 }
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100711 /* 3 = thermal diode; 4 = thermistor; 6 = Intel PECI; 0 = disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 if (val == 3)
Jean Delvare8acf07c2010-04-14 16:14:09 +0200713 reg |= 1 << nr;
Jean Delvare4ed10772008-10-17 17:51:16 +0200714 else if (val == 4)
Jean Delvare8acf07c2010-04-14 16:14:09 +0200715 reg |= 8 << nr;
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100716 else if (has_temp_peci(data, nr) && val == 6)
717 reg |= (nr + 1) << 6;
Guenter Roeck19529782012-12-19 22:17:02 +0100718 else if (has_temp_old_peci(data, nr) && val == 6)
719 extra |= 0x80;
Jean Delvare8acf07c2010-04-14 16:14:09 +0200720 else if (val != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 return -EINVAL;
Jean Delvare8acf07c2010-04-14 16:14:09 +0200722
723 mutex_lock(&data->update_lock);
724 data->sensor = reg;
Guenter Roeck19529782012-12-19 22:17:02 +0100725 data->extra = extra;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200726 it87_write_value(data, IT87_REG_TEMP_ENABLE, data->sensor);
Guenter Roeck19529782012-12-19 22:17:02 +0100727 if (has_temp_old_peci(data, nr))
728 it87_write_value(data, IT87_REG_TEMP_EXTRA, data->extra);
Jean Delvare2b3d1d82010-04-14 16:14:10 +0200729 data->valid = 0; /* Force cache refresh */
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100730 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 return count;
732}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Guenter Roeck2cece012012-12-19 22:17:01 +0100734static SENSOR_DEVICE_ATTR(temp1_type, S_IRUGO | S_IWUSR, show_temp_type,
735 set_temp_type, 0);
736static SENSOR_DEVICE_ATTR(temp2_type, S_IRUGO | S_IWUSR, show_temp_type,
737 set_temp_type, 1);
738static SENSOR_DEVICE_ATTR(temp3_type, S_IRUGO | S_IWUSR, show_temp_type,
739 set_temp_type, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741/* 3 Fans */
Jean Delvareb99883d2010-03-05 22:17:15 +0100742
743static int pwm_mode(const struct it87_data *data, int nr)
744{
745 int ctrl = data->fan_main_ctrl & (1 << nr);
746
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100747 if (ctrl == 0 && data->type != it8603) /* Full speed */
Jean Delvareb99883d2010-03-05 22:17:15 +0100748 return 0;
749 if (data->pwm_ctrl[nr] & 0x80) /* Automatic mode */
750 return 2;
751 else /* Manual mode */
752 return 1;
753}
754
Jean Delvare20ad93d2005-06-05 11:53:25 +0200755static ssize_t show_fan(struct device *dev, struct device_attribute *attr,
Guenter Roecke1169ba2012-12-19 22:17:01 +0100756 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
Guenter Roecke1169ba2012-12-19 22:17:01 +0100758 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
759 int nr = sattr->nr;
760 int index = sattr->index;
761 int speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +0200763
Guenter Roecke1169ba2012-12-19 22:17:01 +0100764 speed = has_16bit_fans(data) ?
765 FAN16_FROM_REG(data->fan[nr][index]) :
766 FAN_FROM_REG(data->fan[nr][index],
767 DIV_FROM_REG(data->fan_div[nr]));
768 return sprintf(buf, "%d\n", speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769}
Guenter Roecke1169ba2012-12-19 22:17:01 +0100770
Jean Delvare20ad93d2005-06-05 11:53:25 +0200771static ssize_t show_fan_div(struct device *dev, struct device_attribute *attr,
772 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200774 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
775 int nr = sensor_attr->index;
776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 struct it87_data *data = it87_update_device(dev);
778 return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[nr]));
779}
Jean Delvare5f2dc792010-03-05 22:17:18 +0100780static ssize_t show_pwm_enable(struct device *dev,
781 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200783 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
784 int nr = sensor_attr->index;
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 struct it87_data *data = it87_update_device(dev);
Jean Delvareb99883d2010-03-05 22:17:15 +0100787 return sprintf(buf, "%d\n", pwm_mode(data, nr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200789static ssize_t show_pwm(struct device *dev, struct device_attribute *attr,
790 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200792 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
793 int nr = sensor_attr->index;
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 struct it87_data *data = it87_update_device(dev);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200796 return sprintf(buf, "%d\n",
797 pwm_from_reg(data, data->pwm_duty[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798}
Jean Delvaref8d0c192007-02-14 21:15:02 +0100799static ssize_t show_pwm_freq(struct device *dev, struct device_attribute *attr,
800 char *buf)
801{
802 struct it87_data *data = it87_update_device(dev);
803 int index = (data->fan_ctl >> 4) & 0x07;
804
805 return sprintf(buf, "%u\n", pwm_freq[index]);
806}
Guenter Roecke1169ba2012-12-19 22:17:01 +0100807
808static ssize_t set_fan(struct device *dev, struct device_attribute *attr,
809 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
Guenter Roecke1169ba2012-12-19 22:17:01 +0100811 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
812 int nr = sattr->nr;
813 int index = sattr->index;
Jean Delvare20ad93d2005-06-05 11:53:25 +0200814
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200815 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100816 long val;
Jean Delvare7f999aa2007-02-14 21:15:03 +0100817 u8 reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100819 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100820 return -EINVAL;
821
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100822 mutex_lock(&data->update_lock);
Guenter Roecke1169ba2012-12-19 22:17:01 +0100823
824 if (has_16bit_fans(data)) {
825 data->fan[nr][index] = FAN16_TO_REG(val);
826 it87_write_value(data, IT87_REG_FAN_MIN[nr],
827 data->fan[nr][index] & 0xff);
828 it87_write_value(data, IT87_REG_FANX_MIN[nr],
829 data->fan[nr][index] >> 8);
830 } else {
831 reg = it87_read_value(data, IT87_REG_FAN_DIV);
832 switch (nr) {
833 case 0:
834 data->fan_div[nr] = reg & 0x07;
835 break;
836 case 1:
837 data->fan_div[nr] = (reg >> 3) & 0x07;
838 break;
839 case 2:
840 data->fan_div[nr] = (reg & 0x40) ? 3 : 1;
841 break;
842 }
843 data->fan[nr][index] =
844 FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
845 it87_write_value(data, IT87_REG_FAN_MIN[nr],
846 data->fan[nr][index]);
Jean Delvare07eab462005-11-23 15:44:31 -0800847 }
848
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100849 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 return count;
851}
Guenter Roecke1169ba2012-12-19 22:17:01 +0100852
Jean Delvare20ad93d2005-06-05 11:53:25 +0200853static ssize_t set_fan_div(struct device *dev, struct device_attribute *attr,
854 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200856 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
857 int nr = sensor_attr->index;
858
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200859 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100860 unsigned long val;
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200861 int min;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 u8 old;
863
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100864 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100865 return -EINVAL;
866
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100867 mutex_lock(&data->update_lock);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200868 old = it87_read_value(data, IT87_REG_FAN_DIV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200870 /* Save fan min limit */
Guenter Roecke1169ba2012-12-19 22:17:01 +0100871 min = FAN_FROM_REG(data->fan[nr][1], DIV_FROM_REG(data->fan_div[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873 switch (nr) {
874 case 0:
875 case 1:
876 data->fan_div[nr] = DIV_TO_REG(val);
877 break;
878 case 2:
879 if (val < 8)
880 data->fan_div[nr] = 1;
881 else
882 data->fan_div[nr] = 3;
883 }
884 val = old & 0x80;
885 val |= (data->fan_div[0] & 0x07);
886 val |= (data->fan_div[1] & 0x07) << 3;
887 if (data->fan_div[2] == 3)
888 val |= 0x1 << 6;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200889 it87_write_value(data, IT87_REG_FAN_DIV, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200891 /* Restore fan min limit */
Guenter Roecke1169ba2012-12-19 22:17:01 +0100892 data->fan[nr][1] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
893 it87_write_value(data, IT87_REG_FAN_MIN[nr], data->fan[nr][1]);
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200894
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100895 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 return count;
897}
Jean Delvarecccfc9c2010-03-05 22:17:21 +0100898
899/* Returns 0 if OK, -EINVAL otherwise */
900static int check_trip_points(struct device *dev, int nr)
901{
902 const struct it87_data *data = dev_get_drvdata(dev);
903 int i, err = 0;
904
905 if (has_old_autopwm(data)) {
906 for (i = 0; i < 3; i++) {
907 if (data->auto_temp[nr][i] > data->auto_temp[nr][i + 1])
908 err = -EINVAL;
909 }
910 for (i = 0; i < 2; i++) {
911 if (data->auto_pwm[nr][i] > data->auto_pwm[nr][i + 1])
912 err = -EINVAL;
913 }
914 }
915
916 if (err) {
Guenter Roeck1d9bcf62012-12-19 22:17:01 +0100917 dev_err(dev,
918 "Inconsistent trip points, not switching to automatic mode\n");
Jean Delvarecccfc9c2010-03-05 22:17:21 +0100919 dev_err(dev, "Adjust the trip points and try again\n");
920 }
921 return err;
922}
923
Jean Delvare20ad93d2005-06-05 11:53:25 +0200924static ssize_t set_pwm_enable(struct device *dev,
925 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200927 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
928 int nr = sensor_attr->index;
929
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200930 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100931 long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100933 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 2)
Jean Delvareb99883d2010-03-05 22:17:15 +0100934 return -EINVAL;
935
Jean Delvarecccfc9c2010-03-05 22:17:21 +0100936 /* Check trip points before switching to automatic mode */
937 if (val == 2) {
938 if (check_trip_points(dev, nr) < 0)
939 return -EINVAL;
940 }
941
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100942 /* IT8603E does not have on/off mode */
943 if (val == 0 && data->type == it8603)
944 return -EINVAL;
945
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100946 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 if (val == 0) {
949 int tmp;
950 /* make sure the fan is on when in on/off mode */
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200951 tmp = it87_read_value(data, IT87_REG_FAN_CTL);
952 it87_write_value(data, IT87_REG_FAN_CTL, tmp | (1 << nr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 /* set on/off mode */
954 data->fan_main_ctrl &= ~(1 << nr);
Jean Delvare5f2dc792010-03-05 22:17:18 +0100955 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
956 data->fan_main_ctrl);
Jean Delvareb99883d2010-03-05 22:17:15 +0100957 } else {
958 if (val == 1) /* Manual mode */
Jean Delvare16b5dda2012-01-16 22:51:48 +0100959 data->pwm_ctrl[nr] = has_newer_autopwm(data) ?
Jean Delvare6229cdb2010-12-08 16:27:22 +0100960 data->pwm_temp_map[nr] :
961 data->pwm_duty[nr];
Jean Delvareb99883d2010-03-05 22:17:15 +0100962 else /* Automatic mode */
963 data->pwm_ctrl[nr] = 0x80 | data->pwm_temp_map[nr];
964 it87_write_value(data, IT87_REG_PWM(nr), data->pwm_ctrl[nr]);
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100965
966 if (data->type != it8603) {
967 /* set SmartGuardian mode */
968 data->fan_main_ctrl |= (1 << nr);
969 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
970 data->fan_main_ctrl);
971 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 }
973
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100974 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 return count;
976}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200977static ssize_t set_pwm(struct device *dev, struct device_attribute *attr,
978 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200980 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
981 int nr = sensor_attr->index;
982
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200983 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100984 long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100986 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 return -EINVAL;
988
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100989 mutex_lock(&data->update_lock);
Jean Delvare16b5dda2012-01-16 22:51:48 +0100990 if (has_newer_autopwm(data)) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800991 /*
992 * If we are in automatic mode, the PWM duty cycle register
993 * is read-only so we can't write the value.
994 */
Jean Delvare6229cdb2010-12-08 16:27:22 +0100995 if (data->pwm_ctrl[nr] & 0x80) {
996 mutex_unlock(&data->update_lock);
997 return -EBUSY;
998 }
999 data->pwm_duty[nr] = pwm_to_reg(data, val);
1000 it87_write_value(data, IT87_REG_PWM_DUTY(nr),
1001 data->pwm_duty[nr]);
1002 } else {
1003 data->pwm_duty[nr] = pwm_to_reg(data, val);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001004 /*
1005 * If we are in manual mode, write the duty cycle immediately;
1006 * otherwise, just store it for later use.
1007 */
Jean Delvare6229cdb2010-12-08 16:27:22 +01001008 if (!(data->pwm_ctrl[nr] & 0x80)) {
1009 data->pwm_ctrl[nr] = data->pwm_duty[nr];
1010 it87_write_value(data, IT87_REG_PWM(nr),
1011 data->pwm_ctrl[nr]);
1012 }
Jean Delvareb99883d2010-03-05 22:17:15 +01001013 }
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001014 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 return count;
1016}
Jean Delvaref8d0c192007-02-14 21:15:02 +01001017static ssize_t set_pwm_freq(struct device *dev,
1018 struct device_attribute *attr, const char *buf, size_t count)
1019{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001020 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001021 unsigned long val;
Jean Delvaref8d0c192007-02-14 21:15:02 +01001022 int i;
1023
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001024 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001025 return -EINVAL;
1026
Jean Delvaref8d0c192007-02-14 21:15:02 +01001027 /* Search for the nearest available frequency */
1028 for (i = 0; i < 7; i++) {
1029 if (val > (pwm_freq[i] + pwm_freq[i+1]) / 2)
1030 break;
1031 }
1032
1033 mutex_lock(&data->update_lock);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001034 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL) & 0x8f;
Jean Delvaref8d0c192007-02-14 21:15:02 +01001035 data->fan_ctl |= i << 4;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001036 it87_write_value(data, IT87_REG_FAN_CTL, data->fan_ctl);
Jean Delvaref8d0c192007-02-14 21:15:02 +01001037 mutex_unlock(&data->update_lock);
1038
1039 return count;
1040}
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001041static ssize_t show_pwm_temp_map(struct device *dev,
1042 struct device_attribute *attr, char *buf)
1043{
1044 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1045 int nr = sensor_attr->index;
1046
1047 struct it87_data *data = it87_update_device(dev);
1048 int map;
1049
1050 if (data->pwm_temp_map[nr] < 3)
1051 map = 1 << data->pwm_temp_map[nr];
1052 else
1053 map = 0; /* Should never happen */
1054 return sprintf(buf, "%d\n", map);
1055}
1056static ssize_t set_pwm_temp_map(struct device *dev,
1057 struct device_attribute *attr, const char *buf, size_t count)
1058{
1059 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1060 int nr = sensor_attr->index;
1061
1062 struct it87_data *data = dev_get_drvdata(dev);
1063 long val;
1064 u8 reg;
1065
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001066 /*
1067 * This check can go away if we ever support automatic fan speed
1068 * control on newer chips.
1069 */
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001070 if (!has_old_autopwm(data)) {
1071 dev_notice(dev, "Mapping change disabled for safety reasons\n");
1072 return -EINVAL;
1073 }
1074
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001075 if (kstrtol(buf, 10, &val) < 0)
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001076 return -EINVAL;
1077
1078 switch (val) {
1079 case (1 << 0):
1080 reg = 0x00;
1081 break;
1082 case (1 << 1):
1083 reg = 0x01;
1084 break;
1085 case (1 << 2):
1086 reg = 0x02;
1087 break;
1088 default:
1089 return -EINVAL;
1090 }
1091
1092 mutex_lock(&data->update_lock);
1093 data->pwm_temp_map[nr] = reg;
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001094 /*
1095 * If we are in automatic mode, write the temp mapping immediately;
1096 * otherwise, just store it for later use.
1097 */
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001098 if (data->pwm_ctrl[nr] & 0x80) {
1099 data->pwm_ctrl[nr] = 0x80 | data->pwm_temp_map[nr];
1100 it87_write_value(data, IT87_REG_PWM(nr), data->pwm_ctrl[nr]);
1101 }
1102 mutex_unlock(&data->update_lock);
1103 return count;
1104}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001106static ssize_t show_auto_pwm(struct device *dev,
1107 struct device_attribute *attr, char *buf)
1108{
1109 struct it87_data *data = it87_update_device(dev);
1110 struct sensor_device_attribute_2 *sensor_attr =
1111 to_sensor_dev_attr_2(attr);
1112 int nr = sensor_attr->nr;
1113 int point = sensor_attr->index;
1114
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001115 return sprintf(buf, "%d\n",
1116 pwm_from_reg(data, data->auto_pwm[nr][point]));
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001117}
1118
1119static ssize_t set_auto_pwm(struct device *dev,
1120 struct device_attribute *attr, const char *buf, size_t count)
1121{
1122 struct it87_data *data = dev_get_drvdata(dev);
1123 struct sensor_device_attribute_2 *sensor_attr =
1124 to_sensor_dev_attr_2(attr);
1125 int nr = sensor_attr->nr;
1126 int point = sensor_attr->index;
1127 long val;
1128
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001129 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001130 return -EINVAL;
1131
1132 mutex_lock(&data->update_lock);
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001133 data->auto_pwm[nr][point] = pwm_to_reg(data, val);
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001134 it87_write_value(data, IT87_REG_AUTO_PWM(nr, point),
1135 data->auto_pwm[nr][point]);
1136 mutex_unlock(&data->update_lock);
1137 return count;
1138}
1139
1140static ssize_t show_auto_temp(struct device *dev,
1141 struct device_attribute *attr, char *buf)
1142{
1143 struct it87_data *data = it87_update_device(dev);
1144 struct sensor_device_attribute_2 *sensor_attr =
1145 to_sensor_dev_attr_2(attr);
1146 int nr = sensor_attr->nr;
1147 int point = sensor_attr->index;
1148
1149 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->auto_temp[nr][point]));
1150}
1151
1152static ssize_t set_auto_temp(struct device *dev,
1153 struct device_attribute *attr, const char *buf, size_t count)
1154{
1155 struct it87_data *data = dev_get_drvdata(dev);
1156 struct sensor_device_attribute_2 *sensor_attr =
1157 to_sensor_dev_attr_2(attr);
1158 int nr = sensor_attr->nr;
1159 int point = sensor_attr->index;
1160 long val;
1161
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001162 if (kstrtol(buf, 10, &val) < 0 || val < -128000 || val > 127000)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001163 return -EINVAL;
1164
1165 mutex_lock(&data->update_lock);
1166 data->auto_temp[nr][point] = TEMP_TO_REG(val);
1167 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, point),
1168 data->auto_temp[nr][point]);
1169 mutex_unlock(&data->update_lock);
1170 return count;
1171}
1172
Guenter Roecke1169ba2012-12-19 22:17:01 +01001173static SENSOR_DEVICE_ATTR_2(fan1_input, S_IRUGO, show_fan, NULL, 0, 0);
1174static SENSOR_DEVICE_ATTR_2(fan1_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1175 0, 1);
1176static SENSOR_DEVICE_ATTR(fan1_div, S_IRUGO | S_IWUSR, show_fan_div,
1177 set_fan_div, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Guenter Roecke1169ba2012-12-19 22:17:01 +01001179static SENSOR_DEVICE_ATTR_2(fan2_input, S_IRUGO, show_fan, NULL, 1, 0);
1180static SENSOR_DEVICE_ATTR_2(fan2_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1181 1, 1);
1182static SENSOR_DEVICE_ATTR(fan2_div, S_IRUGO | S_IWUSR, show_fan_div,
1183 set_fan_div, 1);
1184
1185static SENSOR_DEVICE_ATTR_2(fan3_input, S_IRUGO, show_fan, NULL, 2, 0);
1186static SENSOR_DEVICE_ATTR_2(fan3_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1187 2, 1);
1188static SENSOR_DEVICE_ATTR(fan3_div, S_IRUGO | S_IWUSR, show_fan_div,
1189 set_fan_div, 2);
1190
1191static SENSOR_DEVICE_ATTR_2(fan4_input, S_IRUGO, show_fan, NULL, 3, 0);
1192static SENSOR_DEVICE_ATTR_2(fan4_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1193 3, 1);
1194
1195static SENSOR_DEVICE_ATTR_2(fan5_input, S_IRUGO, show_fan, NULL, 4, 0);
1196static SENSOR_DEVICE_ATTR_2(fan5_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1197 4, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Guenter Roeckc4458db2012-12-19 22:17:02 +01001199static SENSOR_DEVICE_ATTR(pwm1_enable, S_IRUGO | S_IWUSR,
1200 show_pwm_enable, set_pwm_enable, 0);
1201static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 0);
1202static DEVICE_ATTR(pwm1_freq, S_IRUGO | S_IWUSR, show_pwm_freq, set_pwm_freq);
1203static SENSOR_DEVICE_ATTR(pwm1_auto_channels_temp, S_IRUGO | S_IWUSR,
1204 show_pwm_temp_map, set_pwm_temp_map, 0);
1205static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_pwm, S_IRUGO | S_IWUSR,
1206 show_auto_pwm, set_auto_pwm, 0, 0);
1207static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_pwm, S_IRUGO | S_IWUSR,
1208 show_auto_pwm, set_auto_pwm, 0, 1);
1209static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_pwm, S_IRUGO | S_IWUSR,
1210 show_auto_pwm, set_auto_pwm, 0, 2);
1211static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_pwm, S_IRUGO,
1212 show_auto_pwm, NULL, 0, 3);
1213static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp, S_IRUGO | S_IWUSR,
1214 show_auto_temp, set_auto_temp, 0, 1);
1215static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1216 show_auto_temp, set_auto_temp, 0, 0);
1217static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_temp, S_IRUGO | S_IWUSR,
1218 show_auto_temp, set_auto_temp, 0, 2);
1219static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_temp, S_IRUGO | S_IWUSR,
1220 show_auto_temp, set_auto_temp, 0, 3);
1221static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_temp, S_IRUGO | S_IWUSR,
1222 show_auto_temp, set_auto_temp, 0, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
Guenter Roeckc4458db2012-12-19 22:17:02 +01001224static SENSOR_DEVICE_ATTR(pwm2_enable, S_IRUGO | S_IWUSR,
1225 show_pwm_enable, set_pwm_enable, 1);
1226static SENSOR_DEVICE_ATTR(pwm2, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 1);
1227static DEVICE_ATTR(pwm2_freq, S_IRUGO, show_pwm_freq, NULL);
1228static SENSOR_DEVICE_ATTR(pwm2_auto_channels_temp, S_IRUGO | S_IWUSR,
1229 show_pwm_temp_map, set_pwm_temp_map, 1);
1230static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_pwm, S_IRUGO | S_IWUSR,
1231 show_auto_pwm, set_auto_pwm, 1, 0);
1232static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_pwm, S_IRUGO | S_IWUSR,
1233 show_auto_pwm, set_auto_pwm, 1, 1);
1234static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_pwm, S_IRUGO | S_IWUSR,
1235 show_auto_pwm, set_auto_pwm, 1, 2);
1236static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_pwm, S_IRUGO,
1237 show_auto_pwm, NULL, 1, 3);
1238static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp, S_IRUGO | S_IWUSR,
1239 show_auto_temp, set_auto_temp, 1, 1);
1240static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1241 show_auto_temp, set_auto_temp, 1, 0);
1242static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_temp, S_IRUGO | S_IWUSR,
1243 show_auto_temp, set_auto_temp, 1, 2);
1244static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_temp, S_IRUGO | S_IWUSR,
1245 show_auto_temp, set_auto_temp, 1, 3);
1246static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_temp, S_IRUGO | S_IWUSR,
1247 show_auto_temp, set_auto_temp, 1, 4);
1248
1249static SENSOR_DEVICE_ATTR(pwm3_enable, S_IRUGO | S_IWUSR,
1250 show_pwm_enable, set_pwm_enable, 2);
1251static SENSOR_DEVICE_ATTR(pwm3, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 2);
1252static DEVICE_ATTR(pwm3_freq, S_IRUGO, show_pwm_freq, NULL);
1253static SENSOR_DEVICE_ATTR(pwm3_auto_channels_temp, S_IRUGO | S_IWUSR,
1254 show_pwm_temp_map, set_pwm_temp_map, 2);
1255static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_pwm, S_IRUGO | S_IWUSR,
1256 show_auto_pwm, set_auto_pwm, 2, 0);
1257static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_pwm, S_IRUGO | S_IWUSR,
1258 show_auto_pwm, set_auto_pwm, 2, 1);
1259static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_pwm, S_IRUGO | S_IWUSR,
1260 show_auto_pwm, set_auto_pwm, 2, 2);
1261static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_pwm, S_IRUGO,
1262 show_auto_pwm, NULL, 2, 3);
1263static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp, S_IRUGO | S_IWUSR,
1264 show_auto_temp, set_auto_temp, 2, 1);
1265static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1266 show_auto_temp, set_auto_temp, 2, 0);
1267static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_temp, S_IRUGO | S_IWUSR,
1268 show_auto_temp, set_auto_temp, 2, 2);
1269static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_temp, S_IRUGO | S_IWUSR,
1270 show_auto_temp, set_auto_temp, 2, 3);
1271static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_temp, S_IRUGO | S_IWUSR,
1272 show_auto_temp, set_auto_temp, 2, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
1274/* Alarms */
Jean Delvare5f2dc792010-03-05 22:17:18 +01001275static ssize_t show_alarms(struct device *dev, struct device_attribute *attr,
1276 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277{
1278 struct it87_data *data = it87_update_device(dev);
Jean Delvare68188ba2005-05-16 18:52:38 +02001279 return sprintf(buf, "%u\n", data->alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280}
Jean Delvare1d66c642005-04-18 21:16:59 -07001281static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
Jean Delvare0124dd72007-11-25 16:16:41 +01001283static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
1284 char *buf)
1285{
1286 int bitnr = to_sensor_dev_attr(attr)->index;
1287 struct it87_data *data = it87_update_device(dev);
1288 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
1289}
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001290
1291static ssize_t clear_intrusion(struct device *dev, struct device_attribute
1292 *attr, const char *buf, size_t count)
1293{
1294 struct it87_data *data = dev_get_drvdata(dev);
1295 long val;
1296 int config;
1297
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001298 if (kstrtol(buf, 10, &val) < 0 || val != 0)
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001299 return -EINVAL;
1300
1301 mutex_lock(&data->update_lock);
1302 config = it87_read_value(data, IT87_REG_CONFIG);
1303 if (config < 0) {
1304 count = config;
1305 } else {
1306 config |= 1 << 5;
1307 it87_write_value(data, IT87_REG_CONFIG, config);
1308 /* Invalidate cache to force re-read */
1309 data->valid = 0;
1310 }
1311 mutex_unlock(&data->update_lock);
1312
1313 return count;
1314}
1315
Jean Delvare0124dd72007-11-25 16:16:41 +01001316static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 8);
1317static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 9);
1318static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 10);
1319static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 11);
1320static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 12);
1321static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 13);
1322static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 14);
1323static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 15);
1324static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 0);
1325static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 1);
1326static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 2);
1327static SENSOR_DEVICE_ATTR(fan4_alarm, S_IRUGO, show_alarm, NULL, 3);
1328static SENSOR_DEVICE_ATTR(fan5_alarm, S_IRUGO, show_alarm, NULL, 6);
1329static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 16);
1330static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 17);
1331static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 18);
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001332static SENSOR_DEVICE_ATTR(intrusion0_alarm, S_IRUGO | S_IWUSR,
1333 show_alarm, clear_intrusion, 4);
Jean Delvare0124dd72007-11-25 16:16:41 +01001334
Jean Delvared9b327c2010-03-05 22:17:17 +01001335static ssize_t show_beep(struct device *dev, struct device_attribute *attr,
1336 char *buf)
1337{
1338 int bitnr = to_sensor_dev_attr(attr)->index;
1339 struct it87_data *data = it87_update_device(dev);
1340 return sprintf(buf, "%u\n", (data->beeps >> bitnr) & 1);
1341}
1342static ssize_t set_beep(struct device *dev, struct device_attribute *attr,
1343 const char *buf, size_t count)
1344{
1345 int bitnr = to_sensor_dev_attr(attr)->index;
1346 struct it87_data *data = dev_get_drvdata(dev);
1347 long val;
1348
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001349 if (kstrtol(buf, 10, &val) < 0
Jean Delvared9b327c2010-03-05 22:17:17 +01001350 || (val != 0 && val != 1))
1351 return -EINVAL;
1352
1353 mutex_lock(&data->update_lock);
1354 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
1355 if (val)
1356 data->beeps |= (1 << bitnr);
1357 else
1358 data->beeps &= ~(1 << bitnr);
1359 it87_write_value(data, IT87_REG_BEEP_ENABLE, data->beeps);
1360 mutex_unlock(&data->update_lock);
1361 return count;
1362}
1363
1364static SENSOR_DEVICE_ATTR(in0_beep, S_IRUGO | S_IWUSR,
1365 show_beep, set_beep, 1);
1366static SENSOR_DEVICE_ATTR(in1_beep, S_IRUGO, show_beep, NULL, 1);
1367static SENSOR_DEVICE_ATTR(in2_beep, S_IRUGO, show_beep, NULL, 1);
1368static SENSOR_DEVICE_ATTR(in3_beep, S_IRUGO, show_beep, NULL, 1);
1369static SENSOR_DEVICE_ATTR(in4_beep, S_IRUGO, show_beep, NULL, 1);
1370static SENSOR_DEVICE_ATTR(in5_beep, S_IRUGO, show_beep, NULL, 1);
1371static SENSOR_DEVICE_ATTR(in6_beep, S_IRUGO, show_beep, NULL, 1);
1372static SENSOR_DEVICE_ATTR(in7_beep, S_IRUGO, show_beep, NULL, 1);
1373/* fanX_beep writability is set later */
1374static SENSOR_DEVICE_ATTR(fan1_beep, S_IRUGO, show_beep, set_beep, 0);
1375static SENSOR_DEVICE_ATTR(fan2_beep, S_IRUGO, show_beep, set_beep, 0);
1376static SENSOR_DEVICE_ATTR(fan3_beep, S_IRUGO, show_beep, set_beep, 0);
1377static SENSOR_DEVICE_ATTR(fan4_beep, S_IRUGO, show_beep, set_beep, 0);
1378static SENSOR_DEVICE_ATTR(fan5_beep, S_IRUGO, show_beep, set_beep, 0);
1379static SENSOR_DEVICE_ATTR(temp1_beep, S_IRUGO | S_IWUSR,
1380 show_beep, set_beep, 2);
1381static SENSOR_DEVICE_ATTR(temp2_beep, S_IRUGO, show_beep, NULL, 2);
1382static SENSOR_DEVICE_ATTR(temp3_beep, S_IRUGO, show_beep, NULL, 2);
1383
Jean Delvare5f2dc792010-03-05 22:17:18 +01001384static ssize_t show_vrm_reg(struct device *dev, struct device_attribute *attr,
1385 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386{
Jean Delvare90d66192007-10-08 18:24:35 +02001387 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvarea7be58a2005-12-18 16:40:14 +01001388 return sprintf(buf, "%u\n", data->vrm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389}
Jean Delvare5f2dc792010-03-05 22:17:18 +01001390static ssize_t store_vrm_reg(struct device *dev, struct device_attribute *attr,
1391 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001393 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001394 unsigned long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001396 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001397 return -EINVAL;
1398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 data->vrm = val;
1400
1401 return count;
1402}
1403static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm_reg, store_vrm_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Jean Delvare5f2dc792010-03-05 22:17:18 +01001405static ssize_t show_vid_reg(struct device *dev, struct device_attribute *attr,
1406 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407{
1408 struct it87_data *data = it87_update_device(dev);
1409 return sprintf(buf, "%ld\n", (long) vid_from_reg(data->vid, data->vrm));
1410}
1411static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL);
Jean Delvare87808be2006-09-24 21:17:13 +02001412
Jean Delvare738e5e02010-08-14 21:08:50 +02001413static ssize_t show_label(struct device *dev, struct device_attribute *attr,
1414 char *buf)
1415{
Guenter Roeck3c4c4972012-01-20 09:29:44 -08001416 static const char * const labels[] = {
Jean Delvare738e5e02010-08-14 21:08:50 +02001417 "+5V",
1418 "5VSB",
1419 "Vbat",
1420 };
Guenter Roeck3c4c4972012-01-20 09:29:44 -08001421 static const char * const labels_it8721[] = {
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001422 "+3.3V",
1423 "3VSB",
1424 "Vbat",
1425 };
1426 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvare738e5e02010-08-14 21:08:50 +02001427 int nr = to_sensor_dev_attr(attr)->index;
1428
Jean Delvare16b5dda2012-01-16 22:51:48 +01001429 return sprintf(buf, "%s\n", has_12mv_adc(data) ? labels_it8721[nr]
1430 : labels[nr]);
Jean Delvare738e5e02010-08-14 21:08:50 +02001431}
1432static SENSOR_DEVICE_ATTR(in3_label, S_IRUGO, show_label, NULL, 0);
1433static SENSOR_DEVICE_ATTR(in7_label, S_IRUGO, show_label, NULL, 1);
1434static SENSOR_DEVICE_ATTR(in8_label, S_IRUGO, show_label, NULL, 2);
Rudolf Marek7183ae82014-04-04 18:01:35 +02001435/* special AVCC3 IT8603E in9 */
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001436static SENSOR_DEVICE_ATTR(in9_label, S_IRUGO, show_label, NULL, 0);
Jean Delvare738e5e02010-08-14 21:08:50 +02001437
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001438static ssize_t show_name(struct device *dev, struct device_attribute
1439 *devattr, char *buf)
1440{
1441 struct it87_data *data = dev_get_drvdata(dev);
1442 return sprintf(buf, "%s\n", data->name);
1443}
1444static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
1445
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001446static struct attribute *it87_attributes_in[10][5] = {
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001447{
Jean Delvare87808be2006-09-24 21:17:13 +02001448 &sensor_dev_attr_in0_input.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001449 &sensor_dev_attr_in0_min.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001450 &sensor_dev_attr_in0_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001451 &sensor_dev_attr_in0_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001452 NULL
1453}, {
1454 &sensor_dev_attr_in1_input.dev_attr.attr,
1455 &sensor_dev_attr_in1_min.dev_attr.attr,
1456 &sensor_dev_attr_in1_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001457 &sensor_dev_attr_in1_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001458 NULL
1459}, {
1460 &sensor_dev_attr_in2_input.dev_attr.attr,
1461 &sensor_dev_attr_in2_min.dev_attr.attr,
1462 &sensor_dev_attr_in2_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001463 &sensor_dev_attr_in2_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001464 NULL
1465}, {
1466 &sensor_dev_attr_in3_input.dev_attr.attr,
1467 &sensor_dev_attr_in3_min.dev_attr.attr,
1468 &sensor_dev_attr_in3_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001469 &sensor_dev_attr_in3_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001470 NULL
1471}, {
1472 &sensor_dev_attr_in4_input.dev_attr.attr,
1473 &sensor_dev_attr_in4_min.dev_attr.attr,
1474 &sensor_dev_attr_in4_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001475 &sensor_dev_attr_in4_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001476 NULL
1477}, {
1478 &sensor_dev_attr_in5_input.dev_attr.attr,
1479 &sensor_dev_attr_in5_min.dev_attr.attr,
1480 &sensor_dev_attr_in5_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001481 &sensor_dev_attr_in5_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001482 NULL
1483}, {
1484 &sensor_dev_attr_in6_input.dev_attr.attr,
1485 &sensor_dev_attr_in6_min.dev_attr.attr,
1486 &sensor_dev_attr_in6_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001487 &sensor_dev_attr_in6_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001488 NULL
1489}, {
1490 &sensor_dev_attr_in7_input.dev_attr.attr,
1491 &sensor_dev_attr_in7_min.dev_attr.attr,
1492 &sensor_dev_attr_in7_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001493 &sensor_dev_attr_in7_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001494 NULL
1495}, {
1496 &sensor_dev_attr_in8_input.dev_attr.attr,
1497 NULL
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001498}, {
1499 &sensor_dev_attr_in9_input.dev_attr.attr,
1500 NULL
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001501} };
Jean Delvare87808be2006-09-24 21:17:13 +02001502
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001503static const struct attribute_group it87_group_in[10] = {
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001504 { .attrs = it87_attributes_in[0] },
1505 { .attrs = it87_attributes_in[1] },
1506 { .attrs = it87_attributes_in[2] },
1507 { .attrs = it87_attributes_in[3] },
1508 { .attrs = it87_attributes_in[4] },
1509 { .attrs = it87_attributes_in[5] },
1510 { .attrs = it87_attributes_in[6] },
1511 { .attrs = it87_attributes_in[7] },
1512 { .attrs = it87_attributes_in[8] },
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001513 { .attrs = it87_attributes_in[9] },
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001514};
1515
Guenter Roeck4573acb2012-03-26 16:17:41 -07001516static struct attribute *it87_attributes_temp[3][6] = {
1517{
Jean Delvare87808be2006-09-24 21:17:13 +02001518 &sensor_dev_attr_temp1_input.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001519 &sensor_dev_attr_temp1_max.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001520 &sensor_dev_attr_temp1_min.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001521 &sensor_dev_attr_temp1_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001522 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
Guenter Roeck4573acb2012-03-26 16:17:41 -07001523 NULL
1524} , {
1525 &sensor_dev_attr_temp2_input.dev_attr.attr,
1526 &sensor_dev_attr_temp2_max.dev_attr.attr,
1527 &sensor_dev_attr_temp2_min.dev_attr.attr,
1528 &sensor_dev_attr_temp2_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001529 &sensor_dev_attr_temp2_alarm.dev_attr.attr,
Guenter Roeck4573acb2012-03-26 16:17:41 -07001530 NULL
1531} , {
1532 &sensor_dev_attr_temp3_input.dev_attr.attr,
1533 &sensor_dev_attr_temp3_max.dev_attr.attr,
1534 &sensor_dev_attr_temp3_min.dev_attr.attr,
1535 &sensor_dev_attr_temp3_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001536 &sensor_dev_attr_temp3_alarm.dev_attr.attr,
Guenter Roeck4573acb2012-03-26 16:17:41 -07001537 NULL
1538} };
Jean Delvare87808be2006-09-24 21:17:13 +02001539
Guenter Roeck4573acb2012-03-26 16:17:41 -07001540static const struct attribute_group it87_group_temp[3] = {
1541 { .attrs = it87_attributes_temp[0] },
1542 { .attrs = it87_attributes_temp[1] },
1543 { .attrs = it87_attributes_temp[2] },
1544};
1545
Guenter Roeck161d8982012-12-19 22:17:01 +01001546static struct attribute *it87_attributes_temp_offset[] = {
1547 &sensor_dev_attr_temp1_offset.dev_attr.attr,
1548 &sensor_dev_attr_temp2_offset.dev_attr.attr,
1549 &sensor_dev_attr_temp3_offset.dev_attr.attr,
1550};
1551
Guenter Roeck4573acb2012-03-26 16:17:41 -07001552static struct attribute *it87_attributes[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02001553 &dev_attr_alarms.attr,
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001554 &sensor_dev_attr_intrusion0_alarm.dev_attr.attr,
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001555 &dev_attr_name.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001556 NULL
1557};
1558
1559static const struct attribute_group it87_group = {
1560 .attrs = it87_attributes,
1561};
1562
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001563static struct attribute *it87_attributes_in_beep[] = {
Jean Delvared9b327c2010-03-05 22:17:17 +01001564 &sensor_dev_attr_in0_beep.dev_attr.attr,
1565 &sensor_dev_attr_in1_beep.dev_attr.attr,
1566 &sensor_dev_attr_in2_beep.dev_attr.attr,
1567 &sensor_dev_attr_in3_beep.dev_attr.attr,
1568 &sensor_dev_attr_in4_beep.dev_attr.attr,
1569 &sensor_dev_attr_in5_beep.dev_attr.attr,
1570 &sensor_dev_attr_in6_beep.dev_attr.attr,
1571 &sensor_dev_attr_in7_beep.dev_attr.attr,
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001572 NULL,
1573 NULL,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001574};
Jean Delvared9b327c2010-03-05 22:17:17 +01001575
Guenter Roeck4573acb2012-03-26 16:17:41 -07001576static struct attribute *it87_attributes_temp_beep[] = {
Jean Delvared9b327c2010-03-05 22:17:17 +01001577 &sensor_dev_attr_temp1_beep.dev_attr.attr,
1578 &sensor_dev_attr_temp2_beep.dev_attr.attr,
1579 &sensor_dev_attr_temp3_beep.dev_attr.attr,
Jean Delvared9b327c2010-03-05 22:17:17 +01001580};
1581
Guenter Roecke1169ba2012-12-19 22:17:01 +01001582static struct attribute *it87_attributes_fan[5][3+1] = { {
Jean Delvare87808be2006-09-24 21:17:13 +02001583 &sensor_dev_attr_fan1_input.dev_attr.attr,
1584 &sensor_dev_attr_fan1_min.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001585 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
1586 NULL
1587}, {
Jean Delvare87808be2006-09-24 21:17:13 +02001588 &sensor_dev_attr_fan2_input.dev_attr.attr,
1589 &sensor_dev_attr_fan2_min.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001590 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
1591 NULL
1592}, {
Jean Delvare87808be2006-09-24 21:17:13 +02001593 &sensor_dev_attr_fan3_input.dev_attr.attr,
1594 &sensor_dev_attr_fan3_min.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001595 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001596 NULL
Guenter Roecke1169ba2012-12-19 22:17:01 +01001597}, {
1598 &sensor_dev_attr_fan4_input.dev_attr.attr,
1599 &sensor_dev_attr_fan4_min.dev_attr.attr,
1600 &sensor_dev_attr_fan4_alarm.dev_attr.attr,
1601 NULL
1602}, {
1603 &sensor_dev_attr_fan5_input.dev_attr.attr,
1604 &sensor_dev_attr_fan5_min.dev_attr.attr,
1605 &sensor_dev_attr_fan5_alarm.dev_attr.attr,
1606 NULL
Jean Delvare723a0aa2010-03-05 22:17:16 +01001607} };
Jean Delvare0124dd72007-11-25 16:16:41 +01001608
Guenter Roecke1169ba2012-12-19 22:17:01 +01001609static const struct attribute_group it87_group_fan[5] = {
Jean Delvare723a0aa2010-03-05 22:17:16 +01001610 { .attrs = it87_attributes_fan[0] },
1611 { .attrs = it87_attributes_fan[1] },
1612 { .attrs = it87_attributes_fan[2] },
Guenter Roecke1169ba2012-12-19 22:17:01 +01001613 { .attrs = it87_attributes_fan[3] },
1614 { .attrs = it87_attributes_fan[4] },
Jean Delvare723a0aa2010-03-05 22:17:16 +01001615};
1616
Guenter Roecke1169ba2012-12-19 22:17:01 +01001617static const struct attribute *it87_attributes_fan_div[] = {
1618 &sensor_dev_attr_fan1_div.dev_attr.attr,
1619 &sensor_dev_attr_fan2_div.dev_attr.attr,
1620 &sensor_dev_attr_fan3_div.dev_attr.attr,
1621};
Jean Delvare723a0aa2010-03-05 22:17:16 +01001622
1623static struct attribute *it87_attributes_pwm[3][4+1] = { {
Jean Delvare87808be2006-09-24 21:17:13 +02001624 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001625 &sensor_dev_attr_pwm1.dev_attr.attr,
Jean Delvared5b0b5d2007-12-14 14:41:53 +01001626 &dev_attr_pwm1_freq.attr,
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001627 &sensor_dev_attr_pwm1_auto_channels_temp.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001628 NULL
1629}, {
1630 &sensor_dev_attr_pwm2_enable.dev_attr.attr,
1631 &sensor_dev_attr_pwm2.dev_attr.attr,
1632 &dev_attr_pwm2_freq.attr,
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001633 &sensor_dev_attr_pwm2_auto_channels_temp.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001634 NULL
1635}, {
1636 &sensor_dev_attr_pwm3_enable.dev_attr.attr,
1637 &sensor_dev_attr_pwm3.dev_attr.attr,
1638 &dev_attr_pwm3_freq.attr,
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001639 &sensor_dev_attr_pwm3_auto_channels_temp.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001640 NULL
1641} };
Jean Delvare87808be2006-09-24 21:17:13 +02001642
Jean Delvare723a0aa2010-03-05 22:17:16 +01001643static const struct attribute_group it87_group_pwm[3] = {
1644 { .attrs = it87_attributes_pwm[0] },
1645 { .attrs = it87_attributes_pwm[1] },
1646 { .attrs = it87_attributes_pwm[2] },
1647};
1648
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001649static struct attribute *it87_attributes_autopwm[3][9+1] = { {
1650 &sensor_dev_attr_pwm1_auto_point1_pwm.dev_attr.attr,
1651 &sensor_dev_attr_pwm1_auto_point2_pwm.dev_attr.attr,
1652 &sensor_dev_attr_pwm1_auto_point3_pwm.dev_attr.attr,
1653 &sensor_dev_attr_pwm1_auto_point4_pwm.dev_attr.attr,
1654 &sensor_dev_attr_pwm1_auto_point1_temp.dev_attr.attr,
1655 &sensor_dev_attr_pwm1_auto_point1_temp_hyst.dev_attr.attr,
1656 &sensor_dev_attr_pwm1_auto_point2_temp.dev_attr.attr,
1657 &sensor_dev_attr_pwm1_auto_point3_temp.dev_attr.attr,
1658 &sensor_dev_attr_pwm1_auto_point4_temp.dev_attr.attr,
1659 NULL
1660}, {
1661 &sensor_dev_attr_pwm2_auto_point1_pwm.dev_attr.attr,
1662 &sensor_dev_attr_pwm2_auto_point2_pwm.dev_attr.attr,
1663 &sensor_dev_attr_pwm2_auto_point3_pwm.dev_attr.attr,
1664 &sensor_dev_attr_pwm2_auto_point4_pwm.dev_attr.attr,
1665 &sensor_dev_attr_pwm2_auto_point1_temp.dev_attr.attr,
1666 &sensor_dev_attr_pwm2_auto_point1_temp_hyst.dev_attr.attr,
1667 &sensor_dev_attr_pwm2_auto_point2_temp.dev_attr.attr,
1668 &sensor_dev_attr_pwm2_auto_point3_temp.dev_attr.attr,
1669 &sensor_dev_attr_pwm2_auto_point4_temp.dev_attr.attr,
1670 NULL
1671}, {
1672 &sensor_dev_attr_pwm3_auto_point1_pwm.dev_attr.attr,
1673 &sensor_dev_attr_pwm3_auto_point2_pwm.dev_attr.attr,
1674 &sensor_dev_attr_pwm3_auto_point3_pwm.dev_attr.attr,
1675 &sensor_dev_attr_pwm3_auto_point4_pwm.dev_attr.attr,
1676 &sensor_dev_attr_pwm3_auto_point1_temp.dev_attr.attr,
1677 &sensor_dev_attr_pwm3_auto_point1_temp_hyst.dev_attr.attr,
1678 &sensor_dev_attr_pwm3_auto_point2_temp.dev_attr.attr,
1679 &sensor_dev_attr_pwm3_auto_point3_temp.dev_attr.attr,
1680 &sensor_dev_attr_pwm3_auto_point4_temp.dev_attr.attr,
1681 NULL
1682} };
1683
1684static const struct attribute_group it87_group_autopwm[3] = {
1685 { .attrs = it87_attributes_autopwm[0] },
1686 { .attrs = it87_attributes_autopwm[1] },
1687 { .attrs = it87_attributes_autopwm[2] },
1688};
1689
Jean Delvared9b327c2010-03-05 22:17:17 +01001690static struct attribute *it87_attributes_fan_beep[] = {
1691 &sensor_dev_attr_fan1_beep.dev_attr.attr,
1692 &sensor_dev_attr_fan2_beep.dev_attr.attr,
1693 &sensor_dev_attr_fan3_beep.dev_attr.attr,
1694 &sensor_dev_attr_fan4_beep.dev_attr.attr,
1695 &sensor_dev_attr_fan5_beep.dev_attr.attr,
1696};
1697
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01001698static struct attribute *it87_attributes_vid[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02001699 &dev_attr_vrm.attr,
1700 &dev_attr_cpu0_vid.attr,
1701 NULL
1702};
1703
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01001704static const struct attribute_group it87_group_vid = {
1705 .attrs = it87_attributes_vid,
Jean Delvare87808be2006-09-24 21:17:13 +02001706};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
Jean Delvare738e5e02010-08-14 21:08:50 +02001708static struct attribute *it87_attributes_label[] = {
1709 &sensor_dev_attr_in3_label.dev_attr.attr,
1710 &sensor_dev_attr_in7_label.dev_attr.attr,
1711 &sensor_dev_attr_in8_label.dev_attr.attr,
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001712 &sensor_dev_attr_in9_label.dev_attr.attr,
Jean Delvare738e5e02010-08-14 21:08:50 +02001713 NULL
1714};
1715
1716static const struct attribute_group it87_group_label = {
Jean Delvarefa8b6972011-07-17 18:39:19 +02001717 .attrs = it87_attributes_label,
Jean Delvare738e5e02010-08-14 21:08:50 +02001718};
1719
Jean Delvare2d8672c2005-07-19 23:56:35 +02001720/* SuperIO detection - will change isa_address if a chip is found */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001721static int __init it87_find(unsigned short *address,
1722 struct it87_sio_data *sio_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723{
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +02001724 int err;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001725 u16 chip_type;
Jean Delvare98dd22c2008-10-09 15:33:58 +02001726 const char *board_vendor, *board_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +02001728 err = superio_enter();
1729 if (err)
1730 return err;
1731
1732 err = -ENODEV;
Jean Delvare67b671b2007-12-06 23:13:42 +01001733 chip_type = force_id ? force_id : superio_inw(DEVID);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001734
1735 switch (chip_type) {
1736 case IT8705F_DEVID:
1737 sio_data->type = it87;
1738 break;
1739 case IT8712F_DEVID:
1740 sio_data->type = it8712;
1741 break;
1742 case IT8716F_DEVID:
1743 case IT8726F_DEVID:
1744 sio_data->type = it8716;
1745 break;
1746 case IT8718F_DEVID:
1747 sio_data->type = it8718;
1748 break;
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +01001749 case IT8720F_DEVID:
1750 sio_data->type = it8720;
1751 break;
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001752 case IT8721F_DEVID:
1753 sio_data->type = it8721;
1754 break;
Jean Delvare16b5dda2012-01-16 22:51:48 +01001755 case IT8728F_DEVID:
1756 sio_data->type = it8728;
1757 break;
Guenter Roeckb0636702012-09-07 17:34:41 -06001758 case IT8771E_DEVID:
1759 sio_data->type = it8771;
1760 break;
1761 case IT8772E_DEVID:
1762 sio_data->type = it8772;
1763 break;
Guenter Roeck0531d982012-03-02 11:46:44 -08001764 case IT8782F_DEVID:
1765 sio_data->type = it8782;
1766 break;
1767 case IT8783E_DEVID:
1768 sio_data->type = it8783;
1769 break;
Rudolf Marek7183ae82014-04-04 18:01:35 +02001770 case IT8603E_DEVID:
Rudolf Marek574e9bd2014-04-04 18:01:35 +02001771 case IT8623E_DEVID:
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001772 sio_data->type = it8603;
1773 break;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001774 case 0xffff: /* No device at all */
1775 goto exit;
1776 default:
Joe Perchesa8ca1032011-01-12 21:55:10 +01001777 pr_debug("Unsupported chip (DEVID=0x%x)\n", chip_type);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001778 goto exit;
1779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Jean Delvare87673dd2006-08-28 14:37:19 +02001781 superio_select(PME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 if (!(superio_inb(IT87_ACT_REG) & 0x01)) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01001783 pr_info("Device not activated, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 goto exit;
1785 }
1786
1787 *address = superio_inw(IT87_BASE_REG) & ~(IT87_EXTENT - 1);
1788 if (*address == 0) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01001789 pr_info("Base address not set, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 goto exit;
1791 }
1792
1793 err = 0;
Andrew Paprocki04751692008-08-06 22:41:06 +02001794 sio_data->revision = superio_inb(DEVREV) & 0x0f;
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001795 pr_info("Found IT%04x%c chip at 0x%x, revision %d\n", chip_type,
Jean Delvareb523bb72014-01-29 20:40:08 +01001796 chip_type == 0x8771 || chip_type == 0x8772 ||
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001797 chip_type == 0x8603 ? 'E' : 'F', *address,
1798 sio_data->revision);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
Jean Delvare738e5e02010-08-14 21:08:50 +02001800 /* in8 (Vbat) is always internal */
1801 sio_data->internal = (1 << 2);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001802 /* Only the IT8603E has in9 */
1803 if (sio_data->type != it8603)
1804 sio_data->skip_in |= (1 << 9);
Jean Delvare738e5e02010-08-14 21:08:50 +02001805
Jean Delvare87673dd2006-08-28 14:37:19 +02001806 /* Read GPIO config and VID value from LDN 7 (GPIO) */
Jean Delvare895ff262009-12-09 20:35:47 +01001807 if (sio_data->type == it87) {
1808 /* The IT8705F doesn't have VID pins at all */
1809 sio_data->skip_vid = 1;
Jean Delvared9b327c2010-03-05 22:17:17 +01001810
1811 /* The IT8705F has a different LD number for GPIO */
1812 superio_select(5);
1813 sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f;
Guenter Roeck0531d982012-03-02 11:46:44 -08001814 } else if (sio_data->type == it8783) {
Guenter Roeck088ce2a2013-03-13 16:40:39 -07001815 int reg25, reg27, reg2a, reg2c, regef;
Guenter Roeck0531d982012-03-02 11:46:44 -08001816
1817 sio_data->skip_vid = 1; /* No VID */
1818
1819 superio_select(GPIO);
1820
1821 reg25 = superio_inb(IT87_SIO_GPIO1_REG);
1822 reg27 = superio_inb(IT87_SIO_GPIO3_REG);
Guenter Roeck088ce2a2013-03-13 16:40:39 -07001823 reg2a = superio_inb(IT87_SIO_PINX1_REG);
1824 reg2c = superio_inb(IT87_SIO_PINX2_REG);
1825 regef = superio_inb(IT87_SIO_SPI_REG);
Guenter Roeck0531d982012-03-02 11:46:44 -08001826
Guenter Roeck0531d982012-03-02 11:46:44 -08001827 /* Check if fan3 is there or not */
Guenter Roeck088ce2a2013-03-13 16:40:39 -07001828 if ((reg27 & (1 << 0)) || !(reg2c & (1 << 2)))
Guenter Roeck0531d982012-03-02 11:46:44 -08001829 sio_data->skip_fan |= (1 << 2);
1830 if ((reg25 & (1 << 4))
Guenter Roeck088ce2a2013-03-13 16:40:39 -07001831 || (!(reg2a & (1 << 1)) && (regef & (1 << 0))))
Guenter Roeck0531d982012-03-02 11:46:44 -08001832 sio_data->skip_pwm |= (1 << 2);
1833
1834 /* Check if fan2 is there or not */
1835 if (reg27 & (1 << 7))
1836 sio_data->skip_fan |= (1 << 1);
1837 if (reg27 & (1 << 3))
1838 sio_data->skip_pwm |= (1 << 1);
1839
1840 /* VIN5 */
Guenter Roeck088ce2a2013-03-13 16:40:39 -07001841 if ((reg27 & (1 << 0)) || (reg2c & (1 << 2)))
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001842 sio_data->skip_in |= (1 << 5); /* No VIN5 */
Guenter Roeck0531d982012-03-02 11:46:44 -08001843
1844 /* VIN6 */
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001845 if (reg27 & (1 << 1))
1846 sio_data->skip_in |= (1 << 6); /* No VIN6 */
Guenter Roeck0531d982012-03-02 11:46:44 -08001847
1848 /*
1849 * VIN7
1850 * Does not depend on bit 2 of Reg2C, contrary to datasheet.
1851 */
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001852 if (reg27 & (1 << 2)) {
1853 /*
1854 * The data sheet is a bit unclear regarding the
1855 * internal voltage divider for VCCH5V. It says
1856 * "This bit enables and switches VIN7 (pin 91) to the
1857 * internal voltage divider for VCCH5V".
1858 * This is different to other chips, where the internal
1859 * voltage divider would connect VIN7 to an internal
1860 * voltage source. Maybe that is the case here as well.
1861 *
1862 * Since we don't know for sure, re-route it if that is
1863 * not the case, and ask the user to report if the
1864 * resulting voltage is sane.
1865 */
Guenter Roeck088ce2a2013-03-13 16:40:39 -07001866 if (!(reg2c & (1 << 1))) {
1867 reg2c |= (1 << 1);
1868 superio_outb(IT87_SIO_PINX2_REG, reg2c);
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001869 pr_notice("Routing internal VCCH5V to in7.\n");
1870 }
1871 pr_notice("in7 routed to internal voltage divider, with external pin disabled.\n");
1872 pr_notice("Please report if it displays a reasonable voltage.\n");
1873 }
Guenter Roeck0531d982012-03-02 11:46:44 -08001874
Guenter Roeck088ce2a2013-03-13 16:40:39 -07001875 if (reg2c & (1 << 0))
Guenter Roeck0531d982012-03-02 11:46:44 -08001876 sio_data->internal |= (1 << 0);
Guenter Roeck088ce2a2013-03-13 16:40:39 -07001877 if (reg2c & (1 << 1))
Guenter Roeck0531d982012-03-02 11:46:44 -08001878 sio_data->internal |= (1 << 1);
1879
1880 sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f;
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001881 } else if (sio_data->type == it8603) {
1882 int reg27, reg29;
Guenter Roeck0531d982012-03-02 11:46:44 -08001883
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001884 sio_data->skip_vid = 1; /* No VID */
1885 superio_select(GPIO);
1886
1887 reg27 = superio_inb(IT87_SIO_GPIO3_REG);
1888
1889 /* Check if fan3 is there or not */
1890 if (reg27 & (1 << 6))
1891 sio_data->skip_pwm |= (1 << 2);
1892 if (reg27 & (1 << 7))
1893 sio_data->skip_fan |= (1 << 2);
1894
1895 /* Check if fan2 is there or not */
1896 reg29 = superio_inb(IT87_SIO_GPIO5_REG);
1897 if (reg29 & (1 << 1))
1898 sio_data->skip_pwm |= (1 << 1);
1899 if (reg29 & (1 << 2))
1900 sio_data->skip_fan |= (1 << 1);
1901
1902 sio_data->skip_in |= (1 << 5); /* No VIN5 */
1903 sio_data->skip_in |= (1 << 6); /* No VIN6 */
1904
1905 /* no fan4 */
1906 sio_data->skip_pwm |= (1 << 3);
1907 sio_data->skip_fan |= (1 << 3);
1908
1909 sio_data->internal |= (1 << 1); /* in7 is VSB */
1910 sio_data->internal |= (1 << 3); /* in9 is AVCC */
1911
1912 sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f;
Jean Delvare895ff262009-12-09 20:35:47 +01001913 } else {
Jean Delvare87673dd2006-08-28 14:37:19 +02001914 int reg;
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001915 bool uart6;
Jean Delvare87673dd2006-08-28 14:37:19 +02001916
1917 superio_select(GPIO);
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001918
Jean Delvare895ff262009-12-09 20:35:47 +01001919 reg = superio_inb(IT87_SIO_GPIO3_REG);
Guenter Roeck0531d982012-03-02 11:46:44 -08001920 if (sio_data->type == it8721 || sio_data->type == it8728 ||
Guenter Roeckb0636702012-09-07 17:34:41 -06001921 sio_data->type == it8771 || sio_data->type == it8772 ||
Guenter Roeck0531d982012-03-02 11:46:44 -08001922 sio_data->type == it8782) {
Jean Delvare16b5dda2012-01-16 22:51:48 +01001923 /*
Guenter Roeck0531d982012-03-02 11:46:44 -08001924 * IT8721F/IT8758E, and IT8782F don't have VID pins
Guenter Roeckb0636702012-09-07 17:34:41 -06001925 * at all, not sure about the IT8728F and compatibles.
Jean Delvare16b5dda2012-01-16 22:51:48 +01001926 */
Jean Delvare895ff262009-12-09 20:35:47 +01001927 sio_data->skip_vid = 1;
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001928 } else {
1929 /* We need at least 4 VID pins */
1930 if (reg & 0x0f) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01001931 pr_info("VID is disabled (pins used for GPIO)\n");
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001932 sio_data->skip_vid = 1;
1933 }
Jean Delvare895ff262009-12-09 20:35:47 +01001934 }
1935
Jean Delvare591ec652009-12-09 20:35:48 +01001936 /* Check if fan3 is there or not */
1937 if (reg & (1 << 6))
1938 sio_data->skip_pwm |= (1 << 2);
1939 if (reg & (1 << 7))
1940 sio_data->skip_fan |= (1 << 2);
1941
1942 /* Check if fan2 is there or not */
1943 reg = superio_inb(IT87_SIO_GPIO5_REG);
1944 if (reg & (1 << 1))
1945 sio_data->skip_pwm |= (1 << 1);
1946 if (reg & (1 << 2))
1947 sio_data->skip_fan |= (1 << 1);
1948
Jean Delvare895ff262009-12-09 20:35:47 +01001949 if ((sio_data->type == it8718 || sio_data->type == it8720)
1950 && !(sio_data->skip_vid))
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001951 sio_data->vid_value = superio_inb(IT87_SIO_VID_REG);
Jean Delvare87673dd2006-08-28 14:37:19 +02001952
1953 reg = superio_inb(IT87_SIO_PINX2_REG);
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001954
1955 uart6 = sio_data->type == it8782 && (reg & (1 << 2));
1956
Jean Delvare436cad22010-07-09 16:22:48 +02001957 /*
1958 * The IT8720F has no VIN7 pin, so VCCH should always be
1959 * routed internally to VIN7 with an internal divider.
1960 * Curiously, there still is a configuration bit to control
1961 * this, which means it can be set incorrectly. And even
1962 * more curiously, many boards out there are improperly
1963 * configured, even though the IT8720F datasheet claims
1964 * that the internal routing of VCCH to VIN7 is the default
1965 * setting. So we force the internal routing in this case.
Guenter Roeck0531d982012-03-02 11:46:44 -08001966 *
1967 * On IT8782F, VIN7 is multiplexed with one of the UART6 pins.
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001968 * If UART6 is enabled, re-route VIN7 to the internal divider
1969 * if that is not already the case.
Jean Delvare436cad22010-07-09 16:22:48 +02001970 */
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001971 if ((sio_data->type == it8720 || uart6) && !(reg & (1 << 1))) {
Jean Delvare436cad22010-07-09 16:22:48 +02001972 reg |= (1 << 1);
1973 superio_outb(IT87_SIO_PINX2_REG, reg);
Joe Perchesa8ca1032011-01-12 21:55:10 +01001974 pr_notice("Routing internal VCCH to in7\n");
Jean Delvare436cad22010-07-09 16:22:48 +02001975 }
Jean Delvare87673dd2006-08-28 14:37:19 +02001976 if (reg & (1 << 0))
Jean Delvare738e5e02010-08-14 21:08:50 +02001977 sio_data->internal |= (1 << 0);
Jean Delvare16b5dda2012-01-16 22:51:48 +01001978 if ((reg & (1 << 1)) || sio_data->type == it8721 ||
Guenter Roeckb0636702012-09-07 17:34:41 -06001979 sio_data->type == it8728 ||
1980 sio_data->type == it8771 ||
1981 sio_data->type == it8772)
Jean Delvare738e5e02010-08-14 21:08:50 +02001982 sio_data->internal |= (1 << 1);
Jean Delvared9b327c2010-03-05 22:17:17 +01001983
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001984 /*
1985 * On IT8782F, UART6 pins overlap with VIN5, VIN6, and VIN7.
1986 * While VIN7 can be routed to the internal voltage divider,
1987 * VIN5 and VIN6 are not available if UART6 is enabled.
Guenter Roeck4573acb2012-03-26 16:17:41 -07001988 *
1989 * Also, temp3 is not available if UART6 is enabled and TEMPIN3
1990 * is the temperature source. Since we can not read the
1991 * temperature source here, skip_temp is preliminary.
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001992 */
Guenter Roeck4573acb2012-03-26 16:17:41 -07001993 if (uart6) {
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001994 sio_data->skip_in |= (1 << 5) | (1 << 6);
Guenter Roeck4573acb2012-03-26 16:17:41 -07001995 sio_data->skip_temp |= (1 << 2);
1996 }
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001997
Jean Delvared9b327c2010-03-05 22:17:17 +01001998 sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f;
Jean Delvare87673dd2006-08-28 14:37:19 +02001999 }
Jean Delvared9b327c2010-03-05 22:17:17 +01002000 if (sio_data->beep_pin)
Joe Perchesa8ca1032011-01-12 21:55:10 +01002001 pr_info("Beeping is supported\n");
Jean Delvare87673dd2006-08-28 14:37:19 +02002002
Jean Delvare98dd22c2008-10-09 15:33:58 +02002003 /* Disable specific features based on DMI strings */
2004 board_vendor = dmi_get_system_info(DMI_BOARD_VENDOR);
2005 board_name = dmi_get_system_info(DMI_BOARD_NAME);
2006 if (board_vendor && board_name) {
2007 if (strcmp(board_vendor, "nVIDIA") == 0
2008 && strcmp(board_name, "FN68PT") == 0) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002009 /*
2010 * On the Shuttle SN68PT, FAN_CTL2 is apparently not
2011 * connected to a fan, but to something else. One user
2012 * has reported instant system power-off when changing
2013 * the PWM2 duty cycle, so we disable it.
2014 * I use the board name string as the trigger in case
2015 * the same board is ever used in other systems.
2016 */
Joe Perchesa8ca1032011-01-12 21:55:10 +01002017 pr_info("Disabling pwm2 due to hardware constraints\n");
Jean Delvare98dd22c2008-10-09 15:33:58 +02002018 sio_data->skip_pwm = (1 << 1);
2019 }
2020 }
2021
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022exit:
2023 superio_exit();
2024 return err;
2025}
2026
Jean Delvare723a0aa2010-03-05 22:17:16 +01002027static void it87_remove_files(struct device *dev)
2028{
2029 struct it87_data *data = platform_get_drvdata(pdev);
Jingoo Hana8b3a3a2013-07-30 17:13:06 +09002030 struct it87_sio_data *sio_data = dev_get_platdata(dev);
Jean Delvare723a0aa2010-03-05 22:17:16 +01002031 int i;
2032
2033 sysfs_remove_group(&dev->kobj, &it87_group);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002034 for (i = 0; i < 10; i++) {
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002035 if (sio_data->skip_in & (1 << i))
2036 continue;
2037 sysfs_remove_group(&dev->kobj, &it87_group_in[i]);
2038 if (it87_attributes_in_beep[i])
2039 sysfs_remove_file(&dev->kobj,
2040 it87_attributes_in_beep[i]);
2041 }
Guenter Roeck4573acb2012-03-26 16:17:41 -07002042 for (i = 0; i < 3; i++) {
2043 if (!(data->has_temp & (1 << i)))
2044 continue;
2045 sysfs_remove_group(&dev->kobj, &it87_group_temp[i]);
Guenter Roeck161d8982012-12-19 22:17:01 +01002046 if (has_temp_offset(data))
2047 sysfs_remove_file(&dev->kobj,
2048 it87_attributes_temp_offset[i]);
Guenter Roeck4573acb2012-03-26 16:17:41 -07002049 if (sio_data->beep_pin)
2050 sysfs_remove_file(&dev->kobj,
2051 it87_attributes_temp_beep[i]);
2052 }
Jean Delvare723a0aa2010-03-05 22:17:16 +01002053 for (i = 0; i < 5; i++) {
2054 if (!(data->has_fan & (1 << i)))
2055 continue;
Guenter Roecke1169ba2012-12-19 22:17:01 +01002056 sysfs_remove_group(&dev->kobj, &it87_group_fan[i]);
Jean Delvared9b327c2010-03-05 22:17:17 +01002057 if (sio_data->beep_pin)
2058 sysfs_remove_file(&dev->kobj,
2059 it87_attributes_fan_beep[i]);
Guenter Roecke1169ba2012-12-19 22:17:01 +01002060 if (i < 3 && !has_16bit_fans(data))
2061 sysfs_remove_file(&dev->kobj,
2062 it87_attributes_fan_div[i]);
Jean Delvare723a0aa2010-03-05 22:17:16 +01002063 }
2064 for (i = 0; i < 3; i++) {
2065 if (sio_data->skip_pwm & (1 << 0))
2066 continue;
2067 sysfs_remove_group(&dev->kobj, &it87_group_pwm[i]);
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002068 if (has_old_autopwm(data))
2069 sysfs_remove_group(&dev->kobj,
2070 &it87_group_autopwm[i]);
Jean Delvare723a0aa2010-03-05 22:17:16 +01002071 }
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01002072 if (!sio_data->skip_vid)
2073 sysfs_remove_group(&dev->kobj, &it87_group_vid);
Jean Delvare738e5e02010-08-14 21:08:50 +02002074 sysfs_remove_group(&dev->kobj, &it87_group_label);
Jean Delvare723a0aa2010-03-05 22:17:16 +01002075}
2076
Bill Pemberton6c931ae2012-11-19 13:22:35 -05002077static int it87_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 struct it87_data *data;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002080 struct resource *res;
2081 struct device *dev = &pdev->dev;
Jingoo Hana8b3a3a2013-07-30 17:13:06 +09002082 struct it87_sio_data *sio_data = dev_get_platdata(dev);
Jean Delvare723a0aa2010-03-05 22:17:16 +01002083 int err = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 int enable_pwm_interface;
Jean Delvared9b327c2010-03-05 22:17:17 +01002085 int fan_beep_need_rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002087 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
Guenter Roeck62a1d052012-03-24 21:54:41 -07002088 if (!devm_request_region(&pdev->dev, res->start, IT87_EC_EXTENT,
2089 DRVNAME)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002090 dev_err(dev, "Failed to request region 0x%lx-0x%lx\n",
2091 (unsigned long)res->start,
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05002092 (unsigned long)(res->start + IT87_EC_EXTENT - 1));
Guenter Roeck62a1d052012-03-24 21:54:41 -07002093 return -EBUSY;
Jean Delvare8e9afcb2006-12-12 18:18:28 +01002094 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
Guenter Roeck62a1d052012-03-24 21:54:41 -07002096 data = devm_kzalloc(&pdev->dev, sizeof(struct it87_data), GFP_KERNEL);
2097 if (!data)
2098 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002100 data->addr = res->start;
2101 data->type = sio_data->type;
Guenter Roeck483db432012-12-19 22:17:02 +01002102 data->features = it87_devices[sio_data->type].features;
Guenter Roeck5d8d2f22012-12-19 22:17:02 +01002103 data->peci_mask = it87_devices[sio_data->type].peci_mask;
Guenter Roeck19529782012-12-19 22:17:02 +01002104 data->old_peci_mask = it87_devices[sio_data->type].old_peci_mask;
Guenter Roeck483db432012-12-19 22:17:02 +01002105 data->name = it87_devices[sio_data->type].name;
2106 /*
2107 * IT8705F Datasheet 0.4.1, 3h == Version G.
2108 * IT8712F Datasheet 0.9.1, section 8.3.5 indicates 8h == Version J.
2109 * These are the first revisions with 16-bit tachometer support.
2110 */
2111 switch (data->type) {
2112 case it87:
2113 if (sio_data->revision >= 0x03) {
2114 data->features &= ~FEAT_OLD_AUTOPWM;
2115 data->features |= FEAT_16BIT_FANS;
2116 }
2117 break;
2118 case it8712:
2119 if (sio_data->revision >= 0x08) {
2120 data->features &= ~FEAT_OLD_AUTOPWM;
2121 data->features |= FEAT_16BIT_FANS;
2122 }
2123 break;
2124 default:
2125 break;
2126 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
2128 /* Now, we do the remaining detection. */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002129 if ((it87_read_value(data, IT87_REG_CONFIG) & 0x80)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002130 || it87_read_value(data, IT87_REG_CHIPID) != 0x90)
2131 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002133 platform_set_drvdata(pdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
Ingo Molnar9a61bf62006-01-18 23:19:26 +01002135 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 /* Check PWM configuration */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002138 enable_pwm_interface = it87_check_pwm(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002140 /* Starting with IT8721F, we handle scaling of internal voltages */
Jean Delvare16b5dda2012-01-16 22:51:48 +01002141 if (has_12mv_adc(data)) {
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002142 if (sio_data->internal & (1 << 0))
2143 data->in_scaled |= (1 << 3); /* in3 is AVCC */
2144 if (sio_data->internal & (1 << 1))
2145 data->in_scaled |= (1 << 7); /* in7 is VSB */
2146 if (sio_data->internal & (1 << 2))
2147 data->in_scaled |= (1 << 8); /* in8 is Vbat */
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002148 if (sio_data->internal & (1 << 3))
2149 data->in_scaled |= (1 << 9); /* in9 is AVCC */
Guenter Roeck0531d982012-03-02 11:46:44 -08002150 } else if (sio_data->type == it8782 || sio_data->type == it8783) {
2151 if (sio_data->internal & (1 << 0))
2152 data->in_scaled |= (1 << 3); /* in3 is VCC5V */
2153 if (sio_data->internal & (1 << 1))
2154 data->in_scaled |= (1 << 7); /* in7 is VCCH5V */
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002155 }
2156
Guenter Roeck4573acb2012-03-26 16:17:41 -07002157 data->has_temp = 0x07;
2158 if (sio_data->skip_temp & (1 << 2)) {
2159 if (sio_data->type == it8782
2160 && !(it87_read_value(data, IT87_REG_TEMP_EXTRA) & 0x80))
2161 data->has_temp &= ~(1 << 2);
2162 }
2163
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 /* Initialize the IT87 chip */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002165 it87_init_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
2167 /* Register sysfs hooks */
Jean Delvare5f2dc792010-03-05 22:17:18 +01002168 err = sysfs_create_group(&dev->kobj, &it87_group);
2169 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002170 return err;
Jean Delvare17d648b2006-08-28 14:23:46 +02002171
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002172 for (i = 0; i < 10; i++) {
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002173 if (sio_data->skip_in & (1 << i))
2174 continue;
2175 err = sysfs_create_group(&dev->kobj, &it87_group_in[i]);
2176 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002177 goto error;
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002178 if (sio_data->beep_pin && it87_attributes_in_beep[i]) {
2179 err = sysfs_create_file(&dev->kobj,
2180 it87_attributes_in_beep[i]);
2181 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002182 goto error;
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002183 }
2184 }
2185
Guenter Roeck4573acb2012-03-26 16:17:41 -07002186 for (i = 0; i < 3; i++) {
2187 if (!(data->has_temp & (1 << i)))
2188 continue;
2189 err = sysfs_create_group(&dev->kobj, &it87_group_temp[i]);
Jean Delvared9b327c2010-03-05 22:17:17 +01002190 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002191 goto error;
Guenter Roeck161d8982012-12-19 22:17:01 +01002192 if (has_temp_offset(data)) {
2193 err = sysfs_create_file(&dev->kobj,
2194 it87_attributes_temp_offset[i]);
2195 if (err)
2196 goto error;
2197 }
Guenter Roeck4573acb2012-03-26 16:17:41 -07002198 if (sio_data->beep_pin) {
2199 err = sysfs_create_file(&dev->kobj,
2200 it87_attributes_temp_beep[i]);
2201 if (err)
2202 goto error;
2203 }
Jean Delvared9b327c2010-03-05 22:17:17 +01002204 }
2205
Jean Delvare9060f8b2006-08-28 14:24:17 +02002206 /* Do not create fan files for disabled fans */
Jean Delvared9b327c2010-03-05 22:17:17 +01002207 fan_beep_need_rw = 1;
Jean Delvare723a0aa2010-03-05 22:17:16 +01002208 for (i = 0; i < 5; i++) {
2209 if (!(data->has_fan & (1 << i)))
2210 continue;
Guenter Roecke1169ba2012-12-19 22:17:01 +01002211 err = sysfs_create_group(&dev->kobj, &it87_group_fan[i]);
Jean Delvare723a0aa2010-03-05 22:17:16 +01002212 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002213 goto error;
Jean Delvared9b327c2010-03-05 22:17:17 +01002214
Guenter Roecke1169ba2012-12-19 22:17:01 +01002215 if (i < 3 && !has_16bit_fans(data)) {
2216 err = sysfs_create_file(&dev->kobj,
2217 it87_attributes_fan_div[i]);
2218 if (err)
2219 goto error;
2220 }
2221
Jean Delvared9b327c2010-03-05 22:17:17 +01002222 if (sio_data->beep_pin) {
2223 err = sysfs_create_file(&dev->kobj,
2224 it87_attributes_fan_beep[i]);
2225 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002226 goto error;
Jean Delvared9b327c2010-03-05 22:17:17 +01002227 if (!fan_beep_need_rw)
2228 continue;
2229
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002230 /*
2231 * As we have a single beep enable bit for all fans,
Jean Delvared9b327c2010-03-05 22:17:17 +01002232 * only the first enabled fan has a writable attribute
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002233 * for it.
2234 */
Jean Delvared9b327c2010-03-05 22:17:17 +01002235 if (sysfs_chmod_file(&dev->kobj,
2236 it87_attributes_fan_beep[i],
2237 S_IRUGO | S_IWUSR))
2238 dev_dbg(dev, "chmod +w fan%d_beep failed\n",
2239 i + 1);
2240 fan_beep_need_rw = 0;
2241 }
Jean Delvare17d648b2006-08-28 14:23:46 +02002242 }
2243
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 if (enable_pwm_interface) {
Jean Delvare723a0aa2010-03-05 22:17:16 +01002245 for (i = 0; i < 3; i++) {
2246 if (sio_data->skip_pwm & (1 << i))
2247 continue;
2248 err = sysfs_create_group(&dev->kobj,
2249 &it87_group_pwm[i]);
2250 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002251 goto error;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002252
2253 if (!has_old_autopwm(data))
2254 continue;
2255 err = sysfs_create_group(&dev->kobj,
2256 &it87_group_autopwm[i]);
2257 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002258 goto error;
Jean Delvare98dd22c2008-10-09 15:33:58 +02002259 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 }
2261
Jean Delvare895ff262009-12-09 20:35:47 +01002262 if (!sio_data->skip_vid) {
Jean Delvare303760b2005-07-31 21:52:01 +02002263 data->vrm = vid_which_vrm();
Jean Delvare87673dd2006-08-28 14:37:19 +02002264 /* VID reading from Super-I/O config space if available */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002265 data->vid = sio_data->vid_value;
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01002266 err = sysfs_create_group(&dev->kobj, &it87_group_vid);
2267 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002268 goto error;
Jean Delvare87808be2006-09-24 21:17:13 +02002269 }
2270
Jean Delvare738e5e02010-08-14 21:08:50 +02002271 /* Export labels for internal sensors */
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002272 for (i = 0; i < 4; i++) {
Jean Delvare738e5e02010-08-14 21:08:50 +02002273 if (!(sio_data->internal & (1 << i)))
2274 continue;
2275 err = sysfs_create_file(&dev->kobj,
2276 it87_attributes_label[i]);
2277 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002278 goto error;
Jean Delvare738e5e02010-08-14 21:08:50 +02002279 }
2280
Tony Jones1beeffe2007-08-20 13:46:20 -07002281 data->hwmon_dev = hwmon_device_register(dev);
2282 if (IS_ERR(data->hwmon_dev)) {
2283 err = PTR_ERR(data->hwmon_dev);
Guenter Roeck62a1d052012-03-24 21:54:41 -07002284 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 }
2286
2287 return 0;
2288
Guenter Roeck62a1d052012-03-24 21:54:41 -07002289error:
Jean Delvare723a0aa2010-03-05 22:17:16 +01002290 it87_remove_files(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 return err;
2292}
2293
Bill Pemberton281dfd02012-11-19 13:25:51 -05002294static int it87_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002296 struct it87_data *data = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
Tony Jones1beeffe2007-08-20 13:46:20 -07002298 hwmon_device_unregister(data->hwmon_dev);
Jean Delvare723a0aa2010-03-05 22:17:16 +01002299 it87_remove_files(&pdev->dev);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04002300
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 return 0;
2302}
2303
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002304/*
2305 * Must be called with data->update_lock held, except during initialization.
2306 * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
2307 * would slow down the IT87 access and should not be necessary.
2308 */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002309static int it87_read_value(struct it87_data *data, u8 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002311 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
2312 return inb_p(data->addr + IT87_DATA_REG_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313}
2314
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002315/*
2316 * Must be called with data->update_lock held, except during initialization.
2317 * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
2318 * would slow down the IT87 access and should not be necessary.
2319 */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002320static void it87_write_value(struct it87_data *data, u8 reg, u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002322 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
2323 outb_p(value, data->addr + IT87_DATA_REG_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324}
2325
2326/* Return 1 if and only if the PWM interface is safe to use */
Bill Pemberton6c931ae2012-11-19 13:22:35 -05002327static int it87_check_pwm(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002329 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002330 /*
2331 * Some BIOSes fail to correctly configure the IT87 fans. All fans off
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 * and polarity set to active low is sign that this is the case so we
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002333 * disable pwm control to protect the user.
2334 */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002335 int tmp = it87_read_value(data, IT87_REG_FAN_CTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 if ((tmp & 0x87) == 0) {
2337 if (fix_pwm_polarity) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002338 /*
2339 * The user asks us to attempt a chip reconfiguration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 * This means switching to active high polarity and
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002341 * inverting all fan speed values.
2342 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 int i;
2344 u8 pwm[3];
2345
2346 for (i = 0; i < 3; i++)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002347 pwm[i] = it87_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 IT87_REG_PWM(i));
2349
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002350 /*
2351 * If any fan is in automatic pwm mode, the polarity
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 * might be correct, as suspicious as it seems, so we
2353 * better don't change anything (but still disable the
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002354 * PWM interface).
2355 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 if (!((pwm[0] | pwm[1] | pwm[2]) & 0x80)) {
Guenter Roeck1d9bcf62012-12-19 22:17:01 +01002357 dev_info(dev,
2358 "Reconfiguring PWM to active high polarity\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002359 it87_write_value(data, IT87_REG_FAN_CTL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 tmp | 0x87);
2361 for (i = 0; i < 3; i++)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002362 it87_write_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 IT87_REG_PWM(i),
2364 0x7f & ~pwm[i]);
2365 return 1;
2366 }
2367
Guenter Roeck1d9bcf62012-12-19 22:17:01 +01002368 dev_info(dev,
2369 "PWM configuration is too broken to be fixed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 }
2371
Guenter Roeck1d9bcf62012-12-19 22:17:01 +01002372 dev_info(dev,
2373 "Detected broken BIOS defaults, disabling PWM interface\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 return 0;
2375 } else if (fix_pwm_polarity) {
Guenter Roeck1d9bcf62012-12-19 22:17:01 +01002376 dev_info(dev,
2377 "PWM configuration looks sane, won't touch\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 }
2379
2380 return 1;
2381}
2382
2383/* Called when we have found a new IT87. */
Bill Pemberton6c931ae2012-11-19 13:22:35 -05002384static void it87_init_device(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385{
Jingoo Hana8b3a3a2013-07-30 17:13:06 +09002386 struct it87_sio_data *sio_data = dev_get_platdata(&pdev->dev);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002387 struct it87_data *data = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 int tmp, i;
Jean Delvare591ec652009-12-09 20:35:48 +01002389 u8 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002391 /*
2392 * For each PWM channel:
Jean Delvareb99883d2010-03-05 22:17:15 +01002393 * - If it is in automatic mode, setting to manual mode should set
2394 * the fan to full speed by default.
2395 * - If it is in manual mode, we need a mapping to temperature
2396 * channels to use when later setting to automatic mode later.
2397 * Use a 1:1 mapping by default (we are clueless.)
2398 * In both cases, the value can (and should) be changed by the user
Jean Delvare6229cdb2010-12-08 16:27:22 +01002399 * prior to switching to a different mode.
2400 * Note that this is no longer needed for the IT8721F and later, as
2401 * these have separate registers for the temperature mapping and the
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002402 * manual duty cycle.
2403 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 for (i = 0; i < 3; i++) {
Jean Delvareb99883d2010-03-05 22:17:15 +01002405 data->pwm_temp_map[i] = i;
2406 data->pwm_duty[i] = 0x7f; /* Full speed */
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002407 data->auto_pwm[i][3] = 0x7f; /* Full speed, hard-coded */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 }
2409
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002410 /*
2411 * Some chips seem to have default value 0xff for all limit
Jean Delvarec5df9b72006-08-28 14:37:54 +02002412 * registers. For low voltage limits it makes no sense and triggers
2413 * alarms, so change to 0 instead. For high temperature limits, it
2414 * means -1 degree C, which surprisingly doesn't trigger an alarm,
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002415 * but is still confusing, so change to 127 degrees C.
2416 */
Jean Delvarec5df9b72006-08-28 14:37:54 +02002417 for (i = 0; i < 8; i++) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002418 tmp = it87_read_value(data, IT87_REG_VIN_MIN(i));
Jean Delvarec5df9b72006-08-28 14:37:54 +02002419 if (tmp == 0xff)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002420 it87_write_value(data, IT87_REG_VIN_MIN(i), 0);
Jean Delvarec5df9b72006-08-28 14:37:54 +02002421 }
2422 for (i = 0; i < 3; i++) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002423 tmp = it87_read_value(data, IT87_REG_TEMP_HIGH(i));
Jean Delvarec5df9b72006-08-28 14:37:54 +02002424 if (tmp == 0xff)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002425 it87_write_value(data, IT87_REG_TEMP_HIGH(i), 127);
Jean Delvarec5df9b72006-08-28 14:37:54 +02002426 }
2427
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002428 /*
2429 * Temperature channels are not forcibly enabled, as they can be
Jean Delvarea00afb92010-04-14 16:14:09 +02002430 * set to two different sensor types and we can't guess which one
2431 * is correct for a given system. These channels can be enabled at
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002432 * run-time through the temp{1-3}_type sysfs accessors if needed.
2433 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434
2435 /* Check if voltage monitors are reset manually or by some reason */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002436 tmp = it87_read_value(data, IT87_REG_VIN_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 if ((tmp & 0xff) == 0) {
2438 /* Enable all voltage monitors */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002439 it87_write_value(data, IT87_REG_VIN_ENABLE, 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 }
2441
2442 /* Check if tachometers are reset manually or by some reason */
Jean Delvare591ec652009-12-09 20:35:48 +01002443 mask = 0x70 & ~(sio_data->skip_fan << 4);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002444 data->fan_main_ctrl = it87_read_value(data, IT87_REG_FAN_MAIN_CTRL);
Jean Delvare591ec652009-12-09 20:35:48 +01002445 if ((data->fan_main_ctrl & mask) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 /* Enable all fan tachometers */
Jean Delvare591ec652009-12-09 20:35:48 +01002447 data->fan_main_ctrl |= mask;
Jean Delvare5f2dc792010-03-05 22:17:18 +01002448 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
2449 data->fan_main_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 }
Jean Delvare9060f8b2006-08-28 14:24:17 +02002451 data->has_fan = (data->fan_main_ctrl >> 4) & 0x07;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002453 /* Set tachometers to 16-bit mode if needed, IT8603E (and IT8728F?)
2454 * has it by default */
2455 if (has_16bit_fans(data) && data->type != it8603) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002456 tmp = it87_read_value(data, IT87_REG_FAN_16BIT);
Jean Delvare9060f8b2006-08-28 14:24:17 +02002457 if (~tmp & 0x07 & data->has_fan) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002458 dev_dbg(&pdev->dev,
Jean Delvare17d648b2006-08-28 14:23:46 +02002459 "Setting fan1-3 to 16-bit mode\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002460 it87_write_value(data, IT87_REG_FAN_16BIT,
Jean Delvare17d648b2006-08-28 14:23:46 +02002461 tmp | 0x07);
2462 }
Guenter Roeck0531d982012-03-02 11:46:44 -08002463 /* IT8705F, IT8782F, and IT8783E/F only support three fans. */
2464 if (data->type != it87 && data->type != it8782 &&
2465 data->type != it8783) {
Andrew Paprocki816d8c62008-08-06 22:41:06 +02002466 if (tmp & (1 << 4))
2467 data->has_fan |= (1 << 3); /* fan4 enabled */
2468 if (tmp & (1 << 5))
2469 data->has_fan |= (1 << 4); /* fan5 enabled */
2470 }
Jean Delvare17d648b2006-08-28 14:23:46 +02002471 }
2472
Jean Delvare591ec652009-12-09 20:35:48 +01002473 /* Fan input pins may be used for alternative functions */
2474 data->has_fan &= ~sio_data->skip_fan;
2475
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 /* Start monitoring */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002477 it87_write_value(data, IT87_REG_CONFIG,
Jean Delvare41002f82012-07-12 22:47:37 +02002478 (it87_read_value(data, IT87_REG_CONFIG) & 0x3e)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 | (update_vbat ? 0x41 : 0x01));
2480}
2481
Jean Delvareb99883d2010-03-05 22:17:15 +01002482static void it87_update_pwm_ctrl(struct it87_data *data, int nr)
2483{
2484 data->pwm_ctrl[nr] = it87_read_value(data, IT87_REG_PWM(nr));
Jean Delvare16b5dda2012-01-16 22:51:48 +01002485 if (has_newer_autopwm(data)) {
Jean Delvareb99883d2010-03-05 22:17:15 +01002486 data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03;
Jean Delvare6229cdb2010-12-08 16:27:22 +01002487 data->pwm_duty[nr] = it87_read_value(data,
2488 IT87_REG_PWM_DUTY(nr));
2489 } else {
2490 if (data->pwm_ctrl[nr] & 0x80) /* Automatic mode */
2491 data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03;
2492 else /* Manual mode */
2493 data->pwm_duty[nr] = data->pwm_ctrl[nr] & 0x7f;
2494 }
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002495
2496 if (has_old_autopwm(data)) {
2497 int i;
2498
2499 for (i = 0; i < 5 ; i++)
2500 data->auto_temp[nr][i] = it87_read_value(data,
2501 IT87_REG_AUTO_TEMP(nr, i));
2502 for (i = 0; i < 3 ; i++)
2503 data->auto_pwm[nr][i] = it87_read_value(data,
2504 IT87_REG_AUTO_PWM(nr, i));
2505 }
Jean Delvareb99883d2010-03-05 22:17:15 +01002506}
2507
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508static struct it87_data *it87_update_device(struct device *dev)
2509{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002510 struct it87_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 int i;
2512
Ingo Molnar9a61bf62006-01-18 23:19:26 +01002513 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
2515 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
2516 || !data->valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 if (update_vbat) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002518 /*
2519 * Cleared after each update, so reenable. Value
2520 * returned by this read will be previous value
2521 */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002522 it87_write_value(data, IT87_REG_CONFIG,
Jean Delvare5f2dc792010-03-05 22:17:18 +01002523 it87_read_value(data, IT87_REG_CONFIG) | 0x40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 }
2525 for (i = 0; i <= 7; i++) {
Guenter Roeck929c6a52012-12-19 22:17:00 +01002526 data->in[i][0] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002527 it87_read_value(data, IT87_REG_VIN(i));
Guenter Roeck929c6a52012-12-19 22:17:00 +01002528 data->in[i][1] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002529 it87_read_value(data, IT87_REG_VIN_MIN(i));
Guenter Roeck929c6a52012-12-19 22:17:00 +01002530 data->in[i][2] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002531 it87_read_value(data, IT87_REG_VIN_MAX(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 }
Jean Delvare3543a532006-08-28 14:27:25 +02002533 /* in8 (battery) has no limit registers */
Guenter Roeck929c6a52012-12-19 22:17:00 +01002534 data->in[8][0] = it87_read_value(data, IT87_REG_VIN(8));
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002535 if (data->type == it8603)
2536 data->in[9][0] = it87_read_value(data, 0x2f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537
Jean Delvarec7f1f712007-09-03 17:11:46 +02002538 for (i = 0; i < 5; i++) {
Jean Delvare9060f8b2006-08-28 14:24:17 +02002539 /* Skip disabled fans */
2540 if (!(data->has_fan & (1 << i)))
2541 continue;
2542
Guenter Roecke1169ba2012-12-19 22:17:01 +01002543 data->fan[i][1] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002544 it87_read_value(data, IT87_REG_FAN_MIN[i]);
Guenter Roecke1169ba2012-12-19 22:17:01 +01002545 data->fan[i][0] = it87_read_value(data,
Jean Delvarec7f1f712007-09-03 17:11:46 +02002546 IT87_REG_FAN[i]);
Jean Delvare17d648b2006-08-28 14:23:46 +02002547 /* Add high byte if in 16-bit mode */
Andrew Paprocki04751692008-08-06 22:41:06 +02002548 if (has_16bit_fans(data)) {
Guenter Roecke1169ba2012-12-19 22:17:01 +01002549 data->fan[i][0] |= it87_read_value(data,
Jean Delvarec7f1f712007-09-03 17:11:46 +02002550 IT87_REG_FANX[i]) << 8;
Guenter Roecke1169ba2012-12-19 22:17:01 +01002551 data->fan[i][1] |= it87_read_value(data,
Jean Delvarec7f1f712007-09-03 17:11:46 +02002552 IT87_REG_FANX_MIN[i]) << 8;
Jean Delvare17d648b2006-08-28 14:23:46 +02002553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 }
2555 for (i = 0; i < 3; i++) {
Guenter Roeck4573acb2012-03-26 16:17:41 -07002556 if (!(data->has_temp & (1 << i)))
2557 continue;
Guenter Roeck60ca3852012-12-19 22:17:00 +01002558 data->temp[i][0] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002559 it87_read_value(data, IT87_REG_TEMP(i));
Guenter Roeck60ca3852012-12-19 22:17:00 +01002560 data->temp[i][1] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002561 it87_read_value(data, IT87_REG_TEMP_LOW(i));
Guenter Roeck60ca3852012-12-19 22:17:00 +01002562 data->temp[i][2] =
2563 it87_read_value(data, IT87_REG_TEMP_HIGH(i));
Guenter Roeck161d8982012-12-19 22:17:01 +01002564 if (has_temp_offset(data))
2565 data->temp[i][3] =
2566 it87_read_value(data,
2567 IT87_REG_TEMP_OFFSET[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 }
2569
Jean Delvare17d648b2006-08-28 14:23:46 +02002570 /* Newer chips don't have clock dividers */
Andrew Paprocki04751692008-08-06 22:41:06 +02002571 if ((data->has_fan & 0x07) && !has_16bit_fans(data)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002572 i = it87_read_value(data, IT87_REG_FAN_DIV);
Jean Delvare17d648b2006-08-28 14:23:46 +02002573 data->fan_div[0] = i & 0x07;
2574 data->fan_div[1] = (i >> 3) & 0x07;
2575 data->fan_div[2] = (i & 0x40) ? 3 : 1;
2576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577
2578 data->alarms =
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002579 it87_read_value(data, IT87_REG_ALARM1) |
2580 (it87_read_value(data, IT87_REG_ALARM2) << 8) |
2581 (it87_read_value(data, IT87_REG_ALARM3) << 16);
Jean Delvared9b327c2010-03-05 22:17:17 +01002582 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
Jean Delvareb99883d2010-03-05 22:17:15 +01002583
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002584 data->fan_main_ctrl = it87_read_value(data,
2585 IT87_REG_FAN_MAIN_CTRL);
2586 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL);
Jean Delvareb99883d2010-03-05 22:17:15 +01002587 for (i = 0; i < 3; i++)
2588 it87_update_pwm_ctrl(data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002590 data->sensor = it87_read_value(data, IT87_REG_TEMP_ENABLE);
Guenter Roeck19529782012-12-19 22:17:02 +01002591 data->extra = it87_read_value(data, IT87_REG_TEMP_EXTRA);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002592 /*
2593 * The IT8705F does not have VID capability.
2594 * The IT8718F and later don't use IT87_REG_VID for the
2595 * same purpose.
2596 */
Jean Delvare17d648b2006-08-28 14:23:46 +02002597 if (data->type == it8712 || data->type == it8716) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002598 data->vid = it87_read_value(data, IT87_REG_VID);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002599 /*
2600 * The older IT8712F revisions had only 5 VID pins,
2601 * but we assume it is always safe to read 6 bits.
2602 */
Jean Delvare17d648b2006-08-28 14:23:46 +02002603 data->vid &= 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 }
2605 data->last_updated = jiffies;
2606 data->valid = 1;
2607 }
2608
Ingo Molnar9a61bf62006-01-18 23:19:26 +01002609 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610
2611 return data;
2612}
2613
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002614static int __init it87_device_add(unsigned short address,
2615 const struct it87_sio_data *sio_data)
2616{
2617 struct resource res = {
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05002618 .start = address + IT87_EC_OFFSET,
2619 .end = address + IT87_EC_OFFSET + IT87_EC_EXTENT - 1,
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002620 .name = DRVNAME,
2621 .flags = IORESOURCE_IO,
2622 };
2623 int err;
2624
Jean Delvareb9acb642009-01-07 16:37:35 +01002625 err = acpi_check_resource_conflict(&res);
2626 if (err)
2627 goto exit;
2628
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002629 pdev = platform_device_alloc(DRVNAME, address);
2630 if (!pdev) {
2631 err = -ENOMEM;
Joe Perchesa8ca1032011-01-12 21:55:10 +01002632 pr_err("Device allocation failed\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002633 goto exit;
2634 }
2635
2636 err = platform_device_add_resources(pdev, &res, 1);
2637 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002638 pr_err("Device resource addition failed (%d)\n", err);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002639 goto exit_device_put;
2640 }
2641
2642 err = platform_device_add_data(pdev, sio_data,
2643 sizeof(struct it87_sio_data));
2644 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002645 pr_err("Platform data allocation failed\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002646 goto exit_device_put;
2647 }
2648
2649 err = platform_device_add(pdev);
2650 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002651 pr_err("Device addition failed (%d)\n", err);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002652 goto exit_device_put;
2653 }
2654
2655 return 0;
2656
2657exit_device_put:
2658 platform_device_put(pdev);
2659exit:
2660 return err;
2661}
2662
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663static int __init sm_it87_init(void)
2664{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002665 int err;
Jean Delvare5f2dc792010-03-05 22:17:18 +01002666 unsigned short isa_address = 0;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002667 struct it87_sio_data sio_data;
Jean Delvarefde09502005-07-19 23:51:07 +02002668
Jean Delvare98dd22c2008-10-09 15:33:58 +02002669 memset(&sio_data, 0, sizeof(struct it87_sio_data));
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002670 err = it87_find(&isa_address, &sio_data);
2671 if (err)
2672 return err;
2673 err = platform_driver_register(&it87_driver);
2674 if (err)
2675 return err;
2676
2677 err = it87_device_add(isa_address, &sio_data);
Jean Delvare5f2dc792010-03-05 22:17:18 +01002678 if (err) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002679 platform_driver_unregister(&it87_driver);
2680 return err;
2681 }
2682
2683 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684}
2685
2686static void __exit sm_it87_exit(void)
2687{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002688 platform_device_unregister(pdev);
2689 platform_driver_unregister(&it87_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690}
2691
2692
Jean Delvare7c81c602014-01-29 20:40:08 +01002693MODULE_AUTHOR("Chris Gauthron, Jean Delvare <jdelvare@suse.de>");
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002694MODULE_DESCRIPTION("IT8705F/IT871xF/IT872xF hardware monitoring driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695module_param(update_vbat, bool, 0);
2696MODULE_PARM_DESC(update_vbat, "Update vbat if set else return powerup value");
2697module_param(fix_pwm_polarity, bool, 0);
Jean Delvare5f2dc792010-03-05 22:17:18 +01002698MODULE_PARM_DESC(fix_pwm_polarity,
2699 "Force PWM polarity to active high (DANGEROUS)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700MODULE_LICENSE("GPL");
2701
2702module_init(sm_it87_init);
2703module_exit(sm_it87_exit);