blob: 1896e26df6347c7b3290fecc1bcd28b51466d754 [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
Guenter Roeck3ba9d972015-02-13 20:13:20 -080014 * IT8620E Super I/O chip w/LPC interface
Rudolf Marek574e9bd2014-04-04 18:01:35 +020015 * IT8623E Super I/O chip w/LPC interface
Rudolf Marekc145d5c2014-01-29 20:40:08 +010016 * IT8705F Super I/O chip w/LPC interface
Jean Delvare5f2dc792010-03-05 22:17:18 +010017 * IT8712F Super I/O chip w/LPC interface
18 * IT8716F Super I/O chip w/LPC interface
19 * IT8718F Super I/O chip w/LPC interface
20 * IT8720F Super I/O chip w/LPC interface
Jean Delvare44c1bcd2010-10-28 20:31:51 +020021 * IT8721F Super I/O chip w/LPC interface
Jean Delvare5f2dc792010-03-05 22:17:18 +010022 * IT8726F Super I/O chip w/LPC interface
Jean Delvare16b5dda2012-01-16 22:51:48 +010023 * IT8728F Super I/O chip w/LPC interface
Justin Maggardead80802015-08-05 12:53:08 -070024 * IT8732F Super I/O chip w/LPC interface
Jean Delvare44c1bcd2010-10-28 20:31:51 +020025 * IT8758E Super I/O chip w/LPC interface
Guenter Roeckb0636702012-09-07 17:34:41 -060026 * IT8771E Super I/O chip w/LPC interface
27 * IT8772E Super I/O chip w/LPC interface
Guenter Roeck7bc32d22015-01-17 14:10:24 -080028 * IT8781F Super I/O chip w/LPC interface
Guenter Roeck0531d982012-03-02 11:46:44 -080029 * IT8782F Super I/O chip w/LPC interface
30 * IT8783E/F Super I/O chip w/LPC interface
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +010031 * IT8786E Super I/O chip w/LPC interface
Guenter Roeck4ee07152015-03-25 23:26:28 -070032 * IT8790E Super I/O chip w/LPC interface
Jean Delvare5f2dc792010-03-05 22:17:18 +010033 * Sis950 A clone of the IT8705F
34 *
35 * Copyright (C) 2001 Chris Gauthron
Jean Delvare7c81c602014-01-29 20:40:08 +010036 * Copyright (C) 2005-2010 Jean Delvare <jdelvare@suse.de>
Jean Delvare5f2dc792010-03-05 22:17:18 +010037 *
38 * This program is free software; you can redistribute it and/or modify
39 * it under the terms of the GNU General Public License as published by
40 * the Free Software Foundation; either version 2 of the License, or
41 * (at your option) any later version.
42 *
43 * This program is distributed in the hope that it will be useful,
44 * but WITHOUT ANY WARRANTY; without even the implied warranty of
45 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
46 * GNU General Public License for more details.
47 *
48 * You should have received a copy of the GNU General Public License
49 * along with this program; if not, write to the Free Software
50 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
51 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Joe Perchesa8ca1032011-01-12 21:55:10 +010053#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/module.h>
56#include <linux/init.h>
57#include <linux/slab.h>
58#include <linux/jiffies.h>
corentin.labbeb74f3fd2007-06-13 20:27:36 +020059#include <linux/platform_device.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040060#include <linux/hwmon.h>
Jean Delvare303760b2005-07-31 21:52:01 +020061#include <linux/hwmon-sysfs.h>
62#include <linux/hwmon-vid.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040063#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010064#include <linux/mutex.h>
Jean Delvare87808be2006-09-24 21:17:13 +020065#include <linux/sysfs.h>
Jean Delvare98dd22c2008-10-09 15:33:58 +020066#include <linux/string.h>
67#include <linux/dmi.h>
Jean Delvareb9acb642009-01-07 16:37:35 +010068#include <linux/acpi.h>
H Hartley Sweeten6055fae2009-09-15 17:18:13 +020069#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
corentin.labbeb74f3fd2007-06-13 20:27:36 +020071#define DRVNAME "it87"
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Justin Maggardead80802015-08-05 12:53:08 -070073enum chips { it87, it8712, it8716, it8718, it8720, it8721, it8728, it8732,
74 it8771, it8772, it8781, it8782, it8783, it8786, it8790, it8603,
75 it8620 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Jean Delvare67b671b2007-12-06 23:13:42 +010077static unsigned short force_id;
78module_param(force_id, ushort, 0);
79MODULE_PARM_DESC(force_id, "Override the detected device ID");
80
corentin.labbeb74f3fd2007-06-13 20:27:36 +020081static struct platform_device *pdev;
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#define REG 0x2e /* The register to read/write */
84#define DEV 0x07 /* Register: Logical device select */
85#define VAL 0x2f /* The value to read/write */
86#define PME 0x04 /* The device with the fan registers in it */
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +010087
88/* The device with the IT8718F/IT8720F VID value in it */
89#define GPIO 0x07
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#define DEVID 0x20 /* Register: Device ID */
92#define DEVREV 0x22 /* Register: Device Revision */
93
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +020094static inline int superio_inb(int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
96 outb(reg, REG);
97 return inb(VAL);
98}
99
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200100static inline void superio_outb(int reg, int val)
Jean Delvare436cad22010-07-09 16:22:48 +0200101{
102 outb(reg, REG);
103 outb(val, VAL);
104}
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106static int superio_inw(int reg)
107{
108 int val;
109 outb(reg++, REG);
110 val = inb(VAL) << 8;
111 outb(reg, REG);
112 val |= inb(VAL);
113 return val;
114}
115
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200116static inline void superio_select(int ldn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
118 outb(DEV, REG);
Jean Delvare87673dd2006-08-28 14:37:19 +0200119 outb(ldn, VAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200122static inline int superio_enter(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200124 /*
125 * Try to reserve REG and REG + 1 for exclusive access.
126 */
127 if (!request_muxed_region(REG, 2, DRVNAME))
128 return -EBUSY;
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 outb(0x87, REG);
131 outb(0x01, REG);
132 outb(0x55, REG);
133 outb(0x55, REG);
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200134 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200137static inline void superio_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
139 outb(0x02, REG);
140 outb(0x02, VAL);
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200141 release_region(REG, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
Jean Delvare87673dd2006-08-28 14:37:19 +0200144/* Logical device 4 registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145#define IT8712F_DEVID 0x8712
146#define IT8705F_DEVID 0x8705
Jean Delvare17d648b2006-08-28 14:23:46 +0200147#define IT8716F_DEVID 0x8716
Jean Delvare87673dd2006-08-28 14:37:19 +0200148#define IT8718F_DEVID 0x8718
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +0100149#define IT8720F_DEVID 0x8720
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200150#define IT8721F_DEVID 0x8721
Rudolf Marek08a8f6e2007-06-09 10:11:16 -0400151#define IT8726F_DEVID 0x8726
Jean Delvare16b5dda2012-01-16 22:51:48 +0100152#define IT8728F_DEVID 0x8728
Justin Maggardead80802015-08-05 12:53:08 -0700153#define IT8732F_DEVID 0x8732
Guenter Roeckb0636702012-09-07 17:34:41 -0600154#define IT8771E_DEVID 0x8771
155#define IT8772E_DEVID 0x8772
Guenter Roeck7bc32d22015-01-17 14:10:24 -0800156#define IT8781F_DEVID 0x8781
Guenter Roeck0531d982012-03-02 11:46:44 -0800157#define IT8782F_DEVID 0x8782
158#define IT8783E_DEVID 0x8783
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +0100159#define IT8786E_DEVID 0x8786
Guenter Roeck4ee07152015-03-25 23:26:28 -0700160#define IT8790E_DEVID 0x8790
Rudolf Marek7183ae82014-04-04 18:01:35 +0200161#define IT8603E_DEVID 0x8603
Guenter Roeck3ba9d972015-02-13 20:13:20 -0800162#define IT8620E_DEVID 0x8620
Rudolf Marek574e9bd2014-04-04 18:01:35 +0200163#define IT8623E_DEVID 0x8623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164#define IT87_ACT_REG 0x30
165#define IT87_BASE_REG 0x60
166
Jean Delvare87673dd2006-08-28 14:37:19 +0200167/* Logical device 7 registers (IT8712F and later) */
Guenter Roeck0531d982012-03-02 11:46:44 -0800168#define IT87_SIO_GPIO1_REG 0x25
Guenter Roeck3ba9d972015-02-13 20:13:20 -0800169#define IT87_SIO_GPIO2_REG 0x26
Jean Delvare895ff262009-12-09 20:35:47 +0100170#define IT87_SIO_GPIO3_REG 0x27
Jean Delvare591ec652009-12-09 20:35:48 +0100171#define IT87_SIO_GPIO5_REG 0x29
Guenter Roeck0531d982012-03-02 11:46:44 -0800172#define IT87_SIO_PINX1_REG 0x2a /* Pin selection */
Jean Delvare87673dd2006-08-28 14:37:19 +0200173#define IT87_SIO_PINX2_REG 0x2c /* Pin selection */
Guenter Roeck0531d982012-03-02 11:46:44 -0800174#define IT87_SIO_SPI_REG 0xef /* SPI function pin select */
Jean Delvare87673dd2006-08-28 14:37:19 +0200175#define IT87_SIO_VID_REG 0xfc /* VID value */
Jean Delvared9b327c2010-03-05 22:17:17 +0100176#define IT87_SIO_BEEP_PIN_REG 0xf6 /* Beep pin mapping */
Jean Delvare87673dd2006-08-28 14:37:19 +0200177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178/* Update battery voltage after every reading if true */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030179static bool update_vbat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181/* Not all BIOSes properly configure the PWM registers */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030182static bool fix_pwm_polarity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184/* Many IT87 constants specified below */
185
186/* Length of ISA address segment */
187#define IT87_EXTENT 8
188
Bjorn Helgaas87b4b662008-01-22 07:21:03 -0500189/* Length of ISA address segment for Environmental Controller */
190#define IT87_EC_EXTENT 2
191
192/* Offset of EC registers from ISA base address */
193#define IT87_EC_OFFSET 5
194
195/* Where are the ISA address/data registers relative to the EC base address */
196#define IT87_ADDR_REG_OFFSET 0
197#define IT87_DATA_REG_OFFSET 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199/*----- The IT87 registers -----*/
200
201#define IT87_REG_CONFIG 0x00
202
203#define IT87_REG_ALARM1 0x01
204#define IT87_REG_ALARM2 0x02
205#define IT87_REG_ALARM3 0x03
206
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800207/*
208 * The IT8718F and IT8720F have the VID value in a different register, in
209 * Super-I/O configuration space.
210 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211#define IT87_REG_VID 0x0a
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800212/*
213 * The IT8705F and IT8712F earlier than revision 0x08 use register 0x0b
214 * for fan divisors. Later IT8712F revisions must use 16-bit tachometer
215 * mode.
216 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217#define IT87_REG_FAN_DIV 0x0b
Jean Delvare17d648b2006-08-28 14:23:46 +0200218#define IT87_REG_FAN_16BIT 0x0c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220/* Monitors: 9 voltage (0 to 7, battery), 3 temp (1 to 3), 3 fan (1 to 3) */
221
Guenter Roeckfa3f70d2015-03-25 23:15:32 -0700222static const u8 IT87_REG_FAN[] = { 0x0d, 0x0e, 0x0f, 0x80, 0x82, 0x4c };
223static const u8 IT87_REG_FAN_MIN[] = { 0x10, 0x11, 0x12, 0x84, 0x86, 0x4e };
224static const u8 IT87_REG_FANX[] = { 0x18, 0x19, 0x1a, 0x81, 0x83, 0x4d };
225static const u8 IT87_REG_FANX_MIN[] = { 0x1b, 0x1c, 0x1d, 0x85, 0x87, 0x4f };
226static const u8 IT87_REG_TEMP_OFFSET[] = { 0x56, 0x57, 0x59 };
Guenter Roeck161d8982012-12-19 22:17:01 +0100227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228#define IT87_REG_FAN_MAIN_CTRL 0x13
229#define IT87_REG_FAN_CTL 0x14
230#define IT87_REG_PWM(nr) (0x15 + (nr))
Jean Delvare6229cdb2010-12-08 16:27:22 +0100231#define IT87_REG_PWM_DUTY(nr) (0x63 + (nr) * 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233#define IT87_REG_VIN(nr) (0x20 + (nr))
234#define IT87_REG_TEMP(nr) (0x29 + (nr))
235
236#define IT87_REG_VIN_MAX(nr) (0x30 + (nr) * 2)
237#define IT87_REG_VIN_MIN(nr) (0x31 + (nr) * 2)
238#define IT87_REG_TEMP_HIGH(nr) (0x40 + (nr) * 2)
239#define IT87_REG_TEMP_LOW(nr) (0x41 + (nr) * 2)
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241#define IT87_REG_VIN_ENABLE 0x50
242#define IT87_REG_TEMP_ENABLE 0x51
Guenter Roeck4573acb2012-03-26 16:17:41 -0700243#define IT87_REG_TEMP_EXTRA 0x55
Jean Delvared9b327c2010-03-05 22:17:17 +0100244#define IT87_REG_BEEP_ENABLE 0x5c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246#define IT87_REG_CHIPID 0x58
247
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100248#define IT87_REG_AUTO_TEMP(nr, i) (0x60 + (nr) * 8 + (i))
249#define IT87_REG_AUTO_PWM(nr, i) (0x65 + (nr) * 8 + (i))
250
Guenter Roeck483db432012-12-19 22:17:02 +0100251struct it87_devices {
252 const char *name;
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700253 const char * const suffix;
Guenter Roeck483db432012-12-19 22:17:02 +0100254 u16 features;
Guenter Roeck19529782012-12-19 22:17:02 +0100255 u8 peci_mask;
256 u8 old_peci_mask;
Guenter Roeck483db432012-12-19 22:17:02 +0100257};
258
259#define FEAT_12MV_ADC (1 << 0)
260#define FEAT_NEWER_AUTOPWM (1 << 1)
261#define FEAT_OLD_AUTOPWM (1 << 2)
262#define FEAT_16BIT_FANS (1 << 3)
263#define FEAT_TEMP_OFFSET (1 << 4)
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100264#define FEAT_TEMP_PECI (1 << 5)
Guenter Roeck19529782012-12-19 22:17:02 +0100265#define FEAT_TEMP_OLD_PECI (1 << 6)
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800266#define FEAT_FAN16_CONFIG (1 << 7) /* Need to enable 16-bit fans */
267#define FEAT_FIVE_FANS (1 << 8) /* Supports five fans */
Guenter Roeck32dd7c42015-02-12 07:40:23 -0800268#define FEAT_VID (1 << 9) /* Set if chip supports VID */
Guenter Roeck7f5726c2015-03-26 08:49:18 -0700269#define FEAT_IN7_INTERNAL (1 << 10) /* Set if in7 is internal */
Guenter Roeckfa3f70d2015-03-25 23:15:32 -0700270#define FEAT_SIX_FANS (1 << 11) /* Supports six fans */
Justin Maggardead80802015-08-05 12:53:08 -0700271#define FEAT_10_9MV_ADC (1 << 12)
Guenter Roeck483db432012-12-19 22:17:02 +0100272
273static const struct it87_devices it87_devices[] = {
274 [it87] = {
275 .name = "it87",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700276 .suffix = "F",
Guenter Roeck483db432012-12-19 22:17:02 +0100277 .features = FEAT_OLD_AUTOPWM, /* may need to overwrite */
278 },
279 [it8712] = {
280 .name = "it8712",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700281 .suffix = "F",
Guenter Roeck32dd7c42015-02-12 07:40:23 -0800282 .features = FEAT_OLD_AUTOPWM | FEAT_VID,
283 /* may need to overwrite */
Guenter Roeck483db432012-12-19 22:17:02 +0100284 },
285 [it8716] = {
286 .name = "it8716",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700287 .suffix = "F",
Guenter Roeck32dd7c42015-02-12 07:40:23 -0800288 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET | FEAT_VID
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800289 | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS,
Guenter Roeck483db432012-12-19 22:17:02 +0100290 },
291 [it8718] = {
292 .name = "it8718",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700293 .suffix = "F",
Guenter Roeck32dd7c42015-02-12 07:40:23 -0800294 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET | FEAT_VID
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800295 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS,
Guenter Roeck19529782012-12-19 22:17:02 +0100296 .old_peci_mask = 0x4,
Guenter Roeck483db432012-12-19 22:17:02 +0100297 },
298 [it8720] = {
299 .name = "it8720",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700300 .suffix = "F",
Guenter Roeck32dd7c42015-02-12 07:40:23 -0800301 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET | FEAT_VID
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800302 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS,
Guenter Roeck19529782012-12-19 22:17:02 +0100303 .old_peci_mask = 0x4,
Guenter Roeck483db432012-12-19 22:17:02 +0100304 },
305 [it8721] = {
306 .name = "it8721",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700307 .suffix = "F",
Guenter Roeck483db432012-12-19 22:17:02 +0100308 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800309 | FEAT_TEMP_OFFSET | FEAT_TEMP_OLD_PECI | FEAT_TEMP_PECI
Guenter Roeck7f5726c2015-03-26 08:49:18 -0700310 | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS | FEAT_IN7_INTERNAL,
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100311 .peci_mask = 0x05,
Guenter Roeck19529782012-12-19 22:17:02 +0100312 .old_peci_mask = 0x02, /* Actually reports PCH */
Guenter Roeck483db432012-12-19 22:17:02 +0100313 },
314 [it8728] = {
315 .name = "it8728",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700316 .suffix = "F",
Guenter Roeck483db432012-12-19 22:17:02 +0100317 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck7f5726c2015-03-26 08:49:18 -0700318 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_FIVE_FANS
319 | FEAT_IN7_INTERNAL,
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100320 .peci_mask = 0x07,
Guenter Roeck483db432012-12-19 22:17:02 +0100321 },
Justin Maggardead80802015-08-05 12:53:08 -0700322 [it8732] = {
323 .name = "it8732",
324 .suffix = "F",
325 .features = FEAT_NEWER_AUTOPWM | FEAT_16BIT_FANS
326 | FEAT_TEMP_OFFSET | FEAT_TEMP_OLD_PECI | FEAT_TEMP_PECI
327 | FEAT_10_9MV_ADC | FEAT_IN7_INTERNAL,
328 .peci_mask = 0x07,
329 .old_peci_mask = 0x02, /* Actually reports PCH */
330 },
Guenter Roeckb0636702012-09-07 17:34:41 -0600331 [it8771] = {
332 .name = "it8771",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700333 .suffix = "E",
Guenter Roeckb0636702012-09-07 17:34:41 -0600334 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck7f5726c2015-03-26 08:49:18 -0700335 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL,
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800336 /* PECI: guesswork */
337 /* 12mV ADC (OHM) */
338 /* 16 bit fans (OHM) */
339 /* three fans, always 16 bit (guesswork) */
Guenter Roeckb0636702012-09-07 17:34:41 -0600340 .peci_mask = 0x07,
341 },
342 [it8772] = {
343 .name = "it8772",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700344 .suffix = "E",
Guenter Roeckb0636702012-09-07 17:34:41 -0600345 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck7f5726c2015-03-26 08:49:18 -0700346 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL,
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800347 /* PECI (coreboot) */
348 /* 12mV ADC (HWSensors4, OHM) */
349 /* 16 bit fans (HWSensors4, OHM) */
350 /* three fans, always 16 bit (datasheet) */
Guenter Roeckb0636702012-09-07 17:34:41 -0600351 .peci_mask = 0x07,
352 },
Guenter Roeck7bc32d22015-01-17 14:10:24 -0800353 [it8781] = {
354 .name = "it8781",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700355 .suffix = "F",
Guenter Roeck7bc32d22015-01-17 14:10:24 -0800356 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800357 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG,
Guenter Roeck7bc32d22015-01-17 14:10:24 -0800358 .old_peci_mask = 0x4,
359 },
Guenter Roeck483db432012-12-19 22:17:02 +0100360 [it8782] = {
361 .name = "it8782",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700362 .suffix = "F",
Guenter Roeck19529782012-12-19 22:17:02 +0100363 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800364 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG,
Guenter Roeck19529782012-12-19 22:17:02 +0100365 .old_peci_mask = 0x4,
Guenter Roeck483db432012-12-19 22:17:02 +0100366 },
367 [it8783] = {
368 .name = "it8783",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700369 .suffix = "E/F",
Guenter Roeck19529782012-12-19 22:17:02 +0100370 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800371 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG,
Guenter Roeck19529782012-12-19 22:17:02 +0100372 .old_peci_mask = 0x4,
Guenter Roeck483db432012-12-19 22:17:02 +0100373 },
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +0100374 [it8786] = {
375 .name = "it8786",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700376 .suffix = "E",
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +0100377 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck7f5726c2015-03-26 08:49:18 -0700378 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL,
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +0100379 .peci_mask = 0x07,
380 },
Guenter Roeck4ee07152015-03-25 23:26:28 -0700381 [it8790] = {
382 .name = "it8790",
383 .suffix = "E",
384 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
385 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL,
386 .peci_mask = 0x07,
387 },
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100388 [it8603] = {
389 .name = "it8603",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700390 .suffix = "E",
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100391 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck7f5726c2015-03-26 08:49:18 -0700392 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL,
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100393 .peci_mask = 0x07,
394 },
Guenter Roeck3ba9d972015-02-13 20:13:20 -0800395 [it8620] = {
396 .name = "it8620",
397 .suffix = "E",
398 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeckfa3f70d2015-03-25 23:15:32 -0700399 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_SIX_FANS
Guenter Roeck3ba9d972015-02-13 20:13:20 -0800400 | FEAT_IN7_INTERNAL,
401 .peci_mask = 0x07,
402 },
Guenter Roeck483db432012-12-19 22:17:02 +0100403};
404
405#define has_16bit_fans(data) ((data)->features & FEAT_16BIT_FANS)
406#define has_12mv_adc(data) ((data)->features & FEAT_12MV_ADC)
Justin Maggardead80802015-08-05 12:53:08 -0700407#define has_10_9mv_adc(data) ((data)->features & FEAT_10_9MV_ADC)
Guenter Roeck483db432012-12-19 22:17:02 +0100408#define has_newer_autopwm(data) ((data)->features & FEAT_NEWER_AUTOPWM)
409#define has_old_autopwm(data) ((data)->features & FEAT_OLD_AUTOPWM)
410#define has_temp_offset(data) ((data)->features & FEAT_TEMP_OFFSET)
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100411#define has_temp_peci(data, nr) (((data)->features & FEAT_TEMP_PECI) && \
412 ((data)->peci_mask & (1 << nr)))
Guenter Roeck19529782012-12-19 22:17:02 +0100413#define has_temp_old_peci(data, nr) \
414 (((data)->features & FEAT_TEMP_OLD_PECI) && \
415 ((data)->old_peci_mask & (1 << nr)))
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800416#define has_fan16_config(data) ((data)->features & FEAT_FAN16_CONFIG)
Guenter Roeckfa3f70d2015-03-25 23:15:32 -0700417#define has_five_fans(data) ((data)->features & (FEAT_FIVE_FANS | \
418 FEAT_SIX_FANS))
Guenter Roeck32dd7c42015-02-12 07:40:23 -0800419#define has_vid(data) ((data)->features & FEAT_VID)
Guenter Roeck7f5726c2015-03-26 08:49:18 -0700420#define has_in7_internal(data) ((data)->features & FEAT_IN7_INTERNAL)
Guenter Roeckfa3f70d2015-03-25 23:15:32 -0700421#define has_six_fans(data) ((data)->features & FEAT_SIX_FANS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200423struct it87_sio_data {
424 enum chips type;
425 /* Values read from Super-I/O config space */
Andrew Paprocki04751692008-08-06 22:41:06 +0200426 u8 revision;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200427 u8 vid_value;
Jean Delvared9b327c2010-03-05 22:17:17 +0100428 u8 beep_pin;
Jean Delvare738e5e02010-08-14 21:08:50 +0200429 u8 internal; /* Internal sensors can be labeled */
Jean Delvare591ec652009-12-09 20:35:48 +0100430 /* Features skipped based on config or DMI */
Guenter Roeck9172b5d2012-03-24 21:49:54 -0700431 u16 skip_in;
Jean Delvare895ff262009-12-09 20:35:47 +0100432 u8 skip_vid;
Jean Delvare591ec652009-12-09 20:35:48 +0100433 u8 skip_fan;
Jean Delvare98dd22c2008-10-09 15:33:58 +0200434 u8 skip_pwm;
Guenter Roeck4573acb2012-03-26 16:17:41 -0700435 u8 skip_temp;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200436};
437
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800438/*
439 * For each registered chip, we need to keep some data in memory.
440 * The structure is dynamically allocated.
441 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442struct it87_data {
Tony Jones1beeffe2007-08-20 13:46:20 -0700443 struct device *hwmon_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 enum chips type;
Guenter Roeck483db432012-12-19 22:17:02 +0100445 u16 features;
Guenter Roeck19529782012-12-19 22:17:02 +0100446 u8 peci_mask;
447 u8 old_peci_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200449 unsigned short addr;
450 const char *name;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100451 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 char valid; /* !=0 if following fields are valid */
453 unsigned long last_updated; /* In jiffies */
454
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200455 u16 in_scaled; /* Internal voltage sensors are scaled */
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100456 u8 in[10][3]; /* [nr][0]=in, [1]=min, [2]=max */
Jean Delvare9060f8b2006-08-28 14:24:17 +0200457 u8 has_fan; /* Bitfield, fans enabled */
Guenter Roeckfa3f70d2015-03-25 23:15:32 -0700458 u16 fan[6][2]; /* Register values, [nr][0]=fan, [1]=min */
Guenter Roeck4573acb2012-03-26 16:17:41 -0700459 u8 has_temp; /* Bitfield, temp sensors enabled */
Guenter Roeck161d8982012-12-19 22:17:01 +0100460 s8 temp[3][4]; /* [nr][0]=temp, [1]=min, [2]=max, [3]=offset */
Guenter Roeck19529782012-12-19 22:17:02 +0100461 u8 sensor; /* Register value (IT87_REG_TEMP_ENABLE) */
462 u8 extra; /* Register value (IT87_REG_TEMP_EXTRA) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 u8 fan_div[3]; /* Register encoding, shifted right */
464 u8 vid; /* Register encoding, combined */
Jean Delvarea7be58a2005-12-18 16:40:14 +0100465 u8 vrm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 u32 alarms; /* Register encoding, combined */
Jean Delvared9b327c2010-03-05 22:17:17 +0100467 u8 beeps; /* Register encoding */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 u8 fan_main_ctrl; /* Register value */
Jean Delvaref8d0c192007-02-14 21:15:02 +0100469 u8 fan_ctl; /* Register value */
Jean Delvareb99883d2010-03-05 22:17:15 +0100470
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800471 /*
472 * The following 3 arrays correspond to the same registers up to
Jean Delvare6229cdb2010-12-08 16:27:22 +0100473 * the IT8720F. The meaning of bits 6-0 depends on the value of bit
474 * 7, and we want to preserve settings on mode changes, so we have
475 * to track all values separately.
476 * Starting with the IT8721F, the manual PWM duty cycles are stored
477 * in separate registers (8-bit values), so the separate tracking
478 * is no longer needed, but it is still done to keep the driver
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800479 * simple.
480 */
Jean Delvareb99883d2010-03-05 22:17:15 +0100481 u8 pwm_ctrl[3]; /* Register value */
Jean Delvare6229cdb2010-12-08 16:27:22 +0100482 u8 pwm_duty[3]; /* Manual PWM value set by user */
Jean Delvareb99883d2010-03-05 22:17:15 +0100483 u8 pwm_temp_map[3]; /* PWM to temp. chan. mapping (bits 1-0) */
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100484
485 /* Automatic fan speed control registers */
486 u8 auto_pwm[3][4]; /* [nr][3] is hard-coded */
487 s8 auto_temp[3][5]; /* [nr][0] is point1_temp_hyst */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488};
489
Guenter Roeck0531d982012-03-02 11:46:44 -0800490static int adc_lsb(const struct it87_data *data, int nr)
491{
Justin Maggardead80802015-08-05 12:53:08 -0700492 int lsb;
493
494 if (has_12mv_adc(data))
495 lsb = 120;
496 else if (has_10_9mv_adc(data))
497 lsb = 109;
498 else
499 lsb = 160;
Guenter Roeck0531d982012-03-02 11:46:44 -0800500 if (data->in_scaled & (1 << nr))
501 lsb <<= 1;
502 return lsb;
503}
504
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200505static u8 in_to_reg(const struct it87_data *data, int nr, long val)
506{
Justin Maggardead80802015-08-05 12:53:08 -0700507 val = DIV_ROUND_CLOSEST(val * 10, adc_lsb(data, nr));
Guenter Roeck2a844c12013-01-09 08:09:34 -0800508 return clamp_val(val, 0, 255);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200509}
510
511static int in_from_reg(const struct it87_data *data, int nr, int val)
512{
Justin Maggardead80802015-08-05 12:53:08 -0700513 return DIV_ROUND_CLOSEST(val * adc_lsb(data, nr), 10);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200514}
Jean Delvare0df6454d2010-10-28 20:31:51 +0200515
516static inline u8 FAN_TO_REG(long rpm, int div)
517{
518 if (rpm == 0)
519 return 255;
Guenter Roeck2a844c12013-01-09 08:09:34 -0800520 rpm = clamp_val(rpm, 1, 1000000);
521 return clamp_val((1350000 + rpm * div / 2) / (rpm * div), 1, 254);
Jean Delvare0df6454d2010-10-28 20:31:51 +0200522}
523
524static inline u16 FAN16_TO_REG(long rpm)
525{
526 if (rpm == 0)
527 return 0xffff;
Guenter Roeck2a844c12013-01-09 08:09:34 -0800528 return clamp_val((1350000 + rpm) / (rpm * 2), 1, 0xfffe);
Jean Delvare0df6454d2010-10-28 20:31:51 +0200529}
530
531#define FAN_FROM_REG(val, div) ((val) == 0 ? -1 : (val) == 255 ? 0 : \
532 1350000 / ((val) * (div)))
533/* The divider is fixed to 2 in 16-bit mode */
534#define FAN16_FROM_REG(val) ((val) == 0 ? -1 : (val) == 0xffff ? 0 : \
535 1350000 / ((val) * 2))
536
Guenter Roeck2a844c12013-01-09 08:09:34 -0800537#define TEMP_TO_REG(val) (clamp_val(((val) < 0 ? (((val) - 500) / 1000) : \
538 ((val) + 500) / 1000), -128, 127))
Jean Delvare0df6454d2010-10-28 20:31:51 +0200539#define TEMP_FROM_REG(val) ((val) * 1000)
540
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200541static u8 pwm_to_reg(const struct it87_data *data, long val)
542{
Jean Delvare16b5dda2012-01-16 22:51:48 +0100543 if (has_newer_autopwm(data))
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200544 return val;
545 else
546 return val >> 1;
547}
548
549static int pwm_from_reg(const struct it87_data *data, u8 reg)
550{
Jean Delvare16b5dda2012-01-16 22:51:48 +0100551 if (has_newer_autopwm(data))
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200552 return reg;
553 else
554 return (reg & 0x7f) << 1;
555}
556
Jean Delvare0df6454d2010-10-28 20:31:51 +0200557
558static int DIV_TO_REG(int val)
559{
560 int answer = 0;
561 while (answer < 7 && (val >>= 1))
562 answer++;
563 return answer;
564}
565#define DIV_FROM_REG(val) (1 << (val))
566
Guenter Roeckf56c9c02015-03-26 20:01:24 -0700567/*
568 * PWM base frequencies. The frequency has to be divided by either 128 or 256,
569 * depending on the chip type, to calculate the actual PWM frequency.
570 *
571 * Some of the chip datasheets suggest a base frequency of 51 kHz instead
572 * of 750 kHz for the slowest base frequency, resulting in a PWM frequency
573 * of 200 Hz. Sometimes both PWM frequency select registers are affected,
574 * sometimes just one. It is unknown if this is a datasheet error or real,
575 * so this is ignored for now.
576 */
Jean Delvare0df6454d2010-10-28 20:31:51 +0200577static const unsigned int pwm_freq[8] = {
Guenter Roeckf56c9c02015-03-26 20:01:24 -0700578 48000000,
579 24000000,
580 12000000,
581 8000000,
582 6000000,
583 3000000,
584 1500000,
585 750000,
Jean Delvare0df6454d2010-10-28 20:31:51 +0200586};
587
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200588static int it87_probe(struct platform_device *pdev);
Bill Pemberton281dfd02012-11-19 13:25:51 -0500589static int it87_remove(struct platform_device *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200591static int it87_read_value(struct it87_data *data, u8 reg);
592static void it87_write_value(struct it87_data *data, u8 reg, u8 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593static struct it87_data *it87_update_device(struct device *dev);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200594static int it87_check_pwm(struct device *dev);
595static void it87_init_device(struct platform_device *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200598static struct platform_driver it87_driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100599 .driver = {
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200600 .name = DRVNAME,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100601 },
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200602 .probe = it87_probe,
Bill Pemberton9e5e9b72012-11-19 13:21:20 -0500603 .remove = it87_remove,
Jean Delvarefde09502005-07-19 23:51:07 +0200604};
605
Jean Delvare20ad93d2005-06-05 11:53:25 +0200606static ssize_t show_in(struct device *dev, struct device_attribute *attr,
Guenter Roeck929c6a52012-12-19 22:17:00 +0100607 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
Guenter Roeck929c6a52012-12-19 22:17:00 +0100609 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
610 int nr = sattr->nr;
611 int index = sattr->index;
Jean Delvare20ad93d2005-06-05 11:53:25 +0200612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 struct it87_data *data = it87_update_device(dev);
Guenter Roeck929c6a52012-12-19 22:17:00 +0100614 return sprintf(buf, "%d\n", in_from_reg(data, nr, data->in[nr][index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615}
616
Guenter Roeck929c6a52012-12-19 22:17:00 +0100617static ssize_t set_in(struct device *dev, struct device_attribute *attr,
618 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619{
Guenter Roeck929c6a52012-12-19 22:17:00 +0100620 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
621 int nr = sattr->nr;
622 int index = sattr->index;
Jean Delvare20ad93d2005-06-05 11:53:25 +0200623
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200624 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100625 unsigned long val;
626
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100627 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100628 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100630 mutex_lock(&data->update_lock);
Guenter Roeck929c6a52012-12-19 22:17:00 +0100631 data->in[nr][index] = in_to_reg(data, nr, val);
632 it87_write_value(data,
633 index == 1 ? IT87_REG_VIN_MIN(nr)
634 : IT87_REG_VIN_MAX(nr),
635 data->in[nr][index]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100636 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return count;
638}
639
Guenter Roeck929c6a52012-12-19 22:17:00 +0100640static SENSOR_DEVICE_ATTR_2(in0_input, S_IRUGO, show_in, NULL, 0, 0);
641static SENSOR_DEVICE_ATTR_2(in0_min, S_IRUGO | S_IWUSR, show_in, set_in,
642 0, 1);
643static SENSOR_DEVICE_ATTR_2(in0_max, S_IRUGO | S_IWUSR, show_in, set_in,
644 0, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Guenter Roeck929c6a52012-12-19 22:17:00 +0100646static SENSOR_DEVICE_ATTR_2(in1_input, S_IRUGO, show_in, NULL, 1, 0);
647static SENSOR_DEVICE_ATTR_2(in1_min, S_IRUGO | S_IWUSR, show_in, set_in,
648 1, 1);
649static SENSOR_DEVICE_ATTR_2(in1_max, S_IRUGO | S_IWUSR, show_in, set_in,
650 1, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Guenter Roeck929c6a52012-12-19 22:17:00 +0100652static SENSOR_DEVICE_ATTR_2(in2_input, S_IRUGO, show_in, NULL, 2, 0);
653static SENSOR_DEVICE_ATTR_2(in2_min, S_IRUGO | S_IWUSR, show_in, set_in,
654 2, 1);
655static SENSOR_DEVICE_ATTR_2(in2_max, S_IRUGO | S_IWUSR, show_in, set_in,
656 2, 2);
657
658static SENSOR_DEVICE_ATTR_2(in3_input, S_IRUGO, show_in, NULL, 3, 0);
659static SENSOR_DEVICE_ATTR_2(in3_min, S_IRUGO | S_IWUSR, show_in, set_in,
660 3, 1);
661static SENSOR_DEVICE_ATTR_2(in3_max, S_IRUGO | S_IWUSR, show_in, set_in,
662 3, 2);
663
664static SENSOR_DEVICE_ATTR_2(in4_input, S_IRUGO, show_in, NULL, 4, 0);
665static SENSOR_DEVICE_ATTR_2(in4_min, S_IRUGO | S_IWUSR, show_in, set_in,
666 4, 1);
667static SENSOR_DEVICE_ATTR_2(in4_max, S_IRUGO | S_IWUSR, show_in, set_in,
668 4, 2);
669
670static SENSOR_DEVICE_ATTR_2(in5_input, S_IRUGO, show_in, NULL, 5, 0);
671static SENSOR_DEVICE_ATTR_2(in5_min, S_IRUGO | S_IWUSR, show_in, set_in,
672 5, 1);
673static SENSOR_DEVICE_ATTR_2(in5_max, S_IRUGO | S_IWUSR, show_in, set_in,
674 5, 2);
675
676static SENSOR_DEVICE_ATTR_2(in6_input, S_IRUGO, show_in, NULL, 6, 0);
677static SENSOR_DEVICE_ATTR_2(in6_min, S_IRUGO | S_IWUSR, show_in, set_in,
678 6, 1);
679static SENSOR_DEVICE_ATTR_2(in6_max, S_IRUGO | S_IWUSR, show_in, set_in,
680 6, 2);
681
682static SENSOR_DEVICE_ATTR_2(in7_input, S_IRUGO, show_in, NULL, 7, 0);
683static SENSOR_DEVICE_ATTR_2(in7_min, S_IRUGO | S_IWUSR, show_in, set_in,
684 7, 1);
685static SENSOR_DEVICE_ATTR_2(in7_max, S_IRUGO | S_IWUSR, show_in, set_in,
686 7, 2);
687
688static SENSOR_DEVICE_ATTR_2(in8_input, S_IRUGO, show_in, NULL, 8, 0);
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100689static SENSOR_DEVICE_ATTR_2(in9_input, S_IRUGO, show_in, NULL, 9, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691/* 3 temperatures */
Jean Delvare20ad93d2005-06-05 11:53:25 +0200692static ssize_t show_temp(struct device *dev, struct device_attribute *attr,
Guenter Roeck60ca3852012-12-19 22:17:00 +0100693 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
Guenter Roeck60ca3852012-12-19 22:17:00 +0100695 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
696 int nr = sattr->nr;
697 int index = sattr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +0200699
Guenter Roeck60ca3852012-12-19 22:17:00 +0100700 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[nr][index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200702
Guenter Roeck60ca3852012-12-19 22:17:00 +0100703static ssize_t set_temp(struct device *dev, struct device_attribute *attr,
704 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
Guenter Roeck60ca3852012-12-19 22:17:00 +0100706 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
707 int nr = sattr->nr;
708 int index = sattr->index;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200709 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100710 long val;
Guenter Roeck161d8982012-12-19 22:17:01 +0100711 u8 reg, regval;
Jean Delvaref5f64502010-03-05 22:17:19 +0100712
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100713 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100714 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100716 mutex_lock(&data->update_lock);
Guenter Roeck161d8982012-12-19 22:17:01 +0100717
718 switch (index) {
719 default:
720 case 1:
721 reg = IT87_REG_TEMP_LOW(nr);
722 break;
723 case 2:
724 reg = IT87_REG_TEMP_HIGH(nr);
725 break;
726 case 3:
727 regval = it87_read_value(data, IT87_REG_BEEP_ENABLE);
728 if (!(regval & 0x80)) {
729 regval |= 0x80;
730 it87_write_value(data, IT87_REG_BEEP_ENABLE, regval);
731 }
732 data->valid = 0;
733 reg = IT87_REG_TEMP_OFFSET[nr];
734 break;
735 }
736
Guenter Roeck60ca3852012-12-19 22:17:00 +0100737 data->temp[nr][index] = TEMP_TO_REG(val);
Guenter Roeck161d8982012-12-19 22:17:01 +0100738 it87_write_value(data, reg, data->temp[nr][index]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100739 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 return count;
741}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200742
Guenter Roeck60ca3852012-12-19 22:17:00 +0100743static SENSOR_DEVICE_ATTR_2(temp1_input, S_IRUGO, show_temp, NULL, 0, 0);
744static SENSOR_DEVICE_ATTR_2(temp1_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
745 0, 1);
746static SENSOR_DEVICE_ATTR_2(temp1_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
747 0, 2);
Guenter Roeck161d8982012-12-19 22:17:01 +0100748static SENSOR_DEVICE_ATTR_2(temp1_offset, S_IRUGO | S_IWUSR, show_temp,
749 set_temp, 0, 3);
Guenter Roeck60ca3852012-12-19 22:17:00 +0100750static SENSOR_DEVICE_ATTR_2(temp2_input, S_IRUGO, show_temp, NULL, 1, 0);
751static SENSOR_DEVICE_ATTR_2(temp2_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
752 1, 1);
753static SENSOR_DEVICE_ATTR_2(temp2_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
754 1, 2);
Guenter Roeck161d8982012-12-19 22:17:01 +0100755static SENSOR_DEVICE_ATTR_2(temp2_offset, S_IRUGO | S_IWUSR, show_temp,
756 set_temp, 1, 3);
Guenter Roeck60ca3852012-12-19 22:17:00 +0100757static SENSOR_DEVICE_ATTR_2(temp3_input, S_IRUGO, show_temp, NULL, 2, 0);
758static SENSOR_DEVICE_ATTR_2(temp3_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
759 2, 1);
760static SENSOR_DEVICE_ATTR_2(temp3_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
761 2, 2);
Guenter Roeck161d8982012-12-19 22:17:01 +0100762static SENSOR_DEVICE_ATTR_2(temp3_offset, S_IRUGO | S_IWUSR, show_temp,
763 set_temp, 2, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Guenter Roeck2cece012012-12-19 22:17:01 +0100765static ssize_t show_temp_type(struct device *dev, struct device_attribute *attr,
766 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200768 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
769 int nr = sensor_attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 struct it87_data *data = it87_update_device(dev);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800771 u8 reg = data->sensor; /* In case value is updated while used */
Guenter Roeck19529782012-12-19 22:17:02 +0100772 u8 extra = data->extra;
Jean Delvare5f2dc792010-03-05 22:17:18 +0100773
Guenter Roeck19529782012-12-19 22:17:02 +0100774 if ((has_temp_peci(data, nr) && (reg >> 6 == nr + 1))
775 || (has_temp_old_peci(data, nr) && (extra & 0x80)))
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100776 return sprintf(buf, "6\n"); /* Intel PECI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 if (reg & (1 << nr))
778 return sprintf(buf, "3\n"); /* thermal diode */
779 if (reg & (8 << nr))
Jean Delvare4ed10772008-10-17 17:51:16 +0200780 return sprintf(buf, "4\n"); /* thermistor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 return sprintf(buf, "0\n"); /* disabled */
782}
Guenter Roeck2cece012012-12-19 22:17:01 +0100783
784static ssize_t set_temp_type(struct device *dev, struct device_attribute *attr,
785 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200787 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
788 int nr = sensor_attr->index;
789
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200790 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100791 long val;
Guenter Roeck19529782012-12-19 22:17:02 +0100792 u8 reg, extra;
Jean Delvaref5f64502010-03-05 22:17:19 +0100793
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100794 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100795 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Jean Delvare8acf07c2010-04-14 16:14:09 +0200797 reg = it87_read_value(data, IT87_REG_TEMP_ENABLE);
798 reg &= ~(1 << nr);
799 reg &= ~(8 << nr);
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100800 if (has_temp_peci(data, nr) && (reg >> 6 == nr + 1 || val == 6))
801 reg &= 0x3f;
Guenter Roeck19529782012-12-19 22:17:02 +0100802 extra = it87_read_value(data, IT87_REG_TEMP_EXTRA);
803 if (has_temp_old_peci(data, nr) && ((extra & 0x80) || val == 6))
804 extra &= 0x7f;
Jean Delvare4ed10772008-10-17 17:51:16 +0200805 if (val == 2) { /* backwards compatibility */
Guenter Roeck1d9bcf62012-12-19 22:17:01 +0100806 dev_warn(dev,
807 "Sensor type 2 is deprecated, please use 4 instead\n");
Jean Delvare4ed10772008-10-17 17:51:16 +0200808 val = 4;
809 }
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100810 /* 3 = thermal diode; 4 = thermistor; 6 = Intel PECI; 0 = disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 if (val == 3)
Jean Delvare8acf07c2010-04-14 16:14:09 +0200812 reg |= 1 << nr;
Jean Delvare4ed10772008-10-17 17:51:16 +0200813 else if (val == 4)
Jean Delvare8acf07c2010-04-14 16:14:09 +0200814 reg |= 8 << nr;
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100815 else if (has_temp_peci(data, nr) && val == 6)
816 reg |= (nr + 1) << 6;
Guenter Roeck19529782012-12-19 22:17:02 +0100817 else if (has_temp_old_peci(data, nr) && val == 6)
818 extra |= 0x80;
Jean Delvare8acf07c2010-04-14 16:14:09 +0200819 else if (val != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 return -EINVAL;
Jean Delvare8acf07c2010-04-14 16:14:09 +0200821
822 mutex_lock(&data->update_lock);
823 data->sensor = reg;
Guenter Roeck19529782012-12-19 22:17:02 +0100824 data->extra = extra;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200825 it87_write_value(data, IT87_REG_TEMP_ENABLE, data->sensor);
Guenter Roeck19529782012-12-19 22:17:02 +0100826 if (has_temp_old_peci(data, nr))
827 it87_write_value(data, IT87_REG_TEMP_EXTRA, data->extra);
Jean Delvare2b3d1d82010-04-14 16:14:10 +0200828 data->valid = 0; /* Force cache refresh */
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100829 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 return count;
831}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Guenter Roeck2cece012012-12-19 22:17:01 +0100833static SENSOR_DEVICE_ATTR(temp1_type, S_IRUGO | S_IWUSR, show_temp_type,
834 set_temp_type, 0);
835static SENSOR_DEVICE_ATTR(temp2_type, S_IRUGO | S_IWUSR, show_temp_type,
836 set_temp_type, 1);
837static SENSOR_DEVICE_ATTR(temp3_type, S_IRUGO | S_IWUSR, show_temp_type,
838 set_temp_type, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840/* 3 Fans */
Jean Delvareb99883d2010-03-05 22:17:15 +0100841
842static int pwm_mode(const struct it87_data *data, int nr)
843{
844 int ctrl = data->fan_main_ctrl & (1 << nr);
845
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100846 if (ctrl == 0 && data->type != it8603) /* Full speed */
Jean Delvareb99883d2010-03-05 22:17:15 +0100847 return 0;
848 if (data->pwm_ctrl[nr] & 0x80) /* Automatic mode */
849 return 2;
850 else /* Manual mode */
851 return 1;
852}
853
Jean Delvare20ad93d2005-06-05 11:53:25 +0200854static ssize_t show_fan(struct device *dev, struct device_attribute *attr,
Guenter Roecke1169ba2012-12-19 22:17:01 +0100855 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
Guenter Roecke1169ba2012-12-19 22:17:01 +0100857 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
858 int nr = sattr->nr;
859 int index = sattr->index;
860 int speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +0200862
Guenter Roecke1169ba2012-12-19 22:17:01 +0100863 speed = has_16bit_fans(data) ?
864 FAN16_FROM_REG(data->fan[nr][index]) :
865 FAN_FROM_REG(data->fan[nr][index],
866 DIV_FROM_REG(data->fan_div[nr]));
867 return sprintf(buf, "%d\n", speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868}
Guenter Roecke1169ba2012-12-19 22:17:01 +0100869
Jean Delvare20ad93d2005-06-05 11:53:25 +0200870static ssize_t show_fan_div(struct device *dev, struct device_attribute *attr,
871 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200873 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
874 int nr = sensor_attr->index;
875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 struct it87_data *data = it87_update_device(dev);
877 return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[nr]));
878}
Jean Delvare5f2dc792010-03-05 22:17:18 +0100879static ssize_t show_pwm_enable(struct device *dev,
880 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200882 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
883 int nr = sensor_attr->index;
884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 struct it87_data *data = it87_update_device(dev);
Jean Delvareb99883d2010-03-05 22:17:15 +0100886 return sprintf(buf, "%d\n", pwm_mode(data, nr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200888static ssize_t show_pwm(struct device *dev, struct device_attribute *attr,
889 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200891 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
892 int nr = sensor_attr->index;
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 struct it87_data *data = it87_update_device(dev);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200895 return sprintf(buf, "%d\n",
896 pwm_from_reg(data, data->pwm_duty[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897}
Jean Delvaref8d0c192007-02-14 21:15:02 +0100898static ssize_t show_pwm_freq(struct device *dev, struct device_attribute *attr,
899 char *buf)
900{
901 struct it87_data *data = it87_update_device(dev);
902 int index = (data->fan_ctl >> 4) & 0x07;
Guenter Roeckf56c9c02015-03-26 20:01:24 -0700903 unsigned int freq;
Jean Delvaref8d0c192007-02-14 21:15:02 +0100904
Guenter Roeckf56c9c02015-03-26 20:01:24 -0700905 freq = pwm_freq[index] / (has_newer_autopwm(data) ? 256 : 128);
906
907 return sprintf(buf, "%u\n", freq);
Jean Delvaref8d0c192007-02-14 21:15:02 +0100908}
Guenter Roecke1169ba2012-12-19 22:17:01 +0100909
910static ssize_t set_fan(struct device *dev, struct device_attribute *attr,
911 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912{
Guenter Roecke1169ba2012-12-19 22:17:01 +0100913 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
914 int nr = sattr->nr;
915 int index = sattr->index;
Jean Delvare20ad93d2005-06-05 11:53:25 +0200916
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200917 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100918 long val;
Jean Delvare7f999aa2007-02-14 21:15:03 +0100919 u8 reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100921 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100922 return -EINVAL;
923
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100924 mutex_lock(&data->update_lock);
Guenter Roecke1169ba2012-12-19 22:17:01 +0100925
926 if (has_16bit_fans(data)) {
927 data->fan[nr][index] = FAN16_TO_REG(val);
928 it87_write_value(data, IT87_REG_FAN_MIN[nr],
929 data->fan[nr][index] & 0xff);
930 it87_write_value(data, IT87_REG_FANX_MIN[nr],
931 data->fan[nr][index] >> 8);
932 } else {
933 reg = it87_read_value(data, IT87_REG_FAN_DIV);
934 switch (nr) {
935 case 0:
936 data->fan_div[nr] = reg & 0x07;
937 break;
938 case 1:
939 data->fan_div[nr] = (reg >> 3) & 0x07;
940 break;
941 case 2:
942 data->fan_div[nr] = (reg & 0x40) ? 3 : 1;
943 break;
944 }
945 data->fan[nr][index] =
946 FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
947 it87_write_value(data, IT87_REG_FAN_MIN[nr],
948 data->fan[nr][index]);
Jean Delvare07eab462005-11-23 15:44:31 -0800949 }
950
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100951 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 return count;
953}
Guenter Roecke1169ba2012-12-19 22:17:01 +0100954
Jean Delvare20ad93d2005-06-05 11:53:25 +0200955static ssize_t set_fan_div(struct device *dev, struct device_attribute *attr,
956 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200958 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
959 int nr = sensor_attr->index;
960
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200961 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100962 unsigned long val;
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200963 int min;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 u8 old;
965
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100966 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100967 return -EINVAL;
968
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100969 mutex_lock(&data->update_lock);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200970 old = it87_read_value(data, IT87_REG_FAN_DIV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200972 /* Save fan min limit */
Guenter Roecke1169ba2012-12-19 22:17:01 +0100973 min = FAN_FROM_REG(data->fan[nr][1], DIV_FROM_REG(data->fan_div[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
975 switch (nr) {
976 case 0:
977 case 1:
978 data->fan_div[nr] = DIV_TO_REG(val);
979 break;
980 case 2:
981 if (val < 8)
982 data->fan_div[nr] = 1;
983 else
984 data->fan_div[nr] = 3;
985 }
986 val = old & 0x80;
987 val |= (data->fan_div[0] & 0x07);
988 val |= (data->fan_div[1] & 0x07) << 3;
989 if (data->fan_div[2] == 3)
990 val |= 0x1 << 6;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200991 it87_write_value(data, IT87_REG_FAN_DIV, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200993 /* Restore fan min limit */
Guenter Roecke1169ba2012-12-19 22:17:01 +0100994 data->fan[nr][1] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
995 it87_write_value(data, IT87_REG_FAN_MIN[nr], data->fan[nr][1]);
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200996
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100997 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 return count;
999}
Jean Delvarecccfc9c2010-03-05 22:17:21 +01001000
1001/* Returns 0 if OK, -EINVAL otherwise */
1002static int check_trip_points(struct device *dev, int nr)
1003{
1004 const struct it87_data *data = dev_get_drvdata(dev);
1005 int i, err = 0;
1006
1007 if (has_old_autopwm(data)) {
1008 for (i = 0; i < 3; i++) {
1009 if (data->auto_temp[nr][i] > data->auto_temp[nr][i + 1])
1010 err = -EINVAL;
1011 }
1012 for (i = 0; i < 2; i++) {
1013 if (data->auto_pwm[nr][i] > data->auto_pwm[nr][i + 1])
1014 err = -EINVAL;
1015 }
1016 }
1017
1018 if (err) {
Guenter Roeck1d9bcf62012-12-19 22:17:01 +01001019 dev_err(dev,
1020 "Inconsistent trip points, not switching to automatic mode\n");
Jean Delvarecccfc9c2010-03-05 22:17:21 +01001021 dev_err(dev, "Adjust the trip points and try again\n");
1022 }
1023 return err;
1024}
1025
Jean Delvare20ad93d2005-06-05 11:53:25 +02001026static ssize_t set_pwm_enable(struct device *dev,
1027 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001029 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1030 int nr = sensor_attr->index;
1031
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001032 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001033 long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001035 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 2)
Jean Delvareb99883d2010-03-05 22:17:15 +01001036 return -EINVAL;
1037
Jean Delvarecccfc9c2010-03-05 22:17:21 +01001038 /* Check trip points before switching to automatic mode */
1039 if (val == 2) {
1040 if (check_trip_points(dev, nr) < 0)
1041 return -EINVAL;
1042 }
1043
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001044 /* IT8603E does not have on/off mode */
1045 if (val == 0 && data->type == it8603)
1046 return -EINVAL;
1047
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001048 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
1050 if (val == 0) {
1051 int tmp;
1052 /* make sure the fan is on when in on/off mode */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001053 tmp = it87_read_value(data, IT87_REG_FAN_CTL);
1054 it87_write_value(data, IT87_REG_FAN_CTL, tmp | (1 << nr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 /* set on/off mode */
1056 data->fan_main_ctrl &= ~(1 << nr);
Jean Delvare5f2dc792010-03-05 22:17:18 +01001057 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
1058 data->fan_main_ctrl);
Jean Delvareb99883d2010-03-05 22:17:15 +01001059 } else {
1060 if (val == 1) /* Manual mode */
Jean Delvare16b5dda2012-01-16 22:51:48 +01001061 data->pwm_ctrl[nr] = has_newer_autopwm(data) ?
Jean Delvare6229cdb2010-12-08 16:27:22 +01001062 data->pwm_temp_map[nr] :
1063 data->pwm_duty[nr];
Jean Delvareb99883d2010-03-05 22:17:15 +01001064 else /* Automatic mode */
1065 data->pwm_ctrl[nr] = 0x80 | data->pwm_temp_map[nr];
1066 it87_write_value(data, IT87_REG_PWM(nr), data->pwm_ctrl[nr]);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001067
1068 if (data->type != it8603) {
1069 /* set SmartGuardian mode */
1070 data->fan_main_ctrl |= (1 << nr);
1071 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
1072 data->fan_main_ctrl);
1073 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 }
1075
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001076 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 return count;
1078}
Jean Delvare20ad93d2005-06-05 11:53:25 +02001079static ssize_t set_pwm(struct device *dev, struct device_attribute *attr,
1080 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001082 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1083 int nr = sensor_attr->index;
1084
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001085 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001086 long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001088 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 return -EINVAL;
1090
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001091 mutex_lock(&data->update_lock);
Jean Delvare16b5dda2012-01-16 22:51:48 +01001092 if (has_newer_autopwm(data)) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001093 /*
1094 * If we are in automatic mode, the PWM duty cycle register
1095 * is read-only so we can't write the value.
1096 */
Jean Delvare6229cdb2010-12-08 16:27:22 +01001097 if (data->pwm_ctrl[nr] & 0x80) {
1098 mutex_unlock(&data->update_lock);
1099 return -EBUSY;
1100 }
1101 data->pwm_duty[nr] = pwm_to_reg(data, val);
1102 it87_write_value(data, IT87_REG_PWM_DUTY(nr),
1103 data->pwm_duty[nr]);
1104 } else {
1105 data->pwm_duty[nr] = pwm_to_reg(data, val);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001106 /*
1107 * If we are in manual mode, write the duty cycle immediately;
1108 * otherwise, just store it for later use.
1109 */
Jean Delvare6229cdb2010-12-08 16:27:22 +01001110 if (!(data->pwm_ctrl[nr] & 0x80)) {
1111 data->pwm_ctrl[nr] = data->pwm_duty[nr];
1112 it87_write_value(data, IT87_REG_PWM(nr),
1113 data->pwm_ctrl[nr]);
1114 }
Jean Delvareb99883d2010-03-05 22:17:15 +01001115 }
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001116 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 return count;
1118}
Jean Delvaref8d0c192007-02-14 21:15:02 +01001119static ssize_t set_pwm_freq(struct device *dev,
1120 struct device_attribute *attr, const char *buf, size_t count)
1121{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001122 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001123 unsigned long val;
Jean Delvaref8d0c192007-02-14 21:15:02 +01001124 int i;
1125
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001126 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001127 return -EINVAL;
1128
Guenter Roeckf56c9c02015-03-26 20:01:24 -07001129 val = clamp_val(val, 0, 1000000);
1130 val *= has_newer_autopwm(data) ? 256 : 128;
1131
Jean Delvaref8d0c192007-02-14 21:15:02 +01001132 /* Search for the nearest available frequency */
1133 for (i = 0; i < 7; i++) {
1134 if (val > (pwm_freq[i] + pwm_freq[i+1]) / 2)
1135 break;
1136 }
1137
1138 mutex_lock(&data->update_lock);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001139 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL) & 0x8f;
Jean Delvaref8d0c192007-02-14 21:15:02 +01001140 data->fan_ctl |= i << 4;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001141 it87_write_value(data, IT87_REG_FAN_CTL, data->fan_ctl);
Jean Delvaref8d0c192007-02-14 21:15:02 +01001142 mutex_unlock(&data->update_lock);
1143
1144 return count;
1145}
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001146static ssize_t show_pwm_temp_map(struct device *dev,
1147 struct device_attribute *attr, char *buf)
1148{
1149 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1150 int nr = sensor_attr->index;
1151
1152 struct it87_data *data = it87_update_device(dev);
1153 int map;
1154
1155 if (data->pwm_temp_map[nr] < 3)
1156 map = 1 << data->pwm_temp_map[nr];
1157 else
1158 map = 0; /* Should never happen */
1159 return sprintf(buf, "%d\n", map);
1160}
1161static ssize_t set_pwm_temp_map(struct device *dev,
1162 struct device_attribute *attr, const char *buf, size_t count)
1163{
1164 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1165 int nr = sensor_attr->index;
1166
1167 struct it87_data *data = dev_get_drvdata(dev);
1168 long val;
1169 u8 reg;
1170
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001171 /*
1172 * This check can go away if we ever support automatic fan speed
1173 * control on newer chips.
1174 */
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001175 if (!has_old_autopwm(data)) {
1176 dev_notice(dev, "Mapping change disabled for safety reasons\n");
1177 return -EINVAL;
1178 }
1179
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001180 if (kstrtol(buf, 10, &val) < 0)
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001181 return -EINVAL;
1182
1183 switch (val) {
1184 case (1 << 0):
1185 reg = 0x00;
1186 break;
1187 case (1 << 1):
1188 reg = 0x01;
1189 break;
1190 case (1 << 2):
1191 reg = 0x02;
1192 break;
1193 default:
1194 return -EINVAL;
1195 }
1196
1197 mutex_lock(&data->update_lock);
1198 data->pwm_temp_map[nr] = reg;
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001199 /*
1200 * If we are in automatic mode, write the temp mapping immediately;
1201 * otherwise, just store it for later use.
1202 */
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001203 if (data->pwm_ctrl[nr] & 0x80) {
1204 data->pwm_ctrl[nr] = 0x80 | data->pwm_temp_map[nr];
1205 it87_write_value(data, IT87_REG_PWM(nr), data->pwm_ctrl[nr]);
1206 }
1207 mutex_unlock(&data->update_lock);
1208 return count;
1209}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001211static ssize_t show_auto_pwm(struct device *dev,
1212 struct device_attribute *attr, char *buf)
1213{
1214 struct it87_data *data = it87_update_device(dev);
1215 struct sensor_device_attribute_2 *sensor_attr =
1216 to_sensor_dev_attr_2(attr);
1217 int nr = sensor_attr->nr;
1218 int point = sensor_attr->index;
1219
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001220 return sprintf(buf, "%d\n",
1221 pwm_from_reg(data, data->auto_pwm[nr][point]));
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001222}
1223
1224static ssize_t set_auto_pwm(struct device *dev,
1225 struct device_attribute *attr, const char *buf, size_t count)
1226{
1227 struct it87_data *data = dev_get_drvdata(dev);
1228 struct sensor_device_attribute_2 *sensor_attr =
1229 to_sensor_dev_attr_2(attr);
1230 int nr = sensor_attr->nr;
1231 int point = sensor_attr->index;
1232 long val;
1233
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001234 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001235 return -EINVAL;
1236
1237 mutex_lock(&data->update_lock);
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001238 data->auto_pwm[nr][point] = pwm_to_reg(data, val);
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001239 it87_write_value(data, IT87_REG_AUTO_PWM(nr, point),
1240 data->auto_pwm[nr][point]);
1241 mutex_unlock(&data->update_lock);
1242 return count;
1243}
1244
1245static ssize_t show_auto_temp(struct device *dev,
1246 struct device_attribute *attr, char *buf)
1247{
1248 struct it87_data *data = it87_update_device(dev);
1249 struct sensor_device_attribute_2 *sensor_attr =
1250 to_sensor_dev_attr_2(attr);
1251 int nr = sensor_attr->nr;
1252 int point = sensor_attr->index;
1253
1254 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->auto_temp[nr][point]));
1255}
1256
1257static ssize_t set_auto_temp(struct device *dev,
1258 struct device_attribute *attr, const char *buf, size_t count)
1259{
1260 struct it87_data *data = dev_get_drvdata(dev);
1261 struct sensor_device_attribute_2 *sensor_attr =
1262 to_sensor_dev_attr_2(attr);
1263 int nr = sensor_attr->nr;
1264 int point = sensor_attr->index;
1265 long val;
1266
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001267 if (kstrtol(buf, 10, &val) < 0 || val < -128000 || val > 127000)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001268 return -EINVAL;
1269
1270 mutex_lock(&data->update_lock);
1271 data->auto_temp[nr][point] = TEMP_TO_REG(val);
1272 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, point),
1273 data->auto_temp[nr][point]);
1274 mutex_unlock(&data->update_lock);
1275 return count;
1276}
1277
Guenter Roecke1169ba2012-12-19 22:17:01 +01001278static SENSOR_DEVICE_ATTR_2(fan1_input, S_IRUGO, show_fan, NULL, 0, 0);
1279static SENSOR_DEVICE_ATTR_2(fan1_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1280 0, 1);
1281static SENSOR_DEVICE_ATTR(fan1_div, S_IRUGO | S_IWUSR, show_fan_div,
1282 set_fan_div, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Guenter Roecke1169ba2012-12-19 22:17:01 +01001284static SENSOR_DEVICE_ATTR_2(fan2_input, S_IRUGO, show_fan, NULL, 1, 0);
1285static SENSOR_DEVICE_ATTR_2(fan2_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1286 1, 1);
1287static SENSOR_DEVICE_ATTR(fan2_div, S_IRUGO | S_IWUSR, show_fan_div,
1288 set_fan_div, 1);
1289
1290static SENSOR_DEVICE_ATTR_2(fan3_input, S_IRUGO, show_fan, NULL, 2, 0);
1291static SENSOR_DEVICE_ATTR_2(fan3_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1292 2, 1);
1293static SENSOR_DEVICE_ATTR(fan3_div, S_IRUGO | S_IWUSR, show_fan_div,
1294 set_fan_div, 2);
1295
1296static SENSOR_DEVICE_ATTR_2(fan4_input, S_IRUGO, show_fan, NULL, 3, 0);
1297static SENSOR_DEVICE_ATTR_2(fan4_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1298 3, 1);
1299
1300static SENSOR_DEVICE_ATTR_2(fan5_input, S_IRUGO, show_fan, NULL, 4, 0);
1301static SENSOR_DEVICE_ATTR_2(fan5_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1302 4, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07001304static SENSOR_DEVICE_ATTR_2(fan6_input, S_IRUGO, show_fan, NULL, 5, 0);
1305static SENSOR_DEVICE_ATTR_2(fan6_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1306 5, 1);
1307
Guenter Roeckc4458db2012-12-19 22:17:02 +01001308static SENSOR_DEVICE_ATTR(pwm1_enable, S_IRUGO | S_IWUSR,
1309 show_pwm_enable, set_pwm_enable, 0);
1310static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 0);
1311static DEVICE_ATTR(pwm1_freq, S_IRUGO | S_IWUSR, show_pwm_freq, set_pwm_freq);
1312static SENSOR_DEVICE_ATTR(pwm1_auto_channels_temp, S_IRUGO | S_IWUSR,
1313 show_pwm_temp_map, set_pwm_temp_map, 0);
1314static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_pwm, S_IRUGO | S_IWUSR,
1315 show_auto_pwm, set_auto_pwm, 0, 0);
1316static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_pwm, S_IRUGO | S_IWUSR,
1317 show_auto_pwm, set_auto_pwm, 0, 1);
1318static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_pwm, S_IRUGO | S_IWUSR,
1319 show_auto_pwm, set_auto_pwm, 0, 2);
1320static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_pwm, S_IRUGO,
1321 show_auto_pwm, NULL, 0, 3);
1322static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp, S_IRUGO | S_IWUSR,
1323 show_auto_temp, set_auto_temp, 0, 1);
1324static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1325 show_auto_temp, set_auto_temp, 0, 0);
1326static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_temp, S_IRUGO | S_IWUSR,
1327 show_auto_temp, set_auto_temp, 0, 2);
1328static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_temp, S_IRUGO | S_IWUSR,
1329 show_auto_temp, set_auto_temp, 0, 3);
1330static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_temp, S_IRUGO | S_IWUSR,
1331 show_auto_temp, set_auto_temp, 0, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Guenter Roeckc4458db2012-12-19 22:17:02 +01001333static SENSOR_DEVICE_ATTR(pwm2_enable, S_IRUGO | S_IWUSR,
1334 show_pwm_enable, set_pwm_enable, 1);
1335static SENSOR_DEVICE_ATTR(pwm2, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 1);
1336static DEVICE_ATTR(pwm2_freq, S_IRUGO, show_pwm_freq, NULL);
1337static SENSOR_DEVICE_ATTR(pwm2_auto_channels_temp, S_IRUGO | S_IWUSR,
1338 show_pwm_temp_map, set_pwm_temp_map, 1);
1339static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_pwm, S_IRUGO | S_IWUSR,
1340 show_auto_pwm, set_auto_pwm, 1, 0);
1341static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_pwm, S_IRUGO | S_IWUSR,
1342 show_auto_pwm, set_auto_pwm, 1, 1);
1343static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_pwm, S_IRUGO | S_IWUSR,
1344 show_auto_pwm, set_auto_pwm, 1, 2);
1345static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_pwm, S_IRUGO,
1346 show_auto_pwm, NULL, 1, 3);
1347static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp, S_IRUGO | S_IWUSR,
1348 show_auto_temp, set_auto_temp, 1, 1);
1349static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1350 show_auto_temp, set_auto_temp, 1, 0);
1351static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_temp, S_IRUGO | S_IWUSR,
1352 show_auto_temp, set_auto_temp, 1, 2);
1353static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_temp, S_IRUGO | S_IWUSR,
1354 show_auto_temp, set_auto_temp, 1, 3);
1355static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_temp, S_IRUGO | S_IWUSR,
1356 show_auto_temp, set_auto_temp, 1, 4);
1357
1358static SENSOR_DEVICE_ATTR(pwm3_enable, S_IRUGO | S_IWUSR,
1359 show_pwm_enable, set_pwm_enable, 2);
1360static SENSOR_DEVICE_ATTR(pwm3, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 2);
1361static DEVICE_ATTR(pwm3_freq, S_IRUGO, show_pwm_freq, NULL);
1362static SENSOR_DEVICE_ATTR(pwm3_auto_channels_temp, S_IRUGO | S_IWUSR,
1363 show_pwm_temp_map, set_pwm_temp_map, 2);
1364static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_pwm, S_IRUGO | S_IWUSR,
1365 show_auto_pwm, set_auto_pwm, 2, 0);
1366static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_pwm, S_IRUGO | S_IWUSR,
1367 show_auto_pwm, set_auto_pwm, 2, 1);
1368static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_pwm, S_IRUGO | S_IWUSR,
1369 show_auto_pwm, set_auto_pwm, 2, 2);
1370static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_pwm, S_IRUGO,
1371 show_auto_pwm, NULL, 2, 3);
1372static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp, S_IRUGO | S_IWUSR,
1373 show_auto_temp, set_auto_temp, 2, 1);
1374static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1375 show_auto_temp, set_auto_temp, 2, 0);
1376static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_temp, S_IRUGO | S_IWUSR,
1377 show_auto_temp, set_auto_temp, 2, 2);
1378static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_temp, S_IRUGO | S_IWUSR,
1379 show_auto_temp, set_auto_temp, 2, 3);
1380static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_temp, S_IRUGO | S_IWUSR,
1381 show_auto_temp, set_auto_temp, 2, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
1383/* Alarms */
Jean Delvare5f2dc792010-03-05 22:17:18 +01001384static ssize_t show_alarms(struct device *dev, struct device_attribute *attr,
1385 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386{
1387 struct it87_data *data = it87_update_device(dev);
Jean Delvare68188ba2005-05-16 18:52:38 +02001388 return sprintf(buf, "%u\n", data->alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389}
Jean Delvare1d66c642005-04-18 21:16:59 -07001390static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Jean Delvare0124dd72007-11-25 16:16:41 +01001392static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
1393 char *buf)
1394{
1395 int bitnr = to_sensor_dev_attr(attr)->index;
1396 struct it87_data *data = it87_update_device(dev);
1397 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
1398}
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001399
1400static ssize_t clear_intrusion(struct device *dev, struct device_attribute
1401 *attr, const char *buf, size_t count)
1402{
1403 struct it87_data *data = dev_get_drvdata(dev);
1404 long val;
1405 int config;
1406
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001407 if (kstrtol(buf, 10, &val) < 0 || val != 0)
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001408 return -EINVAL;
1409
1410 mutex_lock(&data->update_lock);
1411 config = it87_read_value(data, IT87_REG_CONFIG);
1412 if (config < 0) {
1413 count = config;
1414 } else {
1415 config |= 1 << 5;
1416 it87_write_value(data, IT87_REG_CONFIG, config);
1417 /* Invalidate cache to force re-read */
1418 data->valid = 0;
1419 }
1420 mutex_unlock(&data->update_lock);
1421
1422 return count;
1423}
1424
Jean Delvare0124dd72007-11-25 16:16:41 +01001425static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 8);
1426static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 9);
1427static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 10);
1428static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 11);
1429static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 12);
1430static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 13);
1431static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 14);
1432static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 15);
1433static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 0);
1434static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 1);
1435static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 2);
1436static SENSOR_DEVICE_ATTR(fan4_alarm, S_IRUGO, show_alarm, NULL, 3);
1437static SENSOR_DEVICE_ATTR(fan5_alarm, S_IRUGO, show_alarm, NULL, 6);
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07001438static SENSOR_DEVICE_ATTR(fan6_alarm, S_IRUGO, show_alarm, NULL, 7);
Jean Delvare0124dd72007-11-25 16:16:41 +01001439static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 16);
1440static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 17);
1441static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 18);
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001442static SENSOR_DEVICE_ATTR(intrusion0_alarm, S_IRUGO | S_IWUSR,
1443 show_alarm, clear_intrusion, 4);
Jean Delvare0124dd72007-11-25 16:16:41 +01001444
Jean Delvared9b327c2010-03-05 22:17:17 +01001445static ssize_t show_beep(struct device *dev, struct device_attribute *attr,
1446 char *buf)
1447{
1448 int bitnr = to_sensor_dev_attr(attr)->index;
1449 struct it87_data *data = it87_update_device(dev);
1450 return sprintf(buf, "%u\n", (data->beeps >> bitnr) & 1);
1451}
1452static ssize_t set_beep(struct device *dev, struct device_attribute *attr,
1453 const char *buf, size_t count)
1454{
1455 int bitnr = to_sensor_dev_attr(attr)->index;
1456 struct it87_data *data = dev_get_drvdata(dev);
1457 long val;
1458
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001459 if (kstrtol(buf, 10, &val) < 0
Jean Delvared9b327c2010-03-05 22:17:17 +01001460 || (val != 0 && val != 1))
1461 return -EINVAL;
1462
1463 mutex_lock(&data->update_lock);
1464 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
1465 if (val)
1466 data->beeps |= (1 << bitnr);
1467 else
1468 data->beeps &= ~(1 << bitnr);
1469 it87_write_value(data, IT87_REG_BEEP_ENABLE, data->beeps);
1470 mutex_unlock(&data->update_lock);
1471 return count;
1472}
1473
1474static SENSOR_DEVICE_ATTR(in0_beep, S_IRUGO | S_IWUSR,
1475 show_beep, set_beep, 1);
1476static SENSOR_DEVICE_ATTR(in1_beep, S_IRUGO, show_beep, NULL, 1);
1477static SENSOR_DEVICE_ATTR(in2_beep, S_IRUGO, show_beep, NULL, 1);
1478static SENSOR_DEVICE_ATTR(in3_beep, S_IRUGO, show_beep, NULL, 1);
1479static SENSOR_DEVICE_ATTR(in4_beep, S_IRUGO, show_beep, NULL, 1);
1480static SENSOR_DEVICE_ATTR(in5_beep, S_IRUGO, show_beep, NULL, 1);
1481static SENSOR_DEVICE_ATTR(in6_beep, S_IRUGO, show_beep, NULL, 1);
1482static SENSOR_DEVICE_ATTR(in7_beep, S_IRUGO, show_beep, NULL, 1);
1483/* fanX_beep writability is set later */
1484static SENSOR_DEVICE_ATTR(fan1_beep, S_IRUGO, show_beep, set_beep, 0);
1485static SENSOR_DEVICE_ATTR(fan2_beep, S_IRUGO, show_beep, set_beep, 0);
1486static SENSOR_DEVICE_ATTR(fan3_beep, S_IRUGO, show_beep, set_beep, 0);
1487static SENSOR_DEVICE_ATTR(fan4_beep, S_IRUGO, show_beep, set_beep, 0);
1488static SENSOR_DEVICE_ATTR(fan5_beep, S_IRUGO, show_beep, set_beep, 0);
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07001489static SENSOR_DEVICE_ATTR(fan6_beep, S_IRUGO, show_beep, set_beep, 0);
Jean Delvared9b327c2010-03-05 22:17:17 +01001490static SENSOR_DEVICE_ATTR(temp1_beep, S_IRUGO | S_IWUSR,
1491 show_beep, set_beep, 2);
1492static SENSOR_DEVICE_ATTR(temp2_beep, S_IRUGO, show_beep, NULL, 2);
1493static SENSOR_DEVICE_ATTR(temp3_beep, S_IRUGO, show_beep, NULL, 2);
1494
Jean Delvare5f2dc792010-03-05 22:17:18 +01001495static ssize_t show_vrm_reg(struct device *dev, struct device_attribute *attr,
1496 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497{
Jean Delvare90d66192007-10-08 18:24:35 +02001498 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvarea7be58a2005-12-18 16:40:14 +01001499 return sprintf(buf, "%u\n", data->vrm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500}
Jean Delvare5f2dc792010-03-05 22:17:18 +01001501static ssize_t store_vrm_reg(struct device *dev, struct device_attribute *attr,
1502 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001504 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001505 unsigned long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001507 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001508 return -EINVAL;
1509
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 data->vrm = val;
1511
1512 return count;
1513}
1514static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm_reg, store_vrm_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Jean Delvare5f2dc792010-03-05 22:17:18 +01001516static ssize_t show_vid_reg(struct device *dev, struct device_attribute *attr,
1517 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518{
1519 struct it87_data *data = it87_update_device(dev);
1520 return sprintf(buf, "%ld\n", (long) vid_from_reg(data->vid, data->vrm));
1521}
1522static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL);
Jean Delvare87808be2006-09-24 21:17:13 +02001523
Jean Delvare738e5e02010-08-14 21:08:50 +02001524static ssize_t show_label(struct device *dev, struct device_attribute *attr,
1525 char *buf)
1526{
Guenter Roeck3c4c4972012-01-20 09:29:44 -08001527 static const char * const labels[] = {
Jean Delvare738e5e02010-08-14 21:08:50 +02001528 "+5V",
1529 "5VSB",
1530 "Vbat",
1531 };
Guenter Roeck3c4c4972012-01-20 09:29:44 -08001532 static const char * const labels_it8721[] = {
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001533 "+3.3V",
1534 "3VSB",
1535 "Vbat",
1536 };
1537 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvare738e5e02010-08-14 21:08:50 +02001538 int nr = to_sensor_dev_attr(attr)->index;
Justin Maggardead80802015-08-05 12:53:08 -07001539 const char *label;
Jean Delvare738e5e02010-08-14 21:08:50 +02001540
Justin Maggardead80802015-08-05 12:53:08 -07001541 if (has_12mv_adc(data) || has_10_9mv_adc(data))
1542 label = labels_it8721[nr];
1543 else
1544 label = labels[nr];
1545
1546 return sprintf(buf, "%s\n", label);
Jean Delvare738e5e02010-08-14 21:08:50 +02001547}
1548static SENSOR_DEVICE_ATTR(in3_label, S_IRUGO, show_label, NULL, 0);
1549static SENSOR_DEVICE_ATTR(in7_label, S_IRUGO, show_label, NULL, 1);
1550static SENSOR_DEVICE_ATTR(in8_label, S_IRUGO, show_label, NULL, 2);
Rudolf Marek7183ae82014-04-04 18:01:35 +02001551/* special AVCC3 IT8603E in9 */
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001552static SENSOR_DEVICE_ATTR(in9_label, S_IRUGO, show_label, NULL, 0);
Jean Delvare738e5e02010-08-14 21:08:50 +02001553
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001554static ssize_t show_name(struct device *dev, struct device_attribute
1555 *devattr, char *buf)
1556{
1557 struct it87_data *data = dev_get_drvdata(dev);
1558 return sprintf(buf, "%s\n", data->name);
1559}
1560static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
1561
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001562static struct attribute *it87_attributes_in[10][5] = {
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001563{
Jean Delvare87808be2006-09-24 21:17:13 +02001564 &sensor_dev_attr_in0_input.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001565 &sensor_dev_attr_in0_min.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001566 &sensor_dev_attr_in0_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001567 &sensor_dev_attr_in0_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001568 NULL
1569}, {
1570 &sensor_dev_attr_in1_input.dev_attr.attr,
1571 &sensor_dev_attr_in1_min.dev_attr.attr,
1572 &sensor_dev_attr_in1_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001573 &sensor_dev_attr_in1_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001574 NULL
1575}, {
1576 &sensor_dev_attr_in2_input.dev_attr.attr,
1577 &sensor_dev_attr_in2_min.dev_attr.attr,
1578 &sensor_dev_attr_in2_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001579 &sensor_dev_attr_in2_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001580 NULL
1581}, {
1582 &sensor_dev_attr_in3_input.dev_attr.attr,
1583 &sensor_dev_attr_in3_min.dev_attr.attr,
1584 &sensor_dev_attr_in3_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001585 &sensor_dev_attr_in3_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001586 NULL
1587}, {
1588 &sensor_dev_attr_in4_input.dev_attr.attr,
1589 &sensor_dev_attr_in4_min.dev_attr.attr,
1590 &sensor_dev_attr_in4_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001591 &sensor_dev_attr_in4_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001592 NULL
1593}, {
1594 &sensor_dev_attr_in5_input.dev_attr.attr,
1595 &sensor_dev_attr_in5_min.dev_attr.attr,
1596 &sensor_dev_attr_in5_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001597 &sensor_dev_attr_in5_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001598 NULL
1599}, {
1600 &sensor_dev_attr_in6_input.dev_attr.attr,
1601 &sensor_dev_attr_in6_min.dev_attr.attr,
1602 &sensor_dev_attr_in6_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001603 &sensor_dev_attr_in6_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001604 NULL
1605}, {
1606 &sensor_dev_attr_in7_input.dev_attr.attr,
1607 &sensor_dev_attr_in7_min.dev_attr.attr,
1608 &sensor_dev_attr_in7_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001609 &sensor_dev_attr_in7_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001610 NULL
1611}, {
1612 &sensor_dev_attr_in8_input.dev_attr.attr,
1613 NULL
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001614}, {
1615 &sensor_dev_attr_in9_input.dev_attr.attr,
1616 NULL
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001617} };
Jean Delvare87808be2006-09-24 21:17:13 +02001618
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001619static const struct attribute_group it87_group_in[10] = {
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001620 { .attrs = it87_attributes_in[0] },
1621 { .attrs = it87_attributes_in[1] },
1622 { .attrs = it87_attributes_in[2] },
1623 { .attrs = it87_attributes_in[3] },
1624 { .attrs = it87_attributes_in[4] },
1625 { .attrs = it87_attributes_in[5] },
1626 { .attrs = it87_attributes_in[6] },
1627 { .attrs = it87_attributes_in[7] },
1628 { .attrs = it87_attributes_in[8] },
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001629 { .attrs = it87_attributes_in[9] },
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001630};
1631
Guenter Roeck4573acb2012-03-26 16:17:41 -07001632static struct attribute *it87_attributes_temp[3][6] = {
1633{
Jean Delvare87808be2006-09-24 21:17:13 +02001634 &sensor_dev_attr_temp1_input.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001635 &sensor_dev_attr_temp1_max.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001636 &sensor_dev_attr_temp1_min.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001637 &sensor_dev_attr_temp1_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001638 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
Guenter Roeck4573acb2012-03-26 16:17:41 -07001639 NULL
1640} , {
1641 &sensor_dev_attr_temp2_input.dev_attr.attr,
1642 &sensor_dev_attr_temp2_max.dev_attr.attr,
1643 &sensor_dev_attr_temp2_min.dev_attr.attr,
1644 &sensor_dev_attr_temp2_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001645 &sensor_dev_attr_temp2_alarm.dev_attr.attr,
Guenter Roeck4573acb2012-03-26 16:17:41 -07001646 NULL
1647} , {
1648 &sensor_dev_attr_temp3_input.dev_attr.attr,
1649 &sensor_dev_attr_temp3_max.dev_attr.attr,
1650 &sensor_dev_attr_temp3_min.dev_attr.attr,
1651 &sensor_dev_attr_temp3_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001652 &sensor_dev_attr_temp3_alarm.dev_attr.attr,
Guenter Roeck4573acb2012-03-26 16:17:41 -07001653 NULL
1654} };
Jean Delvare87808be2006-09-24 21:17:13 +02001655
Guenter Roeck4573acb2012-03-26 16:17:41 -07001656static const struct attribute_group it87_group_temp[3] = {
1657 { .attrs = it87_attributes_temp[0] },
1658 { .attrs = it87_attributes_temp[1] },
1659 { .attrs = it87_attributes_temp[2] },
1660};
1661
Guenter Roeck161d8982012-12-19 22:17:01 +01001662static struct attribute *it87_attributes_temp_offset[] = {
1663 &sensor_dev_attr_temp1_offset.dev_attr.attr,
1664 &sensor_dev_attr_temp2_offset.dev_attr.attr,
1665 &sensor_dev_attr_temp3_offset.dev_attr.attr,
1666};
1667
Guenter Roeck4573acb2012-03-26 16:17:41 -07001668static struct attribute *it87_attributes[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02001669 &dev_attr_alarms.attr,
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001670 &sensor_dev_attr_intrusion0_alarm.dev_attr.attr,
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001671 &dev_attr_name.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001672 NULL
1673};
1674
1675static const struct attribute_group it87_group = {
1676 .attrs = it87_attributes,
1677};
1678
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001679static struct attribute *it87_attributes_in_beep[] = {
Jean Delvared9b327c2010-03-05 22:17:17 +01001680 &sensor_dev_attr_in0_beep.dev_attr.attr,
1681 &sensor_dev_attr_in1_beep.dev_attr.attr,
1682 &sensor_dev_attr_in2_beep.dev_attr.attr,
1683 &sensor_dev_attr_in3_beep.dev_attr.attr,
1684 &sensor_dev_attr_in4_beep.dev_attr.attr,
1685 &sensor_dev_attr_in5_beep.dev_attr.attr,
1686 &sensor_dev_attr_in6_beep.dev_attr.attr,
1687 &sensor_dev_attr_in7_beep.dev_attr.attr,
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001688 NULL,
1689 NULL,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001690};
Jean Delvared9b327c2010-03-05 22:17:17 +01001691
Guenter Roeck4573acb2012-03-26 16:17:41 -07001692static struct attribute *it87_attributes_temp_beep[] = {
Jean Delvared9b327c2010-03-05 22:17:17 +01001693 &sensor_dev_attr_temp1_beep.dev_attr.attr,
1694 &sensor_dev_attr_temp2_beep.dev_attr.attr,
1695 &sensor_dev_attr_temp3_beep.dev_attr.attr,
Jean Delvared9b327c2010-03-05 22:17:17 +01001696};
1697
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07001698static struct attribute *it87_attributes_fan[6][3+1] = { {
Jean Delvare87808be2006-09-24 21:17:13 +02001699 &sensor_dev_attr_fan1_input.dev_attr.attr,
1700 &sensor_dev_attr_fan1_min.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001701 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
1702 NULL
1703}, {
Jean Delvare87808be2006-09-24 21:17:13 +02001704 &sensor_dev_attr_fan2_input.dev_attr.attr,
1705 &sensor_dev_attr_fan2_min.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001706 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
1707 NULL
1708}, {
Jean Delvare87808be2006-09-24 21:17:13 +02001709 &sensor_dev_attr_fan3_input.dev_attr.attr,
1710 &sensor_dev_attr_fan3_min.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001711 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001712 NULL
Guenter Roecke1169ba2012-12-19 22:17:01 +01001713}, {
1714 &sensor_dev_attr_fan4_input.dev_attr.attr,
1715 &sensor_dev_attr_fan4_min.dev_attr.attr,
1716 &sensor_dev_attr_fan4_alarm.dev_attr.attr,
1717 NULL
1718}, {
1719 &sensor_dev_attr_fan5_input.dev_attr.attr,
1720 &sensor_dev_attr_fan5_min.dev_attr.attr,
1721 &sensor_dev_attr_fan5_alarm.dev_attr.attr,
1722 NULL
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07001723}, {
1724 &sensor_dev_attr_fan6_input.dev_attr.attr,
1725 &sensor_dev_attr_fan6_min.dev_attr.attr,
1726 &sensor_dev_attr_fan6_alarm.dev_attr.attr,
1727 NULL
Jean Delvare723a0aa2010-03-05 22:17:16 +01001728} };
Jean Delvare0124dd72007-11-25 16:16:41 +01001729
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07001730static const struct attribute_group it87_group_fan[6] = {
Jean Delvare723a0aa2010-03-05 22:17:16 +01001731 { .attrs = it87_attributes_fan[0] },
1732 { .attrs = it87_attributes_fan[1] },
1733 { .attrs = it87_attributes_fan[2] },
Guenter Roecke1169ba2012-12-19 22:17:01 +01001734 { .attrs = it87_attributes_fan[3] },
1735 { .attrs = it87_attributes_fan[4] },
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07001736 { .attrs = it87_attributes_fan[5] },
Jean Delvare723a0aa2010-03-05 22:17:16 +01001737};
1738
Guenter Roecke1169ba2012-12-19 22:17:01 +01001739static const struct attribute *it87_attributes_fan_div[] = {
1740 &sensor_dev_attr_fan1_div.dev_attr.attr,
1741 &sensor_dev_attr_fan2_div.dev_attr.attr,
1742 &sensor_dev_attr_fan3_div.dev_attr.attr,
1743};
Jean Delvare723a0aa2010-03-05 22:17:16 +01001744
1745static struct attribute *it87_attributes_pwm[3][4+1] = { {
Jean Delvare87808be2006-09-24 21:17:13 +02001746 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001747 &sensor_dev_attr_pwm1.dev_attr.attr,
Jean Delvared5b0b5d2007-12-14 14:41:53 +01001748 &dev_attr_pwm1_freq.attr,
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001749 &sensor_dev_attr_pwm1_auto_channels_temp.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001750 NULL
1751}, {
1752 &sensor_dev_attr_pwm2_enable.dev_attr.attr,
1753 &sensor_dev_attr_pwm2.dev_attr.attr,
1754 &dev_attr_pwm2_freq.attr,
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001755 &sensor_dev_attr_pwm2_auto_channels_temp.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001756 NULL
1757}, {
1758 &sensor_dev_attr_pwm3_enable.dev_attr.attr,
1759 &sensor_dev_attr_pwm3.dev_attr.attr,
1760 &dev_attr_pwm3_freq.attr,
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001761 &sensor_dev_attr_pwm3_auto_channels_temp.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001762 NULL
1763} };
Jean Delvare87808be2006-09-24 21:17:13 +02001764
Jean Delvare723a0aa2010-03-05 22:17:16 +01001765static const struct attribute_group it87_group_pwm[3] = {
1766 { .attrs = it87_attributes_pwm[0] },
1767 { .attrs = it87_attributes_pwm[1] },
1768 { .attrs = it87_attributes_pwm[2] },
1769};
1770
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001771static struct attribute *it87_attributes_autopwm[3][9+1] = { {
1772 &sensor_dev_attr_pwm1_auto_point1_pwm.dev_attr.attr,
1773 &sensor_dev_attr_pwm1_auto_point2_pwm.dev_attr.attr,
1774 &sensor_dev_attr_pwm1_auto_point3_pwm.dev_attr.attr,
1775 &sensor_dev_attr_pwm1_auto_point4_pwm.dev_attr.attr,
1776 &sensor_dev_attr_pwm1_auto_point1_temp.dev_attr.attr,
1777 &sensor_dev_attr_pwm1_auto_point1_temp_hyst.dev_attr.attr,
1778 &sensor_dev_attr_pwm1_auto_point2_temp.dev_attr.attr,
1779 &sensor_dev_attr_pwm1_auto_point3_temp.dev_attr.attr,
1780 &sensor_dev_attr_pwm1_auto_point4_temp.dev_attr.attr,
1781 NULL
1782}, {
1783 &sensor_dev_attr_pwm2_auto_point1_pwm.dev_attr.attr,
1784 &sensor_dev_attr_pwm2_auto_point2_pwm.dev_attr.attr,
1785 &sensor_dev_attr_pwm2_auto_point3_pwm.dev_attr.attr,
1786 &sensor_dev_attr_pwm2_auto_point4_pwm.dev_attr.attr,
1787 &sensor_dev_attr_pwm2_auto_point1_temp.dev_attr.attr,
1788 &sensor_dev_attr_pwm2_auto_point1_temp_hyst.dev_attr.attr,
1789 &sensor_dev_attr_pwm2_auto_point2_temp.dev_attr.attr,
1790 &sensor_dev_attr_pwm2_auto_point3_temp.dev_attr.attr,
1791 &sensor_dev_attr_pwm2_auto_point4_temp.dev_attr.attr,
1792 NULL
1793}, {
1794 &sensor_dev_attr_pwm3_auto_point1_pwm.dev_attr.attr,
1795 &sensor_dev_attr_pwm3_auto_point2_pwm.dev_attr.attr,
1796 &sensor_dev_attr_pwm3_auto_point3_pwm.dev_attr.attr,
1797 &sensor_dev_attr_pwm3_auto_point4_pwm.dev_attr.attr,
1798 &sensor_dev_attr_pwm3_auto_point1_temp.dev_attr.attr,
1799 &sensor_dev_attr_pwm3_auto_point1_temp_hyst.dev_attr.attr,
1800 &sensor_dev_attr_pwm3_auto_point2_temp.dev_attr.attr,
1801 &sensor_dev_attr_pwm3_auto_point3_temp.dev_attr.attr,
1802 &sensor_dev_attr_pwm3_auto_point4_temp.dev_attr.attr,
1803 NULL
1804} };
1805
1806static const struct attribute_group it87_group_autopwm[3] = {
1807 { .attrs = it87_attributes_autopwm[0] },
1808 { .attrs = it87_attributes_autopwm[1] },
1809 { .attrs = it87_attributes_autopwm[2] },
1810};
1811
Jean Delvared9b327c2010-03-05 22:17:17 +01001812static struct attribute *it87_attributes_fan_beep[] = {
1813 &sensor_dev_attr_fan1_beep.dev_attr.attr,
1814 &sensor_dev_attr_fan2_beep.dev_attr.attr,
1815 &sensor_dev_attr_fan3_beep.dev_attr.attr,
1816 &sensor_dev_attr_fan4_beep.dev_attr.attr,
1817 &sensor_dev_attr_fan5_beep.dev_attr.attr,
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07001818 &sensor_dev_attr_fan6_beep.dev_attr.attr,
Jean Delvared9b327c2010-03-05 22:17:17 +01001819};
1820
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01001821static struct attribute *it87_attributes_vid[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02001822 &dev_attr_vrm.attr,
1823 &dev_attr_cpu0_vid.attr,
1824 NULL
1825};
1826
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01001827static const struct attribute_group it87_group_vid = {
1828 .attrs = it87_attributes_vid,
Jean Delvare87808be2006-09-24 21:17:13 +02001829};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
Jean Delvare738e5e02010-08-14 21:08:50 +02001831static struct attribute *it87_attributes_label[] = {
1832 &sensor_dev_attr_in3_label.dev_attr.attr,
1833 &sensor_dev_attr_in7_label.dev_attr.attr,
1834 &sensor_dev_attr_in8_label.dev_attr.attr,
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001835 &sensor_dev_attr_in9_label.dev_attr.attr,
Jean Delvare738e5e02010-08-14 21:08:50 +02001836 NULL
1837};
1838
1839static const struct attribute_group it87_group_label = {
Jean Delvarefa8b6972011-07-17 18:39:19 +02001840 .attrs = it87_attributes_label,
Jean Delvare738e5e02010-08-14 21:08:50 +02001841};
1842
Jean Delvare2d8672c2005-07-19 23:56:35 +02001843/* SuperIO detection - will change isa_address if a chip is found */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001844static int __init it87_find(unsigned short *address,
1845 struct it87_sio_data *sio_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846{
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +02001847 int err;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001848 u16 chip_type;
Jean Delvare98dd22c2008-10-09 15:33:58 +02001849 const char *board_vendor, *board_name;
Guenter Roeckf83a9cb2015-03-31 09:31:34 -07001850 const struct it87_devices *config;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +02001852 err = superio_enter();
1853 if (err)
1854 return err;
1855
1856 err = -ENODEV;
Jean Delvare67b671b2007-12-06 23:13:42 +01001857 chip_type = force_id ? force_id : superio_inw(DEVID);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001858
1859 switch (chip_type) {
1860 case IT8705F_DEVID:
1861 sio_data->type = it87;
1862 break;
1863 case IT8712F_DEVID:
1864 sio_data->type = it8712;
1865 break;
1866 case IT8716F_DEVID:
1867 case IT8726F_DEVID:
1868 sio_data->type = it8716;
1869 break;
1870 case IT8718F_DEVID:
1871 sio_data->type = it8718;
1872 break;
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +01001873 case IT8720F_DEVID:
1874 sio_data->type = it8720;
1875 break;
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001876 case IT8721F_DEVID:
1877 sio_data->type = it8721;
1878 break;
Jean Delvare16b5dda2012-01-16 22:51:48 +01001879 case IT8728F_DEVID:
1880 sio_data->type = it8728;
1881 break;
Justin Maggardead80802015-08-05 12:53:08 -07001882 case IT8732F_DEVID:
1883 sio_data->type = it8732;
1884 break;
Guenter Roeckb0636702012-09-07 17:34:41 -06001885 case IT8771E_DEVID:
1886 sio_data->type = it8771;
1887 break;
1888 case IT8772E_DEVID:
1889 sio_data->type = it8772;
1890 break;
Guenter Roeck7bc32d22015-01-17 14:10:24 -08001891 case IT8781F_DEVID:
1892 sio_data->type = it8781;
1893 break;
Guenter Roeck0531d982012-03-02 11:46:44 -08001894 case IT8782F_DEVID:
1895 sio_data->type = it8782;
1896 break;
1897 case IT8783E_DEVID:
1898 sio_data->type = it8783;
1899 break;
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +01001900 case IT8786E_DEVID:
1901 sio_data->type = it8786;
1902 break;
Guenter Roeck4ee07152015-03-25 23:26:28 -07001903 case IT8790E_DEVID:
1904 sio_data->type = it8790;
1905 break;
Rudolf Marek7183ae82014-04-04 18:01:35 +02001906 case IT8603E_DEVID:
Rudolf Marek574e9bd2014-04-04 18:01:35 +02001907 case IT8623E_DEVID:
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001908 sio_data->type = it8603;
1909 break;
Guenter Roeck3ba9d972015-02-13 20:13:20 -08001910 case IT8620E_DEVID:
1911 sio_data->type = it8620;
1912 break;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001913 case 0xffff: /* No device at all */
1914 goto exit;
1915 default:
Joe Perchesa8ca1032011-01-12 21:55:10 +01001916 pr_debug("Unsupported chip (DEVID=0x%x)\n", chip_type);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001917 goto exit;
1918 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
Jean Delvare87673dd2006-08-28 14:37:19 +02001920 superio_select(PME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 if (!(superio_inb(IT87_ACT_REG) & 0x01)) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01001922 pr_info("Device not activated, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 goto exit;
1924 }
1925
1926 *address = superio_inw(IT87_BASE_REG) & ~(IT87_EXTENT - 1);
1927 if (*address == 0) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01001928 pr_info("Base address not set, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 goto exit;
1930 }
1931
1932 err = 0;
Andrew Paprocki04751692008-08-06 22:41:06 +02001933 sio_data->revision = superio_inb(DEVREV) & 0x0f;
Guenter Roeckfaf392f2015-03-26 08:36:18 -07001934 pr_info("Found IT%04x%s chip at 0x%x, revision %d\n", chip_type,
1935 it87_devices[sio_data->type].suffix,
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +01001936 *address, sio_data->revision);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
Guenter Roeckf83a9cb2015-03-31 09:31:34 -07001938 config = &it87_devices[sio_data->type];
1939
Guenter Roeck7f5726c2015-03-26 08:49:18 -07001940 /* in7 (VSB or VCCH5V) is always internal on some chips */
Guenter Roeckf83a9cb2015-03-31 09:31:34 -07001941 if (has_in7_internal(config))
Guenter Roeck7f5726c2015-03-26 08:49:18 -07001942 sio_data->internal |= (1 << 1);
1943
Jean Delvare738e5e02010-08-14 21:08:50 +02001944 /* in8 (Vbat) is always internal */
Guenter Roeck7f5726c2015-03-26 08:49:18 -07001945 sio_data->internal |= (1 << 2);
1946
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001947 /* Only the IT8603E has in9 */
1948 if (sio_data->type != it8603)
1949 sio_data->skip_in |= (1 << 9);
Jean Delvare738e5e02010-08-14 21:08:50 +02001950
Guenter Roeckf83a9cb2015-03-31 09:31:34 -07001951 if (!has_vid(config))
Jean Delvare895ff262009-12-09 20:35:47 +01001952 sio_data->skip_vid = 1;
Jean Delvared9b327c2010-03-05 22:17:17 +01001953
Guenter Roeck32dd7c42015-02-12 07:40:23 -08001954 /* Read GPIO config and VID value from LDN 7 (GPIO) */
1955 if (sio_data->type == it87) {
Jean Delvared9b327c2010-03-05 22:17:17 +01001956 /* The IT8705F has a different LD number for GPIO */
1957 superio_select(5);
1958 sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f;
Guenter Roeck0531d982012-03-02 11:46:44 -08001959 } else if (sio_data->type == it8783) {
Guenter Roeck088ce2a2013-03-13 16:40:39 -07001960 int reg25, reg27, reg2a, reg2c, regef;
Guenter Roeck0531d982012-03-02 11:46:44 -08001961
Guenter Roeck0531d982012-03-02 11:46:44 -08001962 superio_select(GPIO);
1963
1964 reg25 = superio_inb(IT87_SIO_GPIO1_REG);
1965 reg27 = superio_inb(IT87_SIO_GPIO3_REG);
Guenter Roeck088ce2a2013-03-13 16:40:39 -07001966 reg2a = superio_inb(IT87_SIO_PINX1_REG);
1967 reg2c = superio_inb(IT87_SIO_PINX2_REG);
1968 regef = superio_inb(IT87_SIO_SPI_REG);
Guenter Roeck0531d982012-03-02 11:46:44 -08001969
Guenter Roeck0531d982012-03-02 11:46:44 -08001970 /* Check if fan3 is there or not */
Guenter Roeck088ce2a2013-03-13 16:40:39 -07001971 if ((reg27 & (1 << 0)) || !(reg2c & (1 << 2)))
Guenter Roeck0531d982012-03-02 11:46:44 -08001972 sio_data->skip_fan |= (1 << 2);
1973 if ((reg25 & (1 << 4))
Guenter Roeck088ce2a2013-03-13 16:40:39 -07001974 || (!(reg2a & (1 << 1)) && (regef & (1 << 0))))
Guenter Roeck0531d982012-03-02 11:46:44 -08001975 sio_data->skip_pwm |= (1 << 2);
1976
1977 /* Check if fan2 is there or not */
1978 if (reg27 & (1 << 7))
1979 sio_data->skip_fan |= (1 << 1);
1980 if (reg27 & (1 << 3))
1981 sio_data->skip_pwm |= (1 << 1);
1982
1983 /* VIN5 */
Guenter Roeck088ce2a2013-03-13 16:40:39 -07001984 if ((reg27 & (1 << 0)) || (reg2c & (1 << 2)))
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001985 sio_data->skip_in |= (1 << 5); /* No VIN5 */
Guenter Roeck0531d982012-03-02 11:46:44 -08001986
1987 /* VIN6 */
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001988 if (reg27 & (1 << 1))
1989 sio_data->skip_in |= (1 << 6); /* No VIN6 */
Guenter Roeck0531d982012-03-02 11:46:44 -08001990
1991 /*
1992 * VIN7
1993 * Does not depend on bit 2 of Reg2C, contrary to datasheet.
1994 */
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001995 if (reg27 & (1 << 2)) {
1996 /*
1997 * The data sheet is a bit unclear regarding the
1998 * internal voltage divider for VCCH5V. It says
1999 * "This bit enables and switches VIN7 (pin 91) to the
2000 * internal voltage divider for VCCH5V".
2001 * This is different to other chips, where the internal
2002 * voltage divider would connect VIN7 to an internal
2003 * voltage source. Maybe that is the case here as well.
2004 *
2005 * Since we don't know for sure, re-route it if that is
2006 * not the case, and ask the user to report if the
2007 * resulting voltage is sane.
2008 */
Guenter Roeck088ce2a2013-03-13 16:40:39 -07002009 if (!(reg2c & (1 << 1))) {
2010 reg2c |= (1 << 1);
2011 superio_outb(IT87_SIO_PINX2_REG, reg2c);
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002012 pr_notice("Routing internal VCCH5V to in7.\n");
2013 }
2014 pr_notice("in7 routed to internal voltage divider, with external pin disabled.\n");
2015 pr_notice("Please report if it displays a reasonable voltage.\n");
2016 }
Guenter Roeck0531d982012-03-02 11:46:44 -08002017
Guenter Roeck088ce2a2013-03-13 16:40:39 -07002018 if (reg2c & (1 << 0))
Guenter Roeck0531d982012-03-02 11:46:44 -08002019 sio_data->internal |= (1 << 0);
Guenter Roeck088ce2a2013-03-13 16:40:39 -07002020 if (reg2c & (1 << 1))
Guenter Roeck0531d982012-03-02 11:46:44 -08002021 sio_data->internal |= (1 << 1);
2022
2023 sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f;
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002024 } else if (sio_data->type == it8603) {
2025 int reg27, reg29;
Guenter Roeck0531d982012-03-02 11:46:44 -08002026
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002027 superio_select(GPIO);
2028
2029 reg27 = superio_inb(IT87_SIO_GPIO3_REG);
2030
2031 /* Check if fan3 is there or not */
2032 if (reg27 & (1 << 6))
2033 sio_data->skip_pwm |= (1 << 2);
2034 if (reg27 & (1 << 7))
2035 sio_data->skip_fan |= (1 << 2);
2036
2037 /* Check if fan2 is there or not */
2038 reg29 = superio_inb(IT87_SIO_GPIO5_REG);
2039 if (reg29 & (1 << 1))
2040 sio_data->skip_pwm |= (1 << 1);
2041 if (reg29 & (1 << 2))
2042 sio_data->skip_fan |= (1 << 1);
2043
2044 sio_data->skip_in |= (1 << 5); /* No VIN5 */
2045 sio_data->skip_in |= (1 << 6); /* No VIN6 */
2046
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002047 sio_data->internal |= (1 << 3); /* in9 is AVCC */
2048
2049 sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f;
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002050 } else if (sio_data->type == it8620) {
2051 int reg;
2052
2053 superio_select(GPIO);
2054
2055 /* Check for fan4, fan5 */
2056 reg = superio_inb(IT87_SIO_GPIO2_REG);
2057 if (!(reg & (1 << 5)))
2058 sio_data->skip_fan |= (1 << 3);
2059 if (!(reg & (1 << 4)))
2060 sio_data->skip_fan |= (1 << 4);
2061
2062 /* Check for pwm3, fan3 */
2063 reg = superio_inb(IT87_SIO_GPIO3_REG);
2064 if (reg & (1 << 6))
2065 sio_data->skip_pwm |= (1 << 2);
2066 if (reg & (1 << 7))
2067 sio_data->skip_fan |= (1 << 2);
2068
2069 /* Check for pwm2, fan2 */
2070 reg = superio_inb(IT87_SIO_GPIO5_REG);
2071 if (reg & (1 << 1))
2072 sio_data->skip_pwm |= (1 << 1);
2073 if (reg & (1 << 2))
2074 sio_data->skip_fan |= (1 << 1);
2075
2076 sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f;
Jean Delvare895ff262009-12-09 20:35:47 +01002077 } else {
Jean Delvare87673dd2006-08-28 14:37:19 +02002078 int reg;
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002079 bool uart6;
Jean Delvare87673dd2006-08-28 14:37:19 +02002080
2081 superio_select(GPIO);
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002082
Jean Delvare895ff262009-12-09 20:35:47 +01002083 reg = superio_inb(IT87_SIO_GPIO3_REG);
Guenter Roeck32dd7c42015-02-12 07:40:23 -08002084 if (!sio_data->skip_vid) {
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002085 /* We need at least 4 VID pins */
2086 if (reg & 0x0f) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002087 pr_info("VID is disabled (pins used for GPIO)\n");
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002088 sio_data->skip_vid = 1;
2089 }
Jean Delvare895ff262009-12-09 20:35:47 +01002090 }
2091
Jean Delvare591ec652009-12-09 20:35:48 +01002092 /* Check if fan3 is there or not */
2093 if (reg & (1 << 6))
2094 sio_data->skip_pwm |= (1 << 2);
2095 if (reg & (1 << 7))
2096 sio_data->skip_fan |= (1 << 2);
2097
2098 /* Check if fan2 is there or not */
2099 reg = superio_inb(IT87_SIO_GPIO5_REG);
2100 if (reg & (1 << 1))
2101 sio_data->skip_pwm |= (1 << 1);
2102 if (reg & (1 << 2))
2103 sio_data->skip_fan |= (1 << 1);
2104
Jean Delvare895ff262009-12-09 20:35:47 +01002105 if ((sio_data->type == it8718 || sio_data->type == it8720)
2106 && !(sio_data->skip_vid))
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002107 sio_data->vid_value = superio_inb(IT87_SIO_VID_REG);
Jean Delvare87673dd2006-08-28 14:37:19 +02002108
2109 reg = superio_inb(IT87_SIO_PINX2_REG);
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002110
2111 uart6 = sio_data->type == it8782 && (reg & (1 << 2));
2112
Jean Delvare436cad22010-07-09 16:22:48 +02002113 /*
2114 * The IT8720F has no VIN7 pin, so VCCH should always be
2115 * routed internally to VIN7 with an internal divider.
2116 * Curiously, there still is a configuration bit to control
2117 * this, which means it can be set incorrectly. And even
2118 * more curiously, many boards out there are improperly
2119 * configured, even though the IT8720F datasheet claims
2120 * that the internal routing of VCCH to VIN7 is the default
2121 * setting. So we force the internal routing in this case.
Guenter Roeck0531d982012-03-02 11:46:44 -08002122 *
2123 * On IT8782F, VIN7 is multiplexed with one of the UART6 pins.
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002124 * If UART6 is enabled, re-route VIN7 to the internal divider
2125 * if that is not already the case.
Jean Delvare436cad22010-07-09 16:22:48 +02002126 */
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002127 if ((sio_data->type == it8720 || uart6) && !(reg & (1 << 1))) {
Jean Delvare436cad22010-07-09 16:22:48 +02002128 reg |= (1 << 1);
2129 superio_outb(IT87_SIO_PINX2_REG, reg);
Joe Perchesa8ca1032011-01-12 21:55:10 +01002130 pr_notice("Routing internal VCCH to in7\n");
Jean Delvare436cad22010-07-09 16:22:48 +02002131 }
Jean Delvare87673dd2006-08-28 14:37:19 +02002132 if (reg & (1 << 0))
Jean Delvare738e5e02010-08-14 21:08:50 +02002133 sio_data->internal |= (1 << 0);
Guenter Roeck7f5726c2015-03-26 08:49:18 -07002134 if (reg & (1 << 1))
Jean Delvare738e5e02010-08-14 21:08:50 +02002135 sio_data->internal |= (1 << 1);
Jean Delvared9b327c2010-03-05 22:17:17 +01002136
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002137 /*
2138 * On IT8782F, UART6 pins overlap with VIN5, VIN6, and VIN7.
2139 * While VIN7 can be routed to the internal voltage divider,
2140 * VIN5 and VIN6 are not available if UART6 is enabled.
Guenter Roeck4573acb2012-03-26 16:17:41 -07002141 *
2142 * Also, temp3 is not available if UART6 is enabled and TEMPIN3
2143 * is the temperature source. Since we can not read the
2144 * temperature source here, skip_temp is preliminary.
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002145 */
Guenter Roeck4573acb2012-03-26 16:17:41 -07002146 if (uart6) {
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002147 sio_data->skip_in |= (1 << 5) | (1 << 6);
Guenter Roeck4573acb2012-03-26 16:17:41 -07002148 sio_data->skip_temp |= (1 << 2);
2149 }
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002150
Jean Delvared9b327c2010-03-05 22:17:17 +01002151 sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f;
Jean Delvare87673dd2006-08-28 14:37:19 +02002152 }
Jean Delvared9b327c2010-03-05 22:17:17 +01002153 if (sio_data->beep_pin)
Joe Perchesa8ca1032011-01-12 21:55:10 +01002154 pr_info("Beeping is supported\n");
Jean Delvare87673dd2006-08-28 14:37:19 +02002155
Jean Delvare98dd22c2008-10-09 15:33:58 +02002156 /* Disable specific features based on DMI strings */
2157 board_vendor = dmi_get_system_info(DMI_BOARD_VENDOR);
2158 board_name = dmi_get_system_info(DMI_BOARD_NAME);
2159 if (board_vendor && board_name) {
2160 if (strcmp(board_vendor, "nVIDIA") == 0
2161 && strcmp(board_name, "FN68PT") == 0) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002162 /*
2163 * On the Shuttle SN68PT, FAN_CTL2 is apparently not
2164 * connected to a fan, but to something else. One user
2165 * has reported instant system power-off when changing
2166 * the PWM2 duty cycle, so we disable it.
2167 * I use the board name string as the trigger in case
2168 * the same board is ever used in other systems.
2169 */
Joe Perchesa8ca1032011-01-12 21:55:10 +01002170 pr_info("Disabling pwm2 due to hardware constraints\n");
Jean Delvare98dd22c2008-10-09 15:33:58 +02002171 sio_data->skip_pwm = (1 << 1);
2172 }
2173 }
2174
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175exit:
2176 superio_exit();
2177 return err;
2178}
2179
Jean Delvare723a0aa2010-03-05 22:17:16 +01002180static void it87_remove_files(struct device *dev)
2181{
2182 struct it87_data *data = platform_get_drvdata(pdev);
Jingoo Hana8b3a3a2013-07-30 17:13:06 +09002183 struct it87_sio_data *sio_data = dev_get_platdata(dev);
Jean Delvare723a0aa2010-03-05 22:17:16 +01002184 int i;
2185
2186 sysfs_remove_group(&dev->kobj, &it87_group);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002187 for (i = 0; i < 10; i++) {
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002188 if (sio_data->skip_in & (1 << i))
2189 continue;
2190 sysfs_remove_group(&dev->kobj, &it87_group_in[i]);
2191 if (it87_attributes_in_beep[i])
2192 sysfs_remove_file(&dev->kobj,
2193 it87_attributes_in_beep[i]);
2194 }
Guenter Roeck4573acb2012-03-26 16:17:41 -07002195 for (i = 0; i < 3; i++) {
2196 if (!(data->has_temp & (1 << i)))
2197 continue;
2198 sysfs_remove_group(&dev->kobj, &it87_group_temp[i]);
Guenter Roeck161d8982012-12-19 22:17:01 +01002199 if (has_temp_offset(data))
2200 sysfs_remove_file(&dev->kobj,
2201 it87_attributes_temp_offset[i]);
Guenter Roeck4573acb2012-03-26 16:17:41 -07002202 if (sio_data->beep_pin)
2203 sysfs_remove_file(&dev->kobj,
2204 it87_attributes_temp_beep[i]);
2205 }
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07002206 for (i = 0; i < 6; i++) {
Jean Delvare723a0aa2010-03-05 22:17:16 +01002207 if (!(data->has_fan & (1 << i)))
2208 continue;
Guenter Roecke1169ba2012-12-19 22:17:01 +01002209 sysfs_remove_group(&dev->kobj, &it87_group_fan[i]);
Jean Delvared9b327c2010-03-05 22:17:17 +01002210 if (sio_data->beep_pin)
2211 sysfs_remove_file(&dev->kobj,
2212 it87_attributes_fan_beep[i]);
Guenter Roecke1169ba2012-12-19 22:17:01 +01002213 if (i < 3 && !has_16bit_fans(data))
2214 sysfs_remove_file(&dev->kobj,
2215 it87_attributes_fan_div[i]);
Jean Delvare723a0aa2010-03-05 22:17:16 +01002216 }
2217 for (i = 0; i < 3; i++) {
Guenter Roeck1696d1d2015-03-27 06:03:41 -07002218 if (sio_data->skip_pwm & (1 << i))
Jean Delvare723a0aa2010-03-05 22:17:16 +01002219 continue;
2220 sysfs_remove_group(&dev->kobj, &it87_group_pwm[i]);
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002221 if (has_old_autopwm(data))
2222 sysfs_remove_group(&dev->kobj,
2223 &it87_group_autopwm[i]);
Jean Delvare723a0aa2010-03-05 22:17:16 +01002224 }
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01002225 if (!sio_data->skip_vid)
2226 sysfs_remove_group(&dev->kobj, &it87_group_vid);
Jean Delvare738e5e02010-08-14 21:08:50 +02002227 sysfs_remove_group(&dev->kobj, &it87_group_label);
Jean Delvare723a0aa2010-03-05 22:17:16 +01002228}
2229
Bill Pemberton6c931ae2012-11-19 13:22:35 -05002230static int it87_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 struct it87_data *data;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002233 struct resource *res;
2234 struct device *dev = &pdev->dev;
Jingoo Hana8b3a3a2013-07-30 17:13:06 +09002235 struct it87_sio_data *sio_data = dev_get_platdata(dev);
Jean Delvare723a0aa2010-03-05 22:17:16 +01002236 int err = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 int enable_pwm_interface;
Jean Delvared9b327c2010-03-05 22:17:17 +01002238 int fan_beep_need_rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002240 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
Guenter Roeck62a1d052012-03-24 21:54:41 -07002241 if (!devm_request_region(&pdev->dev, res->start, IT87_EC_EXTENT,
2242 DRVNAME)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002243 dev_err(dev, "Failed to request region 0x%lx-0x%lx\n",
2244 (unsigned long)res->start,
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05002245 (unsigned long)(res->start + IT87_EC_EXTENT - 1));
Guenter Roeck62a1d052012-03-24 21:54:41 -07002246 return -EBUSY;
Jean Delvare8e9afcb2006-12-12 18:18:28 +01002247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248
Guenter Roeck62a1d052012-03-24 21:54:41 -07002249 data = devm_kzalloc(&pdev->dev, sizeof(struct it87_data), GFP_KERNEL);
2250 if (!data)
2251 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002253 data->addr = res->start;
2254 data->type = sio_data->type;
Guenter Roeck483db432012-12-19 22:17:02 +01002255 data->features = it87_devices[sio_data->type].features;
Guenter Roeck5d8d2f22012-12-19 22:17:02 +01002256 data->peci_mask = it87_devices[sio_data->type].peci_mask;
Guenter Roeck19529782012-12-19 22:17:02 +01002257 data->old_peci_mask = it87_devices[sio_data->type].old_peci_mask;
Guenter Roeck483db432012-12-19 22:17:02 +01002258 data->name = it87_devices[sio_data->type].name;
2259 /*
2260 * IT8705F Datasheet 0.4.1, 3h == Version G.
2261 * IT8712F Datasheet 0.9.1, section 8.3.5 indicates 8h == Version J.
2262 * These are the first revisions with 16-bit tachometer support.
2263 */
2264 switch (data->type) {
2265 case it87:
2266 if (sio_data->revision >= 0x03) {
2267 data->features &= ~FEAT_OLD_AUTOPWM;
Guenter Roeck9faf28c2015-02-12 07:11:38 -08002268 data->features |= FEAT_FAN16_CONFIG | FEAT_16BIT_FANS;
Guenter Roeck483db432012-12-19 22:17:02 +01002269 }
2270 break;
2271 case it8712:
2272 if (sio_data->revision >= 0x08) {
2273 data->features &= ~FEAT_OLD_AUTOPWM;
Guenter Roeck9faf28c2015-02-12 07:11:38 -08002274 data->features |= FEAT_FAN16_CONFIG | FEAT_16BIT_FANS |
2275 FEAT_FIVE_FANS;
Guenter Roeck483db432012-12-19 22:17:02 +01002276 }
2277 break;
2278 default:
2279 break;
2280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
2282 /* Now, we do the remaining detection. */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002283 if ((it87_read_value(data, IT87_REG_CONFIG) & 0x80)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002284 || it87_read_value(data, IT87_REG_CHIPID) != 0x90)
2285 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002287 platform_set_drvdata(pdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
Ingo Molnar9a61bf62006-01-18 23:19:26 +01002289 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 /* Check PWM configuration */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002292 enable_pwm_interface = it87_check_pwm(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002294 /* Starting with IT8721F, we handle scaling of internal voltages */
Jean Delvare16b5dda2012-01-16 22:51:48 +01002295 if (has_12mv_adc(data)) {
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002296 if (sio_data->internal & (1 << 0))
2297 data->in_scaled |= (1 << 3); /* in3 is AVCC */
2298 if (sio_data->internal & (1 << 1))
2299 data->in_scaled |= (1 << 7); /* in7 is VSB */
2300 if (sio_data->internal & (1 << 2))
2301 data->in_scaled |= (1 << 8); /* in8 is Vbat */
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002302 if (sio_data->internal & (1 << 3))
2303 data->in_scaled |= (1 << 9); /* in9 is AVCC */
Guenter Roeck7bc32d22015-01-17 14:10:24 -08002304 } else if (sio_data->type == it8781 || sio_data->type == it8782 ||
2305 sio_data->type == it8783) {
Guenter Roeck0531d982012-03-02 11:46:44 -08002306 if (sio_data->internal & (1 << 0))
2307 data->in_scaled |= (1 << 3); /* in3 is VCC5V */
2308 if (sio_data->internal & (1 << 1))
2309 data->in_scaled |= (1 << 7); /* in7 is VCCH5V */
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002310 }
2311
Guenter Roeck4573acb2012-03-26 16:17:41 -07002312 data->has_temp = 0x07;
2313 if (sio_data->skip_temp & (1 << 2)) {
2314 if (sio_data->type == it8782
2315 && !(it87_read_value(data, IT87_REG_TEMP_EXTRA) & 0x80))
2316 data->has_temp &= ~(1 << 2);
2317 }
2318
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 /* Initialize the IT87 chip */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002320 it87_init_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321
2322 /* Register sysfs hooks */
Jean Delvare5f2dc792010-03-05 22:17:18 +01002323 err = sysfs_create_group(&dev->kobj, &it87_group);
2324 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002325 return err;
Jean Delvare17d648b2006-08-28 14:23:46 +02002326
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002327 for (i = 0; i < 10; i++) {
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002328 if (sio_data->skip_in & (1 << i))
2329 continue;
2330 err = sysfs_create_group(&dev->kobj, &it87_group_in[i]);
2331 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002332 goto error;
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002333 if (sio_data->beep_pin && it87_attributes_in_beep[i]) {
2334 err = sysfs_create_file(&dev->kobj,
2335 it87_attributes_in_beep[i]);
2336 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002337 goto error;
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002338 }
2339 }
2340
Guenter Roeck4573acb2012-03-26 16:17:41 -07002341 for (i = 0; i < 3; i++) {
2342 if (!(data->has_temp & (1 << i)))
2343 continue;
2344 err = sysfs_create_group(&dev->kobj, &it87_group_temp[i]);
Jean Delvared9b327c2010-03-05 22:17:17 +01002345 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002346 goto error;
Guenter Roeck161d8982012-12-19 22:17:01 +01002347 if (has_temp_offset(data)) {
2348 err = sysfs_create_file(&dev->kobj,
2349 it87_attributes_temp_offset[i]);
2350 if (err)
2351 goto error;
2352 }
Guenter Roeck4573acb2012-03-26 16:17:41 -07002353 if (sio_data->beep_pin) {
2354 err = sysfs_create_file(&dev->kobj,
2355 it87_attributes_temp_beep[i]);
2356 if (err)
2357 goto error;
2358 }
Jean Delvared9b327c2010-03-05 22:17:17 +01002359 }
2360
Jean Delvare9060f8b2006-08-28 14:24:17 +02002361 /* Do not create fan files for disabled fans */
Jean Delvared9b327c2010-03-05 22:17:17 +01002362 fan_beep_need_rw = 1;
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07002363 for (i = 0; i < 6; i++) {
Jean Delvare723a0aa2010-03-05 22:17:16 +01002364 if (!(data->has_fan & (1 << i)))
2365 continue;
Guenter Roecke1169ba2012-12-19 22:17:01 +01002366 err = sysfs_create_group(&dev->kobj, &it87_group_fan[i]);
Jean Delvare723a0aa2010-03-05 22:17:16 +01002367 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002368 goto error;
Jean Delvared9b327c2010-03-05 22:17:17 +01002369
Guenter Roecke1169ba2012-12-19 22:17:01 +01002370 if (i < 3 && !has_16bit_fans(data)) {
2371 err = sysfs_create_file(&dev->kobj,
2372 it87_attributes_fan_div[i]);
2373 if (err)
2374 goto error;
2375 }
2376
Jean Delvared9b327c2010-03-05 22:17:17 +01002377 if (sio_data->beep_pin) {
2378 err = sysfs_create_file(&dev->kobj,
2379 it87_attributes_fan_beep[i]);
2380 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002381 goto error;
Jean Delvared9b327c2010-03-05 22:17:17 +01002382 if (!fan_beep_need_rw)
2383 continue;
2384
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002385 /*
2386 * As we have a single beep enable bit for all fans,
Jean Delvared9b327c2010-03-05 22:17:17 +01002387 * only the first enabled fan has a writable attribute
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002388 * for it.
2389 */
Jean Delvared9b327c2010-03-05 22:17:17 +01002390 if (sysfs_chmod_file(&dev->kobj,
2391 it87_attributes_fan_beep[i],
2392 S_IRUGO | S_IWUSR))
2393 dev_dbg(dev, "chmod +w fan%d_beep failed\n",
2394 i + 1);
2395 fan_beep_need_rw = 0;
2396 }
Jean Delvare17d648b2006-08-28 14:23:46 +02002397 }
2398
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 if (enable_pwm_interface) {
Jean Delvare723a0aa2010-03-05 22:17:16 +01002400 for (i = 0; i < 3; i++) {
2401 if (sio_data->skip_pwm & (1 << i))
2402 continue;
2403 err = sysfs_create_group(&dev->kobj,
2404 &it87_group_pwm[i]);
2405 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002406 goto error;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002407
2408 if (!has_old_autopwm(data))
2409 continue;
2410 err = sysfs_create_group(&dev->kobj,
2411 &it87_group_autopwm[i]);
2412 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002413 goto error;
Jean Delvare98dd22c2008-10-09 15:33:58 +02002414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 }
2416
Jean Delvare895ff262009-12-09 20:35:47 +01002417 if (!sio_data->skip_vid) {
Jean Delvare303760b2005-07-31 21:52:01 +02002418 data->vrm = vid_which_vrm();
Jean Delvare87673dd2006-08-28 14:37:19 +02002419 /* VID reading from Super-I/O config space if available */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002420 data->vid = sio_data->vid_value;
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01002421 err = sysfs_create_group(&dev->kobj, &it87_group_vid);
2422 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002423 goto error;
Jean Delvare87808be2006-09-24 21:17:13 +02002424 }
2425
Jean Delvare738e5e02010-08-14 21:08:50 +02002426 /* Export labels for internal sensors */
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002427 for (i = 0; i < 4; i++) {
Jean Delvare738e5e02010-08-14 21:08:50 +02002428 if (!(sio_data->internal & (1 << i)))
2429 continue;
2430 err = sysfs_create_file(&dev->kobj,
2431 it87_attributes_label[i]);
2432 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002433 goto error;
Jean Delvare738e5e02010-08-14 21:08:50 +02002434 }
2435
Tony Jones1beeffe2007-08-20 13:46:20 -07002436 data->hwmon_dev = hwmon_device_register(dev);
2437 if (IS_ERR(data->hwmon_dev)) {
2438 err = PTR_ERR(data->hwmon_dev);
Guenter Roeck62a1d052012-03-24 21:54:41 -07002439 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 }
2441
2442 return 0;
2443
Guenter Roeck62a1d052012-03-24 21:54:41 -07002444error:
Jean Delvare723a0aa2010-03-05 22:17:16 +01002445 it87_remove_files(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 return err;
2447}
2448
Bill Pemberton281dfd02012-11-19 13:25:51 -05002449static int it87_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002451 struct it87_data *data = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
Tony Jones1beeffe2007-08-20 13:46:20 -07002453 hwmon_device_unregister(data->hwmon_dev);
Jean Delvare723a0aa2010-03-05 22:17:16 +01002454 it87_remove_files(&pdev->dev);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04002455
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 return 0;
2457}
2458
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002459/*
2460 * Must be called with data->update_lock held, except during initialization.
2461 * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
2462 * would slow down the IT87 access and should not be necessary.
2463 */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002464static int it87_read_value(struct it87_data *data, u8 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002466 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
2467 return inb_p(data->addr + IT87_DATA_REG_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468}
2469
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002470/*
2471 * Must be called with data->update_lock held, except during initialization.
2472 * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
2473 * would slow down the IT87 access and should not be necessary.
2474 */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002475static void it87_write_value(struct it87_data *data, u8 reg, u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002477 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
2478 outb_p(value, data->addr + IT87_DATA_REG_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479}
2480
2481/* Return 1 if and only if the PWM interface is safe to use */
Bill Pemberton6c931ae2012-11-19 13:22:35 -05002482static int it87_check_pwm(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002484 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002485 /*
2486 * Some BIOSes fail to correctly configure the IT87 fans. All fans off
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 * and polarity set to active low is sign that this is the case so we
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002488 * disable pwm control to protect the user.
2489 */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002490 int tmp = it87_read_value(data, IT87_REG_FAN_CTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 if ((tmp & 0x87) == 0) {
2492 if (fix_pwm_polarity) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002493 /*
2494 * The user asks us to attempt a chip reconfiguration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 * This means switching to active high polarity and
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002496 * inverting all fan speed values.
2497 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 int i;
2499 u8 pwm[3];
2500
2501 for (i = 0; i < 3; i++)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002502 pwm[i] = it87_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 IT87_REG_PWM(i));
2504
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002505 /*
2506 * If any fan is in automatic pwm mode, the polarity
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 * might be correct, as suspicious as it seems, so we
2508 * better don't change anything (but still disable the
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002509 * PWM interface).
2510 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 if (!((pwm[0] | pwm[1] | pwm[2]) & 0x80)) {
Guenter Roeck1d9bcf62012-12-19 22:17:01 +01002512 dev_info(dev,
2513 "Reconfiguring PWM to active high polarity\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002514 it87_write_value(data, IT87_REG_FAN_CTL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 tmp | 0x87);
2516 for (i = 0; i < 3; i++)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002517 it87_write_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 IT87_REG_PWM(i),
2519 0x7f & ~pwm[i]);
2520 return 1;
2521 }
2522
Guenter Roeck1d9bcf62012-12-19 22:17:01 +01002523 dev_info(dev,
2524 "PWM configuration is too broken to be fixed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 }
2526
Guenter Roeck1d9bcf62012-12-19 22:17:01 +01002527 dev_info(dev,
2528 "Detected broken BIOS defaults, disabling PWM interface\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 return 0;
2530 } else if (fix_pwm_polarity) {
Guenter Roeck1d9bcf62012-12-19 22:17:01 +01002531 dev_info(dev,
2532 "PWM configuration looks sane, won't touch\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 }
2534
2535 return 1;
2536}
2537
2538/* Called when we have found a new IT87. */
Bill Pemberton6c931ae2012-11-19 13:22:35 -05002539static void it87_init_device(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540{
Jingoo Hana8b3a3a2013-07-30 17:13:06 +09002541 struct it87_sio_data *sio_data = dev_get_platdata(&pdev->dev);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002542 struct it87_data *data = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 int tmp, i;
Jean Delvare591ec652009-12-09 20:35:48 +01002544 u8 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002546 /*
2547 * For each PWM channel:
Jean Delvareb99883d2010-03-05 22:17:15 +01002548 * - If it is in automatic mode, setting to manual mode should set
2549 * the fan to full speed by default.
2550 * - If it is in manual mode, we need a mapping to temperature
2551 * channels to use when later setting to automatic mode later.
2552 * Use a 1:1 mapping by default (we are clueless.)
2553 * In both cases, the value can (and should) be changed by the user
Jean Delvare6229cdb2010-12-08 16:27:22 +01002554 * prior to switching to a different mode.
2555 * Note that this is no longer needed for the IT8721F and later, as
2556 * these have separate registers for the temperature mapping and the
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002557 * manual duty cycle.
2558 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 for (i = 0; i < 3; i++) {
Jean Delvareb99883d2010-03-05 22:17:15 +01002560 data->pwm_temp_map[i] = i;
2561 data->pwm_duty[i] = 0x7f; /* Full speed */
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002562 data->auto_pwm[i][3] = 0x7f; /* Full speed, hard-coded */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 }
2564
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002565 /*
2566 * Some chips seem to have default value 0xff for all limit
Jean Delvarec5df9b72006-08-28 14:37:54 +02002567 * registers. For low voltage limits it makes no sense and triggers
2568 * alarms, so change to 0 instead. For high temperature limits, it
2569 * means -1 degree C, which surprisingly doesn't trigger an alarm,
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002570 * but is still confusing, so change to 127 degrees C.
2571 */
Jean Delvarec5df9b72006-08-28 14:37:54 +02002572 for (i = 0; i < 8; i++) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002573 tmp = it87_read_value(data, IT87_REG_VIN_MIN(i));
Jean Delvarec5df9b72006-08-28 14:37:54 +02002574 if (tmp == 0xff)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002575 it87_write_value(data, IT87_REG_VIN_MIN(i), 0);
Jean Delvarec5df9b72006-08-28 14:37:54 +02002576 }
2577 for (i = 0; i < 3; i++) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002578 tmp = it87_read_value(data, IT87_REG_TEMP_HIGH(i));
Jean Delvarec5df9b72006-08-28 14:37:54 +02002579 if (tmp == 0xff)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002580 it87_write_value(data, IT87_REG_TEMP_HIGH(i), 127);
Jean Delvarec5df9b72006-08-28 14:37:54 +02002581 }
2582
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002583 /*
2584 * Temperature channels are not forcibly enabled, as they can be
Jean Delvarea00afb92010-04-14 16:14:09 +02002585 * set to two different sensor types and we can't guess which one
2586 * is correct for a given system. These channels can be enabled at
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002587 * run-time through the temp{1-3}_type sysfs accessors if needed.
2588 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589
2590 /* Check if voltage monitors are reset manually or by some reason */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002591 tmp = it87_read_value(data, IT87_REG_VIN_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 if ((tmp & 0xff) == 0) {
2593 /* Enable all voltage monitors */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002594 it87_write_value(data, IT87_REG_VIN_ENABLE, 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 }
2596
2597 /* Check if tachometers are reset manually or by some reason */
Jean Delvare591ec652009-12-09 20:35:48 +01002598 mask = 0x70 & ~(sio_data->skip_fan << 4);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002599 data->fan_main_ctrl = it87_read_value(data, IT87_REG_FAN_MAIN_CTRL);
Jean Delvare591ec652009-12-09 20:35:48 +01002600 if ((data->fan_main_ctrl & mask) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 /* Enable all fan tachometers */
Jean Delvare591ec652009-12-09 20:35:48 +01002602 data->fan_main_ctrl |= mask;
Jean Delvare5f2dc792010-03-05 22:17:18 +01002603 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
2604 data->fan_main_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 }
Jean Delvare9060f8b2006-08-28 14:24:17 +02002606 data->has_fan = (data->fan_main_ctrl >> 4) & 0x07;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07002608 tmp = it87_read_value(data, IT87_REG_FAN_16BIT);
2609
Guenter Roeck9faf28c2015-02-12 07:11:38 -08002610 /* Set tachometers to 16-bit mode if needed */
2611 if (has_fan16_config(data)) {
Jean Delvare9060f8b2006-08-28 14:24:17 +02002612 if (~tmp & 0x07 & data->has_fan) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002613 dev_dbg(&pdev->dev,
Jean Delvare17d648b2006-08-28 14:23:46 +02002614 "Setting fan1-3 to 16-bit mode\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002615 it87_write_value(data, IT87_REG_FAN_16BIT,
Jean Delvare17d648b2006-08-28 14:23:46 +02002616 tmp | 0x07);
2617 }
Guenter Roeck9faf28c2015-02-12 07:11:38 -08002618 }
2619
2620 /* Check for additional fans */
2621 if (has_five_fans(data)) {
Guenter Roeck9faf28c2015-02-12 07:11:38 -08002622 if (tmp & (1 << 4))
2623 data->has_fan |= (1 << 3); /* fan4 enabled */
2624 if (tmp & (1 << 5))
2625 data->has_fan |= (1 << 4); /* fan5 enabled */
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07002626 if (has_six_fans(data) && (tmp & (1 << 2)))
2627 data->has_fan |= (1 << 5); /* fan6 enabled */
Jean Delvare17d648b2006-08-28 14:23:46 +02002628 }
2629
Jean Delvare591ec652009-12-09 20:35:48 +01002630 /* Fan input pins may be used for alternative functions */
2631 data->has_fan &= ~sio_data->skip_fan;
2632
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 /* Start monitoring */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002634 it87_write_value(data, IT87_REG_CONFIG,
Jean Delvare41002f82012-07-12 22:47:37 +02002635 (it87_read_value(data, IT87_REG_CONFIG) & 0x3e)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 | (update_vbat ? 0x41 : 0x01));
2637}
2638
Jean Delvareb99883d2010-03-05 22:17:15 +01002639static void it87_update_pwm_ctrl(struct it87_data *data, int nr)
2640{
2641 data->pwm_ctrl[nr] = it87_read_value(data, IT87_REG_PWM(nr));
Jean Delvare16b5dda2012-01-16 22:51:48 +01002642 if (has_newer_autopwm(data)) {
Jean Delvareb99883d2010-03-05 22:17:15 +01002643 data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03;
Jean Delvare6229cdb2010-12-08 16:27:22 +01002644 data->pwm_duty[nr] = it87_read_value(data,
2645 IT87_REG_PWM_DUTY(nr));
2646 } else {
2647 if (data->pwm_ctrl[nr] & 0x80) /* Automatic mode */
2648 data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03;
2649 else /* Manual mode */
2650 data->pwm_duty[nr] = data->pwm_ctrl[nr] & 0x7f;
2651 }
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002652
2653 if (has_old_autopwm(data)) {
2654 int i;
2655
2656 for (i = 0; i < 5 ; i++)
2657 data->auto_temp[nr][i] = it87_read_value(data,
2658 IT87_REG_AUTO_TEMP(nr, i));
2659 for (i = 0; i < 3 ; i++)
2660 data->auto_pwm[nr][i] = it87_read_value(data,
2661 IT87_REG_AUTO_PWM(nr, i));
2662 }
Jean Delvareb99883d2010-03-05 22:17:15 +01002663}
2664
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665static struct it87_data *it87_update_device(struct device *dev)
2666{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002667 struct it87_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 int i;
2669
Ingo Molnar9a61bf62006-01-18 23:19:26 +01002670 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671
2672 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
2673 || !data->valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 if (update_vbat) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002675 /*
2676 * Cleared after each update, so reenable. Value
2677 * returned by this read will be previous value
2678 */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002679 it87_write_value(data, IT87_REG_CONFIG,
Jean Delvare5f2dc792010-03-05 22:17:18 +01002680 it87_read_value(data, IT87_REG_CONFIG) | 0x40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 }
2682 for (i = 0; i <= 7; i++) {
Guenter Roeck929c6a52012-12-19 22:17:00 +01002683 data->in[i][0] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002684 it87_read_value(data, IT87_REG_VIN(i));
Guenter Roeck929c6a52012-12-19 22:17:00 +01002685 data->in[i][1] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002686 it87_read_value(data, IT87_REG_VIN_MIN(i));
Guenter Roeck929c6a52012-12-19 22:17:00 +01002687 data->in[i][2] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002688 it87_read_value(data, IT87_REG_VIN_MAX(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 }
Jean Delvare3543a532006-08-28 14:27:25 +02002690 /* in8 (battery) has no limit registers */
Guenter Roeck929c6a52012-12-19 22:17:00 +01002691 data->in[8][0] = it87_read_value(data, IT87_REG_VIN(8));
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002692 if (data->type == it8603)
2693 data->in[9][0] = it87_read_value(data, 0x2f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07002695 for (i = 0; i < 6; i++) {
Jean Delvare9060f8b2006-08-28 14:24:17 +02002696 /* Skip disabled fans */
2697 if (!(data->has_fan & (1 << i)))
2698 continue;
2699
Guenter Roecke1169ba2012-12-19 22:17:01 +01002700 data->fan[i][1] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002701 it87_read_value(data, IT87_REG_FAN_MIN[i]);
Guenter Roecke1169ba2012-12-19 22:17:01 +01002702 data->fan[i][0] = it87_read_value(data,
Jean Delvarec7f1f712007-09-03 17:11:46 +02002703 IT87_REG_FAN[i]);
Jean Delvare17d648b2006-08-28 14:23:46 +02002704 /* Add high byte if in 16-bit mode */
Andrew Paprocki04751692008-08-06 22:41:06 +02002705 if (has_16bit_fans(data)) {
Guenter Roecke1169ba2012-12-19 22:17:01 +01002706 data->fan[i][0] |= it87_read_value(data,
Jean Delvarec7f1f712007-09-03 17:11:46 +02002707 IT87_REG_FANX[i]) << 8;
Guenter Roecke1169ba2012-12-19 22:17:01 +01002708 data->fan[i][1] |= it87_read_value(data,
Jean Delvarec7f1f712007-09-03 17:11:46 +02002709 IT87_REG_FANX_MIN[i]) << 8;
Jean Delvare17d648b2006-08-28 14:23:46 +02002710 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 }
2712 for (i = 0; i < 3; i++) {
Guenter Roeck4573acb2012-03-26 16:17:41 -07002713 if (!(data->has_temp & (1 << i)))
2714 continue;
Guenter Roeck60ca3852012-12-19 22:17:00 +01002715 data->temp[i][0] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002716 it87_read_value(data, IT87_REG_TEMP(i));
Guenter Roeck60ca3852012-12-19 22:17:00 +01002717 data->temp[i][1] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002718 it87_read_value(data, IT87_REG_TEMP_LOW(i));
Guenter Roeck60ca3852012-12-19 22:17:00 +01002719 data->temp[i][2] =
2720 it87_read_value(data, IT87_REG_TEMP_HIGH(i));
Guenter Roeck161d8982012-12-19 22:17:01 +01002721 if (has_temp_offset(data))
2722 data->temp[i][3] =
2723 it87_read_value(data,
2724 IT87_REG_TEMP_OFFSET[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 }
2726
Jean Delvare17d648b2006-08-28 14:23:46 +02002727 /* Newer chips don't have clock dividers */
Andrew Paprocki04751692008-08-06 22:41:06 +02002728 if ((data->has_fan & 0x07) && !has_16bit_fans(data)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002729 i = it87_read_value(data, IT87_REG_FAN_DIV);
Jean Delvare17d648b2006-08-28 14:23:46 +02002730 data->fan_div[0] = i & 0x07;
2731 data->fan_div[1] = (i >> 3) & 0x07;
2732 data->fan_div[2] = (i & 0x40) ? 3 : 1;
2733 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734
2735 data->alarms =
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002736 it87_read_value(data, IT87_REG_ALARM1) |
2737 (it87_read_value(data, IT87_REG_ALARM2) << 8) |
2738 (it87_read_value(data, IT87_REG_ALARM3) << 16);
Jean Delvared9b327c2010-03-05 22:17:17 +01002739 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
Jean Delvareb99883d2010-03-05 22:17:15 +01002740
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002741 data->fan_main_ctrl = it87_read_value(data,
2742 IT87_REG_FAN_MAIN_CTRL);
2743 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL);
Jean Delvareb99883d2010-03-05 22:17:15 +01002744 for (i = 0; i < 3; i++)
2745 it87_update_pwm_ctrl(data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002747 data->sensor = it87_read_value(data, IT87_REG_TEMP_ENABLE);
Guenter Roeck19529782012-12-19 22:17:02 +01002748 data->extra = it87_read_value(data, IT87_REG_TEMP_EXTRA);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002749 /*
2750 * The IT8705F does not have VID capability.
2751 * The IT8718F and later don't use IT87_REG_VID for the
2752 * same purpose.
2753 */
Jean Delvare17d648b2006-08-28 14:23:46 +02002754 if (data->type == it8712 || data->type == it8716) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002755 data->vid = it87_read_value(data, IT87_REG_VID);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002756 /*
2757 * The older IT8712F revisions had only 5 VID pins,
2758 * but we assume it is always safe to read 6 bits.
2759 */
Jean Delvare17d648b2006-08-28 14:23:46 +02002760 data->vid &= 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 }
2762 data->last_updated = jiffies;
2763 data->valid = 1;
2764 }
2765
Ingo Molnar9a61bf62006-01-18 23:19:26 +01002766 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767
2768 return data;
2769}
2770
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002771static int __init it87_device_add(unsigned short address,
2772 const struct it87_sio_data *sio_data)
2773{
2774 struct resource res = {
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05002775 .start = address + IT87_EC_OFFSET,
2776 .end = address + IT87_EC_OFFSET + IT87_EC_EXTENT - 1,
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002777 .name = DRVNAME,
2778 .flags = IORESOURCE_IO,
2779 };
2780 int err;
2781
Jean Delvareb9acb642009-01-07 16:37:35 +01002782 err = acpi_check_resource_conflict(&res);
2783 if (err)
2784 goto exit;
2785
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002786 pdev = platform_device_alloc(DRVNAME, address);
2787 if (!pdev) {
2788 err = -ENOMEM;
Joe Perchesa8ca1032011-01-12 21:55:10 +01002789 pr_err("Device allocation failed\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002790 goto exit;
2791 }
2792
2793 err = platform_device_add_resources(pdev, &res, 1);
2794 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002795 pr_err("Device resource addition failed (%d)\n", err);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002796 goto exit_device_put;
2797 }
2798
2799 err = platform_device_add_data(pdev, sio_data,
2800 sizeof(struct it87_sio_data));
2801 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002802 pr_err("Platform data allocation failed\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002803 goto exit_device_put;
2804 }
2805
2806 err = platform_device_add(pdev);
2807 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002808 pr_err("Device addition failed (%d)\n", err);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002809 goto exit_device_put;
2810 }
2811
2812 return 0;
2813
2814exit_device_put:
2815 platform_device_put(pdev);
2816exit:
2817 return err;
2818}
2819
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820static int __init sm_it87_init(void)
2821{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002822 int err;
Jean Delvare5f2dc792010-03-05 22:17:18 +01002823 unsigned short isa_address = 0;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002824 struct it87_sio_data sio_data;
Jean Delvarefde09502005-07-19 23:51:07 +02002825
Jean Delvare98dd22c2008-10-09 15:33:58 +02002826 memset(&sio_data, 0, sizeof(struct it87_sio_data));
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002827 err = it87_find(&isa_address, &sio_data);
2828 if (err)
2829 return err;
2830 err = platform_driver_register(&it87_driver);
2831 if (err)
2832 return err;
2833
2834 err = it87_device_add(isa_address, &sio_data);
Jean Delvare5f2dc792010-03-05 22:17:18 +01002835 if (err) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002836 platform_driver_unregister(&it87_driver);
2837 return err;
2838 }
2839
2840 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841}
2842
2843static void __exit sm_it87_exit(void)
2844{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002845 platform_device_unregister(pdev);
2846 platform_driver_unregister(&it87_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847}
2848
2849
Jean Delvare7c81c602014-01-29 20:40:08 +01002850MODULE_AUTHOR("Chris Gauthron, Jean Delvare <jdelvare@suse.de>");
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002851MODULE_DESCRIPTION("IT8705F/IT871xF/IT872xF hardware monitoring driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852module_param(update_vbat, bool, 0);
2853MODULE_PARM_DESC(update_vbat, "Update vbat if set else return powerup value");
2854module_param(fix_pwm_polarity, bool, 0);
Jean Delvare5f2dc792010-03-05 22:17:18 +01002855MODULE_PARM_DESC(fix_pwm_polarity,
2856 "Force PWM polarity to active high (DANGEROUS)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857MODULE_LICENSE("GPL");
2858
2859module_init(sm_it87_init);
2860module_exit(sm_it87_exit);