blob: 9f4c662c59056e1bde233395a9aaa68ebd5e88f0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jean Delvare5f2dc792010-03-05 22:17:18 +01002 * it87.c - Part of lm_sensors, Linux kernel modules for hardware
3 * monitoring.
4 *
5 * The IT8705F is an LPC-based Super I/O part that contains UARTs, a
6 * parallel port, an IR port, a MIDI port, a floppy controller, etc., in
7 * addition to an Environment Controller (Enhanced Hardware Monitor and
8 * Fan Controller)
9 *
10 * This driver supports only the Environment Controller in the IT8705F and
11 * similar parts. The other devices are supported by different drivers.
12 *
Rudolf Marekc145d5c2014-01-29 20:40:08 +010013 * Supports: IT8603E Super I/O chip w/LPC interface
Rudolf Marek574e9bd2014-04-04 18:01:35 +020014 * IT8623E Super I/O chip w/LPC interface
Rudolf Marekc145d5c2014-01-29 20:40:08 +010015 * IT8705F Super I/O chip w/LPC interface
Jean Delvare5f2dc792010-03-05 22:17:18 +010016 * IT8712F Super I/O chip w/LPC interface
17 * IT8716F Super I/O chip w/LPC interface
18 * IT8718F Super I/O chip w/LPC interface
19 * IT8720F Super I/O chip w/LPC interface
Jean Delvare44c1bcd2010-10-28 20:31:51 +020020 * IT8721F Super I/O chip w/LPC interface
Jean Delvare5f2dc792010-03-05 22:17:18 +010021 * IT8726F Super I/O chip w/LPC interface
Jean Delvare16b5dda2012-01-16 22:51:48 +010022 * IT8728F Super I/O chip w/LPC interface
Jean Delvare44c1bcd2010-10-28 20:31:51 +020023 * IT8758E Super I/O chip w/LPC interface
Guenter Roeckb0636702012-09-07 17:34:41 -060024 * IT8771E Super I/O chip w/LPC interface
25 * IT8772E Super I/O chip w/LPC interface
Guenter Roeck7bc32d22015-01-17 14:10:24 -080026 * IT8781F Super I/O chip w/LPC interface
Guenter Roeck0531d982012-03-02 11:46:44 -080027 * IT8782F Super I/O chip w/LPC interface
28 * IT8783E/F Super I/O chip w/LPC interface
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +010029 * IT8786E Super I/O chip w/LPC interface
Jean Delvare5f2dc792010-03-05 22:17:18 +010030 * Sis950 A clone of the IT8705F
31 *
32 * Copyright (C) 2001 Chris Gauthron
Jean Delvare7c81c602014-01-29 20:40:08 +010033 * Copyright (C) 2005-2010 Jean Delvare <jdelvare@suse.de>
Jean Delvare5f2dc792010-03-05 22:17:18 +010034 *
35 * This program is free software; you can redistribute it and/or modify
36 * it under the terms of the GNU General Public License as published by
37 * the Free Software Foundation; either version 2 of the License, or
38 * (at your option) any later version.
39 *
40 * This program is distributed in the hope that it will be useful,
41 * but WITHOUT ANY WARRANTY; without even the implied warranty of
42 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
43 * GNU General Public License for more details.
44 *
45 * You should have received a copy of the GNU General Public License
46 * along with this program; if not, write to the Free Software
47 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
48 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Joe Perchesa8ca1032011-01-12 21:55:10 +010050#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/module.h>
53#include <linux/init.h>
54#include <linux/slab.h>
55#include <linux/jiffies.h>
corentin.labbeb74f3fd2007-06-13 20:27:36 +020056#include <linux/platform_device.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040057#include <linux/hwmon.h>
Jean Delvare303760b2005-07-31 21:52:01 +020058#include <linux/hwmon-sysfs.h>
59#include <linux/hwmon-vid.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040060#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010061#include <linux/mutex.h>
Jean Delvare87808be2006-09-24 21:17:13 +020062#include <linux/sysfs.h>
Jean Delvare98dd22c2008-10-09 15:33:58 +020063#include <linux/string.h>
64#include <linux/dmi.h>
Jean Delvareb9acb642009-01-07 16:37:35 +010065#include <linux/acpi.h>
H Hartley Sweeten6055fae2009-09-15 17:18:13 +020066#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
corentin.labbeb74f3fd2007-06-13 20:27:36 +020068#define DRVNAME "it87"
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Guenter Roeckb0636702012-09-07 17:34:41 -060070enum chips { it87, it8712, it8716, it8718, it8720, it8721, it8728, it8771,
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +010071 it8772, it8781, it8782, it8783, it8786, it8603 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Jean Delvare67b671b2007-12-06 23:13:42 +010073static unsigned short force_id;
74module_param(force_id, ushort, 0);
75MODULE_PARM_DESC(force_id, "Override the detected device ID");
76
corentin.labbeb74f3fd2007-06-13 20:27:36 +020077static struct platform_device *pdev;
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#define REG 0x2e /* The register to read/write */
80#define DEV 0x07 /* Register: Logical device select */
81#define VAL 0x2f /* The value to read/write */
82#define PME 0x04 /* The device with the fan registers in it */
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +010083
84/* The device with the IT8718F/IT8720F VID value in it */
85#define GPIO 0x07
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#define DEVID 0x20 /* Register: Device ID */
88#define DEVREV 0x22 /* Register: Device Revision */
89
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +020090static inline int superio_inb(int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
92 outb(reg, REG);
93 return inb(VAL);
94}
95
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +020096static inline void superio_outb(int reg, int val)
Jean Delvare436cad22010-07-09 16:22:48 +020097{
98 outb(reg, REG);
99 outb(val, VAL);
100}
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102static int superio_inw(int reg)
103{
104 int val;
105 outb(reg++, REG);
106 val = inb(VAL) << 8;
107 outb(reg, REG);
108 val |= inb(VAL);
109 return val;
110}
111
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200112static inline void superio_select(int ldn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
114 outb(DEV, REG);
Jean Delvare87673dd2006-08-28 14:37:19 +0200115 outb(ldn, VAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
117
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200118static inline int superio_enter(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200120 /*
121 * Try to reserve REG and REG + 1 for exclusive access.
122 */
123 if (!request_muxed_region(REG, 2, DRVNAME))
124 return -EBUSY;
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 outb(0x87, REG);
127 outb(0x01, REG);
128 outb(0x55, REG);
129 outb(0x55, REG);
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200130 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131}
132
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200133static inline void superio_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
135 outb(0x02, REG);
136 outb(0x02, VAL);
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200137 release_region(REG, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
139
Jean Delvare87673dd2006-08-28 14:37:19 +0200140/* Logical device 4 registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141#define IT8712F_DEVID 0x8712
142#define IT8705F_DEVID 0x8705
Jean Delvare17d648b2006-08-28 14:23:46 +0200143#define IT8716F_DEVID 0x8716
Jean Delvare87673dd2006-08-28 14:37:19 +0200144#define IT8718F_DEVID 0x8718
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +0100145#define IT8720F_DEVID 0x8720
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200146#define IT8721F_DEVID 0x8721
Rudolf Marek08a8f6e2007-06-09 10:11:16 -0400147#define IT8726F_DEVID 0x8726
Jean Delvare16b5dda2012-01-16 22:51:48 +0100148#define IT8728F_DEVID 0x8728
Guenter Roeckb0636702012-09-07 17:34:41 -0600149#define IT8771E_DEVID 0x8771
150#define IT8772E_DEVID 0x8772
Guenter Roeck7bc32d22015-01-17 14:10:24 -0800151#define IT8781F_DEVID 0x8781
Guenter Roeck0531d982012-03-02 11:46:44 -0800152#define IT8782F_DEVID 0x8782
153#define IT8783E_DEVID 0x8783
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +0100154#define IT8786E_DEVID 0x8786
Rudolf Marek7183ae82014-04-04 18:01:35 +0200155#define IT8603E_DEVID 0x8603
Rudolf Marek574e9bd2014-04-04 18:01:35 +0200156#define IT8623E_DEVID 0x8623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157#define IT87_ACT_REG 0x30
158#define IT87_BASE_REG 0x60
159
Jean Delvare87673dd2006-08-28 14:37:19 +0200160/* Logical device 7 registers (IT8712F and later) */
Guenter Roeck0531d982012-03-02 11:46:44 -0800161#define IT87_SIO_GPIO1_REG 0x25
Jean Delvare895ff262009-12-09 20:35:47 +0100162#define IT87_SIO_GPIO3_REG 0x27
Jean Delvare591ec652009-12-09 20:35:48 +0100163#define IT87_SIO_GPIO5_REG 0x29
Guenter Roeck0531d982012-03-02 11:46:44 -0800164#define IT87_SIO_PINX1_REG 0x2a /* Pin selection */
Jean Delvare87673dd2006-08-28 14:37:19 +0200165#define IT87_SIO_PINX2_REG 0x2c /* Pin selection */
Guenter Roeck0531d982012-03-02 11:46:44 -0800166#define IT87_SIO_SPI_REG 0xef /* SPI function pin select */
Jean Delvare87673dd2006-08-28 14:37:19 +0200167#define IT87_SIO_VID_REG 0xfc /* VID value */
Jean Delvared9b327c2010-03-05 22:17:17 +0100168#define IT87_SIO_BEEP_PIN_REG 0xf6 /* Beep pin mapping */
Jean Delvare87673dd2006-08-28 14:37:19 +0200169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170/* Update battery voltage after every reading if true */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030171static bool update_vbat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173/* Not all BIOSes properly configure the PWM registers */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030174static bool fix_pwm_polarity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176/* Many IT87 constants specified below */
177
178/* Length of ISA address segment */
179#define IT87_EXTENT 8
180
Bjorn Helgaas87b4b662008-01-22 07:21:03 -0500181/* Length of ISA address segment for Environmental Controller */
182#define IT87_EC_EXTENT 2
183
184/* Offset of EC registers from ISA base address */
185#define IT87_EC_OFFSET 5
186
187/* Where are the ISA address/data registers relative to the EC base address */
188#define IT87_ADDR_REG_OFFSET 0
189#define IT87_DATA_REG_OFFSET 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191/*----- The IT87 registers -----*/
192
193#define IT87_REG_CONFIG 0x00
194
195#define IT87_REG_ALARM1 0x01
196#define IT87_REG_ALARM2 0x02
197#define IT87_REG_ALARM3 0x03
198
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800199/*
200 * The IT8718F and IT8720F have the VID value in a different register, in
201 * Super-I/O configuration space.
202 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203#define IT87_REG_VID 0x0a
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800204/*
205 * The IT8705F and IT8712F earlier than revision 0x08 use register 0x0b
206 * for fan divisors. Later IT8712F revisions must use 16-bit tachometer
207 * mode.
208 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209#define IT87_REG_FAN_DIV 0x0b
Jean Delvare17d648b2006-08-28 14:23:46 +0200210#define IT87_REG_FAN_16BIT 0x0c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212/* Monitors: 9 voltage (0 to 7, battery), 3 temp (1 to 3), 3 fan (1 to 3) */
213
Jean Delvarec7f1f712007-09-03 17:11:46 +0200214static const u8 IT87_REG_FAN[] = { 0x0d, 0x0e, 0x0f, 0x80, 0x82 };
215static const u8 IT87_REG_FAN_MIN[] = { 0x10, 0x11, 0x12, 0x84, 0x86 };
216static const u8 IT87_REG_FANX[] = { 0x18, 0x19, 0x1a, 0x81, 0x83 };
217static const u8 IT87_REG_FANX_MIN[] = { 0x1b, 0x1c, 0x1d, 0x85, 0x87 };
Guenter Roeck161d8982012-12-19 22:17:01 +0100218static const u8 IT87_REG_TEMP_OFFSET[] = { 0x56, 0x57, 0x59 };
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220#define IT87_REG_FAN_MAIN_CTRL 0x13
221#define IT87_REG_FAN_CTL 0x14
222#define IT87_REG_PWM(nr) (0x15 + (nr))
Jean Delvare6229cdb2010-12-08 16:27:22 +0100223#define IT87_REG_PWM_DUTY(nr) (0x63 + (nr) * 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225#define IT87_REG_VIN(nr) (0x20 + (nr))
226#define IT87_REG_TEMP(nr) (0x29 + (nr))
227
228#define IT87_REG_VIN_MAX(nr) (0x30 + (nr) * 2)
229#define IT87_REG_VIN_MIN(nr) (0x31 + (nr) * 2)
230#define IT87_REG_TEMP_HIGH(nr) (0x40 + (nr) * 2)
231#define IT87_REG_TEMP_LOW(nr) (0x41 + (nr) * 2)
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233#define IT87_REG_VIN_ENABLE 0x50
234#define IT87_REG_TEMP_ENABLE 0x51
Guenter Roeck4573acb2012-03-26 16:17:41 -0700235#define IT87_REG_TEMP_EXTRA 0x55
Jean Delvared9b327c2010-03-05 22:17:17 +0100236#define IT87_REG_BEEP_ENABLE 0x5c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238#define IT87_REG_CHIPID 0x58
239
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100240#define IT87_REG_AUTO_TEMP(nr, i) (0x60 + (nr) * 8 + (i))
241#define IT87_REG_AUTO_PWM(nr, i) (0x65 + (nr) * 8 + (i))
242
Guenter Roeck483db432012-12-19 22:17:02 +0100243struct it87_devices {
244 const char *name;
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700245 const char * const suffix;
Guenter Roeck483db432012-12-19 22:17:02 +0100246 u16 features;
Guenter Roeck19529782012-12-19 22:17:02 +0100247 u8 peci_mask;
248 u8 old_peci_mask;
Guenter Roeck483db432012-12-19 22:17:02 +0100249};
250
251#define FEAT_12MV_ADC (1 << 0)
252#define FEAT_NEWER_AUTOPWM (1 << 1)
253#define FEAT_OLD_AUTOPWM (1 << 2)
254#define FEAT_16BIT_FANS (1 << 3)
255#define FEAT_TEMP_OFFSET (1 << 4)
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100256#define FEAT_TEMP_PECI (1 << 5)
Guenter Roeck19529782012-12-19 22:17:02 +0100257#define FEAT_TEMP_OLD_PECI (1 << 6)
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800258#define FEAT_FAN16_CONFIG (1 << 7) /* Need to enable 16-bit fans */
259#define FEAT_FIVE_FANS (1 << 8) /* Supports five fans */
Guenter Roeck32dd7c42015-02-12 07:40:23 -0800260#define FEAT_VID (1 << 9) /* Set if chip supports VID */
Guenter Roeck7f5726c2015-03-26 08:49:18 -0700261#define FEAT_IN7_INTERNAL (1 << 10) /* Set if in7 is internal */
Guenter Roeck483db432012-12-19 22:17:02 +0100262
263static const struct it87_devices it87_devices[] = {
264 [it87] = {
265 .name = "it87",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700266 .suffix = "F",
Guenter Roeck483db432012-12-19 22:17:02 +0100267 .features = FEAT_OLD_AUTOPWM, /* may need to overwrite */
268 },
269 [it8712] = {
270 .name = "it8712",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700271 .suffix = "F",
Guenter Roeck32dd7c42015-02-12 07:40:23 -0800272 .features = FEAT_OLD_AUTOPWM | FEAT_VID,
273 /* may need to overwrite */
Guenter Roeck483db432012-12-19 22:17:02 +0100274 },
275 [it8716] = {
276 .name = "it8716",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700277 .suffix = "F",
Guenter Roeck32dd7c42015-02-12 07:40:23 -0800278 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET | FEAT_VID
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800279 | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS,
Guenter Roeck483db432012-12-19 22:17:02 +0100280 },
281 [it8718] = {
282 .name = "it8718",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700283 .suffix = "F",
Guenter Roeck32dd7c42015-02-12 07:40:23 -0800284 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET | FEAT_VID
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800285 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS,
Guenter Roeck19529782012-12-19 22:17:02 +0100286 .old_peci_mask = 0x4,
Guenter Roeck483db432012-12-19 22:17:02 +0100287 },
288 [it8720] = {
289 .name = "it8720",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700290 .suffix = "F",
Guenter Roeck32dd7c42015-02-12 07:40:23 -0800291 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET | FEAT_VID
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800292 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS,
Guenter Roeck19529782012-12-19 22:17:02 +0100293 .old_peci_mask = 0x4,
Guenter Roeck483db432012-12-19 22:17:02 +0100294 },
295 [it8721] = {
296 .name = "it8721",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700297 .suffix = "F",
Guenter Roeck483db432012-12-19 22:17:02 +0100298 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800299 | FEAT_TEMP_OFFSET | FEAT_TEMP_OLD_PECI | FEAT_TEMP_PECI
Guenter Roeck7f5726c2015-03-26 08:49:18 -0700300 | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS | FEAT_IN7_INTERNAL,
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100301 .peci_mask = 0x05,
Guenter Roeck19529782012-12-19 22:17:02 +0100302 .old_peci_mask = 0x02, /* Actually reports PCH */
Guenter Roeck483db432012-12-19 22:17:02 +0100303 },
304 [it8728] = {
305 .name = "it8728",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700306 .suffix = "F",
Guenter Roeck483db432012-12-19 22:17:02 +0100307 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck7f5726c2015-03-26 08:49:18 -0700308 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_FIVE_FANS
309 | FEAT_IN7_INTERNAL,
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100310 .peci_mask = 0x07,
Guenter Roeck483db432012-12-19 22:17:02 +0100311 },
Guenter Roeckb0636702012-09-07 17:34:41 -0600312 [it8771] = {
313 .name = "it8771",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700314 .suffix = "E",
Guenter Roeckb0636702012-09-07 17:34:41 -0600315 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck7f5726c2015-03-26 08:49:18 -0700316 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL,
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800317 /* PECI: guesswork */
318 /* 12mV ADC (OHM) */
319 /* 16 bit fans (OHM) */
320 /* three fans, always 16 bit (guesswork) */
Guenter Roeckb0636702012-09-07 17:34:41 -0600321 .peci_mask = 0x07,
322 },
323 [it8772] = {
324 .name = "it8772",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700325 .suffix = "E",
Guenter Roeckb0636702012-09-07 17:34:41 -0600326 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck7f5726c2015-03-26 08:49:18 -0700327 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL,
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800328 /* PECI (coreboot) */
329 /* 12mV ADC (HWSensors4, OHM) */
330 /* 16 bit fans (HWSensors4, OHM) */
331 /* three fans, always 16 bit (datasheet) */
Guenter Roeckb0636702012-09-07 17:34:41 -0600332 .peci_mask = 0x07,
333 },
Guenter Roeck7bc32d22015-01-17 14:10:24 -0800334 [it8781] = {
335 .name = "it8781",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700336 .suffix = "F",
Guenter Roeck7bc32d22015-01-17 14:10:24 -0800337 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800338 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG,
Guenter Roeck7bc32d22015-01-17 14:10:24 -0800339 .old_peci_mask = 0x4,
340 },
Guenter Roeck483db432012-12-19 22:17:02 +0100341 [it8782] = {
342 .name = "it8782",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700343 .suffix = "F",
Guenter Roeck19529782012-12-19 22:17:02 +0100344 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800345 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG,
Guenter Roeck19529782012-12-19 22:17:02 +0100346 .old_peci_mask = 0x4,
Guenter Roeck483db432012-12-19 22:17:02 +0100347 },
348 [it8783] = {
349 .name = "it8783",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700350 .suffix = "E/F",
Guenter Roeck19529782012-12-19 22:17:02 +0100351 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800352 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG,
Guenter Roeck19529782012-12-19 22:17:02 +0100353 .old_peci_mask = 0x4,
Guenter Roeck483db432012-12-19 22:17:02 +0100354 },
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +0100355 [it8786] = {
356 .name = "it8786",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700357 .suffix = "E",
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +0100358 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck7f5726c2015-03-26 08:49:18 -0700359 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL,
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +0100360 .peci_mask = 0x07,
361 },
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100362 [it8603] = {
363 .name = "it8603",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700364 .suffix = "E",
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100365 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck7f5726c2015-03-26 08:49:18 -0700366 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL,
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100367 .peci_mask = 0x07,
368 },
Guenter Roeck483db432012-12-19 22:17:02 +0100369};
370
371#define has_16bit_fans(data) ((data)->features & FEAT_16BIT_FANS)
372#define has_12mv_adc(data) ((data)->features & FEAT_12MV_ADC)
373#define has_newer_autopwm(data) ((data)->features & FEAT_NEWER_AUTOPWM)
374#define has_old_autopwm(data) ((data)->features & FEAT_OLD_AUTOPWM)
375#define has_temp_offset(data) ((data)->features & FEAT_TEMP_OFFSET)
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100376#define has_temp_peci(data, nr) (((data)->features & FEAT_TEMP_PECI) && \
377 ((data)->peci_mask & (1 << nr)))
Guenter Roeck19529782012-12-19 22:17:02 +0100378#define has_temp_old_peci(data, nr) \
379 (((data)->features & FEAT_TEMP_OLD_PECI) && \
380 ((data)->old_peci_mask & (1 << nr)))
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800381#define has_fan16_config(data) ((data)->features & FEAT_FAN16_CONFIG)
382#define has_five_fans(data) ((data)->features & FEAT_FIVE_FANS)
Guenter Roeck32dd7c42015-02-12 07:40:23 -0800383#define has_vid(data) ((data)->features & FEAT_VID)
Guenter Roeck7f5726c2015-03-26 08:49:18 -0700384#define has_in7_internal(data) ((data)->features & FEAT_IN7_INTERNAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200386struct it87_sio_data {
387 enum chips type;
388 /* Values read from Super-I/O config space */
Andrew Paprocki04751692008-08-06 22:41:06 +0200389 u8 revision;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200390 u8 vid_value;
Jean Delvared9b327c2010-03-05 22:17:17 +0100391 u8 beep_pin;
Jean Delvare738e5e02010-08-14 21:08:50 +0200392 u8 internal; /* Internal sensors can be labeled */
Jean Delvare591ec652009-12-09 20:35:48 +0100393 /* Features skipped based on config or DMI */
Guenter Roeck9172b5d2012-03-24 21:49:54 -0700394 u16 skip_in;
Jean Delvare895ff262009-12-09 20:35:47 +0100395 u8 skip_vid;
Jean Delvare591ec652009-12-09 20:35:48 +0100396 u8 skip_fan;
Jean Delvare98dd22c2008-10-09 15:33:58 +0200397 u8 skip_pwm;
Guenter Roeck4573acb2012-03-26 16:17:41 -0700398 u8 skip_temp;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200399};
400
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800401/*
402 * For each registered chip, we need to keep some data in memory.
403 * The structure is dynamically allocated.
404 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405struct it87_data {
Tony Jones1beeffe2007-08-20 13:46:20 -0700406 struct device *hwmon_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 enum chips type;
Guenter Roeck483db432012-12-19 22:17:02 +0100408 u16 features;
Guenter Roeck19529782012-12-19 22:17:02 +0100409 u8 peci_mask;
410 u8 old_peci_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200412 unsigned short addr;
413 const char *name;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100414 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 char valid; /* !=0 if following fields are valid */
416 unsigned long last_updated; /* In jiffies */
417
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200418 u16 in_scaled; /* Internal voltage sensors are scaled */
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100419 u8 in[10][3]; /* [nr][0]=in, [1]=min, [2]=max */
Jean Delvare9060f8b2006-08-28 14:24:17 +0200420 u8 has_fan; /* Bitfield, fans enabled */
Guenter Roecke1169ba2012-12-19 22:17:01 +0100421 u16 fan[5][2]; /* Register values, [nr][0]=fan, [1]=min */
Guenter Roeck4573acb2012-03-26 16:17:41 -0700422 u8 has_temp; /* Bitfield, temp sensors enabled */
Guenter Roeck161d8982012-12-19 22:17:01 +0100423 s8 temp[3][4]; /* [nr][0]=temp, [1]=min, [2]=max, [3]=offset */
Guenter Roeck19529782012-12-19 22:17:02 +0100424 u8 sensor; /* Register value (IT87_REG_TEMP_ENABLE) */
425 u8 extra; /* Register value (IT87_REG_TEMP_EXTRA) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 u8 fan_div[3]; /* Register encoding, shifted right */
427 u8 vid; /* Register encoding, combined */
Jean Delvarea7be58a2005-12-18 16:40:14 +0100428 u8 vrm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 u32 alarms; /* Register encoding, combined */
Jean Delvared9b327c2010-03-05 22:17:17 +0100430 u8 beeps; /* Register encoding */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 u8 fan_main_ctrl; /* Register value */
Jean Delvaref8d0c192007-02-14 21:15:02 +0100432 u8 fan_ctl; /* Register value */
Jean Delvareb99883d2010-03-05 22:17:15 +0100433
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800434 /*
435 * The following 3 arrays correspond to the same registers up to
Jean Delvare6229cdb2010-12-08 16:27:22 +0100436 * the IT8720F. The meaning of bits 6-0 depends on the value of bit
437 * 7, and we want to preserve settings on mode changes, so we have
438 * to track all values separately.
439 * Starting with the IT8721F, the manual PWM duty cycles are stored
440 * in separate registers (8-bit values), so the separate tracking
441 * is no longer needed, but it is still done to keep the driver
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800442 * simple.
443 */
Jean Delvareb99883d2010-03-05 22:17:15 +0100444 u8 pwm_ctrl[3]; /* Register value */
Jean Delvare6229cdb2010-12-08 16:27:22 +0100445 u8 pwm_duty[3]; /* Manual PWM value set by user */
Jean Delvareb99883d2010-03-05 22:17:15 +0100446 u8 pwm_temp_map[3]; /* PWM to temp. chan. mapping (bits 1-0) */
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100447
448 /* Automatic fan speed control registers */
449 u8 auto_pwm[3][4]; /* [nr][3] is hard-coded */
450 s8 auto_temp[3][5]; /* [nr][0] is point1_temp_hyst */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451};
452
Guenter Roeck0531d982012-03-02 11:46:44 -0800453static int adc_lsb(const struct it87_data *data, int nr)
454{
455 int lsb = has_12mv_adc(data) ? 12 : 16;
456 if (data->in_scaled & (1 << nr))
457 lsb <<= 1;
458 return lsb;
459}
460
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200461static u8 in_to_reg(const struct it87_data *data, int nr, long val)
462{
Guenter Roeck0531d982012-03-02 11:46:44 -0800463 val = DIV_ROUND_CLOSEST(val, adc_lsb(data, nr));
Guenter Roeck2a844c12013-01-09 08:09:34 -0800464 return clamp_val(val, 0, 255);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200465}
466
467static int in_from_reg(const struct it87_data *data, int nr, int val)
468{
Guenter Roeck0531d982012-03-02 11:46:44 -0800469 return val * adc_lsb(data, nr);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200470}
Jean Delvare0df6454d2010-10-28 20:31:51 +0200471
472static inline u8 FAN_TO_REG(long rpm, int div)
473{
474 if (rpm == 0)
475 return 255;
Guenter Roeck2a844c12013-01-09 08:09:34 -0800476 rpm = clamp_val(rpm, 1, 1000000);
477 return clamp_val((1350000 + rpm * div / 2) / (rpm * div), 1, 254);
Jean Delvare0df6454d2010-10-28 20:31:51 +0200478}
479
480static inline u16 FAN16_TO_REG(long rpm)
481{
482 if (rpm == 0)
483 return 0xffff;
Guenter Roeck2a844c12013-01-09 08:09:34 -0800484 return clamp_val((1350000 + rpm) / (rpm * 2), 1, 0xfffe);
Jean Delvare0df6454d2010-10-28 20:31:51 +0200485}
486
487#define FAN_FROM_REG(val, div) ((val) == 0 ? -1 : (val) == 255 ? 0 : \
488 1350000 / ((val) * (div)))
489/* The divider is fixed to 2 in 16-bit mode */
490#define FAN16_FROM_REG(val) ((val) == 0 ? -1 : (val) == 0xffff ? 0 : \
491 1350000 / ((val) * 2))
492
Guenter Roeck2a844c12013-01-09 08:09:34 -0800493#define TEMP_TO_REG(val) (clamp_val(((val) < 0 ? (((val) - 500) / 1000) : \
494 ((val) + 500) / 1000), -128, 127))
Jean Delvare0df6454d2010-10-28 20:31:51 +0200495#define TEMP_FROM_REG(val) ((val) * 1000)
496
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200497static u8 pwm_to_reg(const struct it87_data *data, long val)
498{
Jean Delvare16b5dda2012-01-16 22:51:48 +0100499 if (has_newer_autopwm(data))
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200500 return val;
501 else
502 return val >> 1;
503}
504
505static int pwm_from_reg(const struct it87_data *data, u8 reg)
506{
Jean Delvare16b5dda2012-01-16 22:51:48 +0100507 if (has_newer_autopwm(data))
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200508 return reg;
509 else
510 return (reg & 0x7f) << 1;
511}
512
Jean Delvare0df6454d2010-10-28 20:31:51 +0200513
514static int DIV_TO_REG(int val)
515{
516 int answer = 0;
517 while (answer < 7 && (val >>= 1))
518 answer++;
519 return answer;
520}
521#define DIV_FROM_REG(val) (1 << (val))
522
Guenter Roeckf56c9c02015-03-26 20:01:24 -0700523/*
524 * PWM base frequencies. The frequency has to be divided by either 128 or 256,
525 * depending on the chip type, to calculate the actual PWM frequency.
526 *
527 * Some of the chip datasheets suggest a base frequency of 51 kHz instead
528 * of 750 kHz for the slowest base frequency, resulting in a PWM frequency
529 * of 200 Hz. Sometimes both PWM frequency select registers are affected,
530 * sometimes just one. It is unknown if this is a datasheet error or real,
531 * so this is ignored for now.
532 */
Jean Delvare0df6454d2010-10-28 20:31:51 +0200533static const unsigned int pwm_freq[8] = {
Guenter Roeckf56c9c02015-03-26 20:01:24 -0700534 48000000,
535 24000000,
536 12000000,
537 8000000,
538 6000000,
539 3000000,
540 1500000,
541 750000,
Jean Delvare0df6454d2010-10-28 20:31:51 +0200542};
543
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200544static int it87_probe(struct platform_device *pdev);
Bill Pemberton281dfd02012-11-19 13:25:51 -0500545static int it87_remove(struct platform_device *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200547static int it87_read_value(struct it87_data *data, u8 reg);
548static void it87_write_value(struct it87_data *data, u8 reg, u8 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549static struct it87_data *it87_update_device(struct device *dev);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200550static int it87_check_pwm(struct device *dev);
551static void it87_init_device(struct platform_device *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200554static struct platform_driver it87_driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100555 .driver = {
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200556 .name = DRVNAME,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100557 },
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200558 .probe = it87_probe,
Bill Pemberton9e5e9b72012-11-19 13:21:20 -0500559 .remove = it87_remove,
Jean Delvarefde09502005-07-19 23:51:07 +0200560};
561
Jean Delvare20ad93d2005-06-05 11:53:25 +0200562static ssize_t show_in(struct device *dev, struct device_attribute *attr,
Guenter Roeck929c6a52012-12-19 22:17:00 +0100563 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
Guenter Roeck929c6a52012-12-19 22:17:00 +0100565 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
566 int nr = sattr->nr;
567 int index = sattr->index;
Jean Delvare20ad93d2005-06-05 11:53:25 +0200568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 struct it87_data *data = it87_update_device(dev);
Guenter Roeck929c6a52012-12-19 22:17:00 +0100570 return sprintf(buf, "%d\n", in_from_reg(data, nr, data->in[nr][index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
572
Guenter Roeck929c6a52012-12-19 22:17:00 +0100573static ssize_t set_in(struct device *dev, struct device_attribute *attr,
574 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
Guenter Roeck929c6a52012-12-19 22:17:00 +0100576 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
577 int nr = sattr->nr;
578 int index = sattr->index;
Jean Delvare20ad93d2005-06-05 11:53:25 +0200579
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200580 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100581 unsigned long val;
582
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100583 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100584 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100586 mutex_lock(&data->update_lock);
Guenter Roeck929c6a52012-12-19 22:17:00 +0100587 data->in[nr][index] = in_to_reg(data, nr, val);
588 it87_write_value(data,
589 index == 1 ? IT87_REG_VIN_MIN(nr)
590 : IT87_REG_VIN_MAX(nr),
591 data->in[nr][index]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100592 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return count;
594}
595
Guenter Roeck929c6a52012-12-19 22:17:00 +0100596static SENSOR_DEVICE_ATTR_2(in0_input, S_IRUGO, show_in, NULL, 0, 0);
597static SENSOR_DEVICE_ATTR_2(in0_min, S_IRUGO | S_IWUSR, show_in, set_in,
598 0, 1);
599static SENSOR_DEVICE_ATTR_2(in0_max, S_IRUGO | S_IWUSR, show_in, set_in,
600 0, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Guenter Roeck929c6a52012-12-19 22:17:00 +0100602static SENSOR_DEVICE_ATTR_2(in1_input, S_IRUGO, show_in, NULL, 1, 0);
603static SENSOR_DEVICE_ATTR_2(in1_min, S_IRUGO | S_IWUSR, show_in, set_in,
604 1, 1);
605static SENSOR_DEVICE_ATTR_2(in1_max, S_IRUGO | S_IWUSR, show_in, set_in,
606 1, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Guenter Roeck929c6a52012-12-19 22:17:00 +0100608static SENSOR_DEVICE_ATTR_2(in2_input, S_IRUGO, show_in, NULL, 2, 0);
609static SENSOR_DEVICE_ATTR_2(in2_min, S_IRUGO | S_IWUSR, show_in, set_in,
610 2, 1);
611static SENSOR_DEVICE_ATTR_2(in2_max, S_IRUGO | S_IWUSR, show_in, set_in,
612 2, 2);
613
614static SENSOR_DEVICE_ATTR_2(in3_input, S_IRUGO, show_in, NULL, 3, 0);
615static SENSOR_DEVICE_ATTR_2(in3_min, S_IRUGO | S_IWUSR, show_in, set_in,
616 3, 1);
617static SENSOR_DEVICE_ATTR_2(in3_max, S_IRUGO | S_IWUSR, show_in, set_in,
618 3, 2);
619
620static SENSOR_DEVICE_ATTR_2(in4_input, S_IRUGO, show_in, NULL, 4, 0);
621static SENSOR_DEVICE_ATTR_2(in4_min, S_IRUGO | S_IWUSR, show_in, set_in,
622 4, 1);
623static SENSOR_DEVICE_ATTR_2(in4_max, S_IRUGO | S_IWUSR, show_in, set_in,
624 4, 2);
625
626static SENSOR_DEVICE_ATTR_2(in5_input, S_IRUGO, show_in, NULL, 5, 0);
627static SENSOR_DEVICE_ATTR_2(in5_min, S_IRUGO | S_IWUSR, show_in, set_in,
628 5, 1);
629static SENSOR_DEVICE_ATTR_2(in5_max, S_IRUGO | S_IWUSR, show_in, set_in,
630 5, 2);
631
632static SENSOR_DEVICE_ATTR_2(in6_input, S_IRUGO, show_in, NULL, 6, 0);
633static SENSOR_DEVICE_ATTR_2(in6_min, S_IRUGO | S_IWUSR, show_in, set_in,
634 6, 1);
635static SENSOR_DEVICE_ATTR_2(in6_max, S_IRUGO | S_IWUSR, show_in, set_in,
636 6, 2);
637
638static SENSOR_DEVICE_ATTR_2(in7_input, S_IRUGO, show_in, NULL, 7, 0);
639static SENSOR_DEVICE_ATTR_2(in7_min, S_IRUGO | S_IWUSR, show_in, set_in,
640 7, 1);
641static SENSOR_DEVICE_ATTR_2(in7_max, S_IRUGO | S_IWUSR, show_in, set_in,
642 7, 2);
643
644static SENSOR_DEVICE_ATTR_2(in8_input, S_IRUGO, show_in, NULL, 8, 0);
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100645static SENSOR_DEVICE_ATTR_2(in9_input, S_IRUGO, show_in, NULL, 9, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647/* 3 temperatures */
Jean Delvare20ad93d2005-06-05 11:53:25 +0200648static ssize_t show_temp(struct device *dev, struct device_attribute *attr,
Guenter Roeck60ca3852012-12-19 22:17:00 +0100649 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
Guenter Roeck60ca3852012-12-19 22:17:00 +0100651 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
652 int nr = sattr->nr;
653 int index = sattr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +0200655
Guenter Roeck60ca3852012-12-19 22:17:00 +0100656 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[nr][index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200658
Guenter Roeck60ca3852012-12-19 22:17:00 +0100659static ssize_t set_temp(struct device *dev, struct device_attribute *attr,
660 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661{
Guenter Roeck60ca3852012-12-19 22:17:00 +0100662 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
663 int nr = sattr->nr;
664 int index = sattr->index;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200665 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100666 long val;
Guenter Roeck161d8982012-12-19 22:17:01 +0100667 u8 reg, regval;
Jean Delvaref5f64502010-03-05 22:17:19 +0100668
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100669 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100670 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100672 mutex_lock(&data->update_lock);
Guenter Roeck161d8982012-12-19 22:17:01 +0100673
674 switch (index) {
675 default:
676 case 1:
677 reg = IT87_REG_TEMP_LOW(nr);
678 break;
679 case 2:
680 reg = IT87_REG_TEMP_HIGH(nr);
681 break;
682 case 3:
683 regval = it87_read_value(data, IT87_REG_BEEP_ENABLE);
684 if (!(regval & 0x80)) {
685 regval |= 0x80;
686 it87_write_value(data, IT87_REG_BEEP_ENABLE, regval);
687 }
688 data->valid = 0;
689 reg = IT87_REG_TEMP_OFFSET[nr];
690 break;
691 }
692
Guenter Roeck60ca3852012-12-19 22:17:00 +0100693 data->temp[nr][index] = TEMP_TO_REG(val);
Guenter Roeck161d8982012-12-19 22:17:01 +0100694 it87_write_value(data, reg, data->temp[nr][index]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100695 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 return count;
697}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200698
Guenter Roeck60ca3852012-12-19 22:17:00 +0100699static SENSOR_DEVICE_ATTR_2(temp1_input, S_IRUGO, show_temp, NULL, 0, 0);
700static SENSOR_DEVICE_ATTR_2(temp1_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
701 0, 1);
702static SENSOR_DEVICE_ATTR_2(temp1_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
703 0, 2);
Guenter Roeck161d8982012-12-19 22:17:01 +0100704static SENSOR_DEVICE_ATTR_2(temp1_offset, S_IRUGO | S_IWUSR, show_temp,
705 set_temp, 0, 3);
Guenter Roeck60ca3852012-12-19 22:17:00 +0100706static SENSOR_DEVICE_ATTR_2(temp2_input, S_IRUGO, show_temp, NULL, 1, 0);
707static SENSOR_DEVICE_ATTR_2(temp2_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
708 1, 1);
709static SENSOR_DEVICE_ATTR_2(temp2_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
710 1, 2);
Guenter Roeck161d8982012-12-19 22:17:01 +0100711static SENSOR_DEVICE_ATTR_2(temp2_offset, S_IRUGO | S_IWUSR, show_temp,
712 set_temp, 1, 3);
Guenter Roeck60ca3852012-12-19 22:17:00 +0100713static SENSOR_DEVICE_ATTR_2(temp3_input, S_IRUGO, show_temp, NULL, 2, 0);
714static SENSOR_DEVICE_ATTR_2(temp3_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
715 2, 1);
716static SENSOR_DEVICE_ATTR_2(temp3_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
717 2, 2);
Guenter Roeck161d8982012-12-19 22:17:01 +0100718static SENSOR_DEVICE_ATTR_2(temp3_offset, S_IRUGO | S_IWUSR, show_temp,
719 set_temp, 2, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Guenter Roeck2cece012012-12-19 22:17:01 +0100721static ssize_t show_temp_type(struct device *dev, struct device_attribute *attr,
722 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200724 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
725 int nr = sensor_attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 struct it87_data *data = it87_update_device(dev);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800727 u8 reg = data->sensor; /* In case value is updated while used */
Guenter Roeck19529782012-12-19 22:17:02 +0100728 u8 extra = data->extra;
Jean Delvare5f2dc792010-03-05 22:17:18 +0100729
Guenter Roeck19529782012-12-19 22:17:02 +0100730 if ((has_temp_peci(data, nr) && (reg >> 6 == nr + 1))
731 || (has_temp_old_peci(data, nr) && (extra & 0x80)))
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100732 return sprintf(buf, "6\n"); /* Intel PECI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 if (reg & (1 << nr))
734 return sprintf(buf, "3\n"); /* thermal diode */
735 if (reg & (8 << nr))
Jean Delvare4ed10772008-10-17 17:51:16 +0200736 return sprintf(buf, "4\n"); /* thermistor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 return sprintf(buf, "0\n"); /* disabled */
738}
Guenter Roeck2cece012012-12-19 22:17:01 +0100739
740static ssize_t set_temp_type(struct device *dev, struct device_attribute *attr,
741 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200743 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
744 int nr = sensor_attr->index;
745
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200746 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100747 long val;
Guenter Roeck19529782012-12-19 22:17:02 +0100748 u8 reg, extra;
Jean Delvaref5f64502010-03-05 22:17:19 +0100749
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100750 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100751 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Jean Delvare8acf07c2010-04-14 16:14:09 +0200753 reg = it87_read_value(data, IT87_REG_TEMP_ENABLE);
754 reg &= ~(1 << nr);
755 reg &= ~(8 << nr);
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100756 if (has_temp_peci(data, nr) && (reg >> 6 == nr + 1 || val == 6))
757 reg &= 0x3f;
Guenter Roeck19529782012-12-19 22:17:02 +0100758 extra = it87_read_value(data, IT87_REG_TEMP_EXTRA);
759 if (has_temp_old_peci(data, nr) && ((extra & 0x80) || val == 6))
760 extra &= 0x7f;
Jean Delvare4ed10772008-10-17 17:51:16 +0200761 if (val == 2) { /* backwards compatibility */
Guenter Roeck1d9bcf62012-12-19 22:17:01 +0100762 dev_warn(dev,
763 "Sensor type 2 is deprecated, please use 4 instead\n");
Jean Delvare4ed10772008-10-17 17:51:16 +0200764 val = 4;
765 }
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100766 /* 3 = thermal diode; 4 = thermistor; 6 = Intel PECI; 0 = disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 if (val == 3)
Jean Delvare8acf07c2010-04-14 16:14:09 +0200768 reg |= 1 << nr;
Jean Delvare4ed10772008-10-17 17:51:16 +0200769 else if (val == 4)
Jean Delvare8acf07c2010-04-14 16:14:09 +0200770 reg |= 8 << nr;
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100771 else if (has_temp_peci(data, nr) && val == 6)
772 reg |= (nr + 1) << 6;
Guenter Roeck19529782012-12-19 22:17:02 +0100773 else if (has_temp_old_peci(data, nr) && val == 6)
774 extra |= 0x80;
Jean Delvare8acf07c2010-04-14 16:14:09 +0200775 else if (val != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 return -EINVAL;
Jean Delvare8acf07c2010-04-14 16:14:09 +0200777
778 mutex_lock(&data->update_lock);
779 data->sensor = reg;
Guenter Roeck19529782012-12-19 22:17:02 +0100780 data->extra = extra;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200781 it87_write_value(data, IT87_REG_TEMP_ENABLE, data->sensor);
Guenter Roeck19529782012-12-19 22:17:02 +0100782 if (has_temp_old_peci(data, nr))
783 it87_write_value(data, IT87_REG_TEMP_EXTRA, data->extra);
Jean Delvare2b3d1d82010-04-14 16:14:10 +0200784 data->valid = 0; /* Force cache refresh */
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100785 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 return count;
787}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Guenter Roeck2cece012012-12-19 22:17:01 +0100789static SENSOR_DEVICE_ATTR(temp1_type, S_IRUGO | S_IWUSR, show_temp_type,
790 set_temp_type, 0);
791static SENSOR_DEVICE_ATTR(temp2_type, S_IRUGO | S_IWUSR, show_temp_type,
792 set_temp_type, 1);
793static SENSOR_DEVICE_ATTR(temp3_type, S_IRUGO | S_IWUSR, show_temp_type,
794 set_temp_type, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
796/* 3 Fans */
Jean Delvareb99883d2010-03-05 22:17:15 +0100797
798static int pwm_mode(const struct it87_data *data, int nr)
799{
800 int ctrl = data->fan_main_ctrl & (1 << nr);
801
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100802 if (ctrl == 0 && data->type != it8603) /* Full speed */
Jean Delvareb99883d2010-03-05 22:17:15 +0100803 return 0;
804 if (data->pwm_ctrl[nr] & 0x80) /* Automatic mode */
805 return 2;
806 else /* Manual mode */
807 return 1;
808}
809
Jean Delvare20ad93d2005-06-05 11:53:25 +0200810static ssize_t show_fan(struct device *dev, struct device_attribute *attr,
Guenter Roecke1169ba2012-12-19 22:17:01 +0100811 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
Guenter Roecke1169ba2012-12-19 22:17:01 +0100813 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
814 int nr = sattr->nr;
815 int index = sattr->index;
816 int speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +0200818
Guenter Roecke1169ba2012-12-19 22:17:01 +0100819 speed = has_16bit_fans(data) ?
820 FAN16_FROM_REG(data->fan[nr][index]) :
821 FAN_FROM_REG(data->fan[nr][index],
822 DIV_FROM_REG(data->fan_div[nr]));
823 return sprintf(buf, "%d\n", speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
Guenter Roecke1169ba2012-12-19 22:17:01 +0100825
Jean Delvare20ad93d2005-06-05 11:53:25 +0200826static ssize_t show_fan_div(struct device *dev, struct device_attribute *attr,
827 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200829 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
830 int nr = sensor_attr->index;
831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 struct it87_data *data = it87_update_device(dev);
833 return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[nr]));
834}
Jean Delvare5f2dc792010-03-05 22:17:18 +0100835static ssize_t show_pwm_enable(struct device *dev,
836 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200838 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
839 int nr = sensor_attr->index;
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 struct it87_data *data = it87_update_device(dev);
Jean Delvareb99883d2010-03-05 22:17:15 +0100842 return sprintf(buf, "%d\n", pwm_mode(data, nr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200844static ssize_t show_pwm(struct device *dev, struct device_attribute *attr,
845 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200847 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
848 int nr = sensor_attr->index;
849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 struct it87_data *data = it87_update_device(dev);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200851 return sprintf(buf, "%d\n",
852 pwm_from_reg(data, data->pwm_duty[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853}
Jean Delvaref8d0c192007-02-14 21:15:02 +0100854static ssize_t show_pwm_freq(struct device *dev, struct device_attribute *attr,
855 char *buf)
856{
857 struct it87_data *data = it87_update_device(dev);
858 int index = (data->fan_ctl >> 4) & 0x07;
Guenter Roeckf56c9c02015-03-26 20:01:24 -0700859 unsigned int freq;
Jean Delvaref8d0c192007-02-14 21:15:02 +0100860
Guenter Roeckf56c9c02015-03-26 20:01:24 -0700861 freq = pwm_freq[index] / (has_newer_autopwm(data) ? 256 : 128);
862
863 return sprintf(buf, "%u\n", freq);
Jean Delvaref8d0c192007-02-14 21:15:02 +0100864}
Guenter Roecke1169ba2012-12-19 22:17:01 +0100865
866static ssize_t set_fan(struct device *dev, struct device_attribute *attr,
867 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
Guenter Roecke1169ba2012-12-19 22:17:01 +0100869 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
870 int nr = sattr->nr;
871 int index = sattr->index;
Jean Delvare20ad93d2005-06-05 11:53:25 +0200872
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200873 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100874 long val;
Jean Delvare7f999aa2007-02-14 21:15:03 +0100875 u8 reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100877 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100878 return -EINVAL;
879
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100880 mutex_lock(&data->update_lock);
Guenter Roecke1169ba2012-12-19 22:17:01 +0100881
882 if (has_16bit_fans(data)) {
883 data->fan[nr][index] = FAN16_TO_REG(val);
884 it87_write_value(data, IT87_REG_FAN_MIN[nr],
885 data->fan[nr][index] & 0xff);
886 it87_write_value(data, IT87_REG_FANX_MIN[nr],
887 data->fan[nr][index] >> 8);
888 } else {
889 reg = it87_read_value(data, IT87_REG_FAN_DIV);
890 switch (nr) {
891 case 0:
892 data->fan_div[nr] = reg & 0x07;
893 break;
894 case 1:
895 data->fan_div[nr] = (reg >> 3) & 0x07;
896 break;
897 case 2:
898 data->fan_div[nr] = (reg & 0x40) ? 3 : 1;
899 break;
900 }
901 data->fan[nr][index] =
902 FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
903 it87_write_value(data, IT87_REG_FAN_MIN[nr],
904 data->fan[nr][index]);
Jean Delvare07eab462005-11-23 15:44:31 -0800905 }
906
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100907 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 return count;
909}
Guenter Roecke1169ba2012-12-19 22:17:01 +0100910
Jean Delvare20ad93d2005-06-05 11:53:25 +0200911static ssize_t set_fan_div(struct device *dev, struct device_attribute *attr,
912 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200914 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
915 int nr = sensor_attr->index;
916
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200917 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100918 unsigned long val;
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200919 int min;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 u8 old;
921
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100922 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100923 return -EINVAL;
924
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100925 mutex_lock(&data->update_lock);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200926 old = it87_read_value(data, IT87_REG_FAN_DIV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200928 /* Save fan min limit */
Guenter Roecke1169ba2012-12-19 22:17:01 +0100929 min = FAN_FROM_REG(data->fan[nr][1], DIV_FROM_REG(data->fan_div[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
931 switch (nr) {
932 case 0:
933 case 1:
934 data->fan_div[nr] = DIV_TO_REG(val);
935 break;
936 case 2:
937 if (val < 8)
938 data->fan_div[nr] = 1;
939 else
940 data->fan_div[nr] = 3;
941 }
942 val = old & 0x80;
943 val |= (data->fan_div[0] & 0x07);
944 val |= (data->fan_div[1] & 0x07) << 3;
945 if (data->fan_div[2] == 3)
946 val |= 0x1 << 6;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200947 it87_write_value(data, IT87_REG_FAN_DIV, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200949 /* Restore fan min limit */
Guenter Roecke1169ba2012-12-19 22:17:01 +0100950 data->fan[nr][1] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
951 it87_write_value(data, IT87_REG_FAN_MIN[nr], data->fan[nr][1]);
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200952
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100953 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 return count;
955}
Jean Delvarecccfc9c2010-03-05 22:17:21 +0100956
957/* Returns 0 if OK, -EINVAL otherwise */
958static int check_trip_points(struct device *dev, int nr)
959{
960 const struct it87_data *data = dev_get_drvdata(dev);
961 int i, err = 0;
962
963 if (has_old_autopwm(data)) {
964 for (i = 0; i < 3; i++) {
965 if (data->auto_temp[nr][i] > data->auto_temp[nr][i + 1])
966 err = -EINVAL;
967 }
968 for (i = 0; i < 2; i++) {
969 if (data->auto_pwm[nr][i] > data->auto_pwm[nr][i + 1])
970 err = -EINVAL;
971 }
972 }
973
974 if (err) {
Guenter Roeck1d9bcf62012-12-19 22:17:01 +0100975 dev_err(dev,
976 "Inconsistent trip points, not switching to automatic mode\n");
Jean Delvarecccfc9c2010-03-05 22:17:21 +0100977 dev_err(dev, "Adjust the trip points and try again\n");
978 }
979 return err;
980}
981
Jean Delvare20ad93d2005-06-05 11:53:25 +0200982static ssize_t set_pwm_enable(struct device *dev,
983 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200985 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
986 int nr = sensor_attr->index;
987
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200988 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100989 long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100991 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 2)
Jean Delvareb99883d2010-03-05 22:17:15 +0100992 return -EINVAL;
993
Jean Delvarecccfc9c2010-03-05 22:17:21 +0100994 /* Check trip points before switching to automatic mode */
995 if (val == 2) {
996 if (check_trip_points(dev, nr) < 0)
997 return -EINVAL;
998 }
999
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001000 /* IT8603E does not have on/off mode */
1001 if (val == 0 && data->type == it8603)
1002 return -EINVAL;
1003
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001004 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
1006 if (val == 0) {
1007 int tmp;
1008 /* make sure the fan is on when in on/off mode */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001009 tmp = it87_read_value(data, IT87_REG_FAN_CTL);
1010 it87_write_value(data, IT87_REG_FAN_CTL, tmp | (1 << nr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 /* set on/off mode */
1012 data->fan_main_ctrl &= ~(1 << nr);
Jean Delvare5f2dc792010-03-05 22:17:18 +01001013 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
1014 data->fan_main_ctrl);
Jean Delvareb99883d2010-03-05 22:17:15 +01001015 } else {
1016 if (val == 1) /* Manual mode */
Jean Delvare16b5dda2012-01-16 22:51:48 +01001017 data->pwm_ctrl[nr] = has_newer_autopwm(data) ?
Jean Delvare6229cdb2010-12-08 16:27:22 +01001018 data->pwm_temp_map[nr] :
1019 data->pwm_duty[nr];
Jean Delvareb99883d2010-03-05 22:17:15 +01001020 else /* Automatic mode */
1021 data->pwm_ctrl[nr] = 0x80 | data->pwm_temp_map[nr];
1022 it87_write_value(data, IT87_REG_PWM(nr), data->pwm_ctrl[nr]);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001023
1024 if (data->type != it8603) {
1025 /* set SmartGuardian mode */
1026 data->fan_main_ctrl |= (1 << nr);
1027 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
1028 data->fan_main_ctrl);
1029 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
1031
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001032 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 return count;
1034}
Jean Delvare20ad93d2005-06-05 11:53:25 +02001035static ssize_t set_pwm(struct device *dev, struct device_attribute *attr,
1036 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001038 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1039 int nr = sensor_attr->index;
1040
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001041 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001042 long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001044 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 return -EINVAL;
1046
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001047 mutex_lock(&data->update_lock);
Jean Delvare16b5dda2012-01-16 22:51:48 +01001048 if (has_newer_autopwm(data)) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001049 /*
1050 * If we are in automatic mode, the PWM duty cycle register
1051 * is read-only so we can't write the value.
1052 */
Jean Delvare6229cdb2010-12-08 16:27:22 +01001053 if (data->pwm_ctrl[nr] & 0x80) {
1054 mutex_unlock(&data->update_lock);
1055 return -EBUSY;
1056 }
1057 data->pwm_duty[nr] = pwm_to_reg(data, val);
1058 it87_write_value(data, IT87_REG_PWM_DUTY(nr),
1059 data->pwm_duty[nr]);
1060 } else {
1061 data->pwm_duty[nr] = pwm_to_reg(data, val);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001062 /*
1063 * If we are in manual mode, write the duty cycle immediately;
1064 * otherwise, just store it for later use.
1065 */
Jean Delvare6229cdb2010-12-08 16:27:22 +01001066 if (!(data->pwm_ctrl[nr] & 0x80)) {
1067 data->pwm_ctrl[nr] = data->pwm_duty[nr];
1068 it87_write_value(data, IT87_REG_PWM(nr),
1069 data->pwm_ctrl[nr]);
1070 }
Jean Delvareb99883d2010-03-05 22:17:15 +01001071 }
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001072 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 return count;
1074}
Jean Delvaref8d0c192007-02-14 21:15:02 +01001075static ssize_t set_pwm_freq(struct device *dev,
1076 struct device_attribute *attr, const char *buf, size_t count)
1077{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001078 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001079 unsigned long val;
Jean Delvaref8d0c192007-02-14 21:15:02 +01001080 int i;
1081
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001082 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001083 return -EINVAL;
1084
Guenter Roeckf56c9c02015-03-26 20:01:24 -07001085 val = clamp_val(val, 0, 1000000);
1086 val *= has_newer_autopwm(data) ? 256 : 128;
1087
Jean Delvaref8d0c192007-02-14 21:15:02 +01001088 /* Search for the nearest available frequency */
1089 for (i = 0; i < 7; i++) {
1090 if (val > (pwm_freq[i] + pwm_freq[i+1]) / 2)
1091 break;
1092 }
1093
1094 mutex_lock(&data->update_lock);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001095 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL) & 0x8f;
Jean Delvaref8d0c192007-02-14 21:15:02 +01001096 data->fan_ctl |= i << 4;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001097 it87_write_value(data, IT87_REG_FAN_CTL, data->fan_ctl);
Jean Delvaref8d0c192007-02-14 21:15:02 +01001098 mutex_unlock(&data->update_lock);
1099
1100 return count;
1101}
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001102static ssize_t show_pwm_temp_map(struct device *dev,
1103 struct device_attribute *attr, char *buf)
1104{
1105 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1106 int nr = sensor_attr->index;
1107
1108 struct it87_data *data = it87_update_device(dev);
1109 int map;
1110
1111 if (data->pwm_temp_map[nr] < 3)
1112 map = 1 << data->pwm_temp_map[nr];
1113 else
1114 map = 0; /* Should never happen */
1115 return sprintf(buf, "%d\n", map);
1116}
1117static ssize_t set_pwm_temp_map(struct device *dev,
1118 struct device_attribute *attr, const char *buf, size_t count)
1119{
1120 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1121 int nr = sensor_attr->index;
1122
1123 struct it87_data *data = dev_get_drvdata(dev);
1124 long val;
1125 u8 reg;
1126
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001127 /*
1128 * This check can go away if we ever support automatic fan speed
1129 * control on newer chips.
1130 */
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001131 if (!has_old_autopwm(data)) {
1132 dev_notice(dev, "Mapping change disabled for safety reasons\n");
1133 return -EINVAL;
1134 }
1135
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001136 if (kstrtol(buf, 10, &val) < 0)
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001137 return -EINVAL;
1138
1139 switch (val) {
1140 case (1 << 0):
1141 reg = 0x00;
1142 break;
1143 case (1 << 1):
1144 reg = 0x01;
1145 break;
1146 case (1 << 2):
1147 reg = 0x02;
1148 break;
1149 default:
1150 return -EINVAL;
1151 }
1152
1153 mutex_lock(&data->update_lock);
1154 data->pwm_temp_map[nr] = reg;
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001155 /*
1156 * If we are in automatic mode, write the temp mapping immediately;
1157 * otherwise, just store it for later use.
1158 */
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001159 if (data->pwm_ctrl[nr] & 0x80) {
1160 data->pwm_ctrl[nr] = 0x80 | data->pwm_temp_map[nr];
1161 it87_write_value(data, IT87_REG_PWM(nr), data->pwm_ctrl[nr]);
1162 }
1163 mutex_unlock(&data->update_lock);
1164 return count;
1165}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001167static ssize_t show_auto_pwm(struct device *dev,
1168 struct device_attribute *attr, char *buf)
1169{
1170 struct it87_data *data = it87_update_device(dev);
1171 struct sensor_device_attribute_2 *sensor_attr =
1172 to_sensor_dev_attr_2(attr);
1173 int nr = sensor_attr->nr;
1174 int point = sensor_attr->index;
1175
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001176 return sprintf(buf, "%d\n",
1177 pwm_from_reg(data, data->auto_pwm[nr][point]));
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001178}
1179
1180static ssize_t set_auto_pwm(struct device *dev,
1181 struct device_attribute *attr, const char *buf, size_t count)
1182{
1183 struct it87_data *data = dev_get_drvdata(dev);
1184 struct sensor_device_attribute_2 *sensor_attr =
1185 to_sensor_dev_attr_2(attr);
1186 int nr = sensor_attr->nr;
1187 int point = sensor_attr->index;
1188 long val;
1189
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001190 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001191 return -EINVAL;
1192
1193 mutex_lock(&data->update_lock);
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001194 data->auto_pwm[nr][point] = pwm_to_reg(data, val);
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001195 it87_write_value(data, IT87_REG_AUTO_PWM(nr, point),
1196 data->auto_pwm[nr][point]);
1197 mutex_unlock(&data->update_lock);
1198 return count;
1199}
1200
1201static ssize_t show_auto_temp(struct device *dev,
1202 struct device_attribute *attr, char *buf)
1203{
1204 struct it87_data *data = it87_update_device(dev);
1205 struct sensor_device_attribute_2 *sensor_attr =
1206 to_sensor_dev_attr_2(attr);
1207 int nr = sensor_attr->nr;
1208 int point = sensor_attr->index;
1209
1210 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->auto_temp[nr][point]));
1211}
1212
1213static ssize_t set_auto_temp(struct device *dev,
1214 struct device_attribute *attr, const char *buf, size_t count)
1215{
1216 struct it87_data *data = dev_get_drvdata(dev);
1217 struct sensor_device_attribute_2 *sensor_attr =
1218 to_sensor_dev_attr_2(attr);
1219 int nr = sensor_attr->nr;
1220 int point = sensor_attr->index;
1221 long val;
1222
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001223 if (kstrtol(buf, 10, &val) < 0 || val < -128000 || val > 127000)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001224 return -EINVAL;
1225
1226 mutex_lock(&data->update_lock);
1227 data->auto_temp[nr][point] = TEMP_TO_REG(val);
1228 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, point),
1229 data->auto_temp[nr][point]);
1230 mutex_unlock(&data->update_lock);
1231 return count;
1232}
1233
Guenter Roecke1169ba2012-12-19 22:17:01 +01001234static SENSOR_DEVICE_ATTR_2(fan1_input, S_IRUGO, show_fan, NULL, 0, 0);
1235static SENSOR_DEVICE_ATTR_2(fan1_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1236 0, 1);
1237static SENSOR_DEVICE_ATTR(fan1_div, S_IRUGO | S_IWUSR, show_fan_div,
1238 set_fan_div, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Guenter Roecke1169ba2012-12-19 22:17:01 +01001240static SENSOR_DEVICE_ATTR_2(fan2_input, S_IRUGO, show_fan, NULL, 1, 0);
1241static SENSOR_DEVICE_ATTR_2(fan2_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1242 1, 1);
1243static SENSOR_DEVICE_ATTR(fan2_div, S_IRUGO | S_IWUSR, show_fan_div,
1244 set_fan_div, 1);
1245
1246static SENSOR_DEVICE_ATTR_2(fan3_input, S_IRUGO, show_fan, NULL, 2, 0);
1247static SENSOR_DEVICE_ATTR_2(fan3_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1248 2, 1);
1249static SENSOR_DEVICE_ATTR(fan3_div, S_IRUGO | S_IWUSR, show_fan_div,
1250 set_fan_div, 2);
1251
1252static SENSOR_DEVICE_ATTR_2(fan4_input, S_IRUGO, show_fan, NULL, 3, 0);
1253static SENSOR_DEVICE_ATTR_2(fan4_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1254 3, 1);
1255
1256static SENSOR_DEVICE_ATTR_2(fan5_input, S_IRUGO, show_fan, NULL, 4, 0);
1257static SENSOR_DEVICE_ATTR_2(fan5_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1258 4, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Guenter Roeckc4458db2012-12-19 22:17:02 +01001260static SENSOR_DEVICE_ATTR(pwm1_enable, S_IRUGO | S_IWUSR,
1261 show_pwm_enable, set_pwm_enable, 0);
1262static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 0);
1263static DEVICE_ATTR(pwm1_freq, S_IRUGO | S_IWUSR, show_pwm_freq, set_pwm_freq);
1264static SENSOR_DEVICE_ATTR(pwm1_auto_channels_temp, S_IRUGO | S_IWUSR,
1265 show_pwm_temp_map, set_pwm_temp_map, 0);
1266static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_pwm, S_IRUGO | S_IWUSR,
1267 show_auto_pwm, set_auto_pwm, 0, 0);
1268static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_pwm, S_IRUGO | S_IWUSR,
1269 show_auto_pwm, set_auto_pwm, 0, 1);
1270static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_pwm, S_IRUGO | S_IWUSR,
1271 show_auto_pwm, set_auto_pwm, 0, 2);
1272static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_pwm, S_IRUGO,
1273 show_auto_pwm, NULL, 0, 3);
1274static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp, S_IRUGO | S_IWUSR,
1275 show_auto_temp, set_auto_temp, 0, 1);
1276static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1277 show_auto_temp, set_auto_temp, 0, 0);
1278static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_temp, S_IRUGO | S_IWUSR,
1279 show_auto_temp, set_auto_temp, 0, 2);
1280static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_temp, S_IRUGO | S_IWUSR,
1281 show_auto_temp, set_auto_temp, 0, 3);
1282static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_temp, S_IRUGO | S_IWUSR,
1283 show_auto_temp, set_auto_temp, 0, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Guenter Roeckc4458db2012-12-19 22:17:02 +01001285static SENSOR_DEVICE_ATTR(pwm2_enable, S_IRUGO | S_IWUSR,
1286 show_pwm_enable, set_pwm_enable, 1);
1287static SENSOR_DEVICE_ATTR(pwm2, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 1);
1288static DEVICE_ATTR(pwm2_freq, S_IRUGO, show_pwm_freq, NULL);
1289static SENSOR_DEVICE_ATTR(pwm2_auto_channels_temp, S_IRUGO | S_IWUSR,
1290 show_pwm_temp_map, set_pwm_temp_map, 1);
1291static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_pwm, S_IRUGO | S_IWUSR,
1292 show_auto_pwm, set_auto_pwm, 1, 0);
1293static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_pwm, S_IRUGO | S_IWUSR,
1294 show_auto_pwm, set_auto_pwm, 1, 1);
1295static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_pwm, S_IRUGO | S_IWUSR,
1296 show_auto_pwm, set_auto_pwm, 1, 2);
1297static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_pwm, S_IRUGO,
1298 show_auto_pwm, NULL, 1, 3);
1299static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp, S_IRUGO | S_IWUSR,
1300 show_auto_temp, set_auto_temp, 1, 1);
1301static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1302 show_auto_temp, set_auto_temp, 1, 0);
1303static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_temp, S_IRUGO | S_IWUSR,
1304 show_auto_temp, set_auto_temp, 1, 2);
1305static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_temp, S_IRUGO | S_IWUSR,
1306 show_auto_temp, set_auto_temp, 1, 3);
1307static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_temp, S_IRUGO | S_IWUSR,
1308 show_auto_temp, set_auto_temp, 1, 4);
1309
1310static SENSOR_DEVICE_ATTR(pwm3_enable, S_IRUGO | S_IWUSR,
1311 show_pwm_enable, set_pwm_enable, 2);
1312static SENSOR_DEVICE_ATTR(pwm3, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 2);
1313static DEVICE_ATTR(pwm3_freq, S_IRUGO, show_pwm_freq, NULL);
1314static SENSOR_DEVICE_ATTR(pwm3_auto_channels_temp, S_IRUGO | S_IWUSR,
1315 show_pwm_temp_map, set_pwm_temp_map, 2);
1316static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_pwm, S_IRUGO | S_IWUSR,
1317 show_auto_pwm, set_auto_pwm, 2, 0);
1318static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_pwm, S_IRUGO | S_IWUSR,
1319 show_auto_pwm, set_auto_pwm, 2, 1);
1320static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_pwm, S_IRUGO | S_IWUSR,
1321 show_auto_pwm, set_auto_pwm, 2, 2);
1322static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_pwm, S_IRUGO,
1323 show_auto_pwm, NULL, 2, 3);
1324static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp, S_IRUGO | S_IWUSR,
1325 show_auto_temp, set_auto_temp, 2, 1);
1326static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1327 show_auto_temp, set_auto_temp, 2, 0);
1328static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_temp, S_IRUGO | S_IWUSR,
1329 show_auto_temp, set_auto_temp, 2, 2);
1330static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_temp, S_IRUGO | S_IWUSR,
1331 show_auto_temp, set_auto_temp, 2, 3);
1332static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_temp, S_IRUGO | S_IWUSR,
1333 show_auto_temp, set_auto_temp, 2, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
1335/* Alarms */
Jean Delvare5f2dc792010-03-05 22:17:18 +01001336static ssize_t show_alarms(struct device *dev, struct device_attribute *attr,
1337 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338{
1339 struct it87_data *data = it87_update_device(dev);
Jean Delvare68188ba2005-05-16 18:52:38 +02001340 return sprintf(buf, "%u\n", data->alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341}
Jean Delvare1d66c642005-04-18 21:16:59 -07001342static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Jean Delvare0124dd72007-11-25 16:16:41 +01001344static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
1345 char *buf)
1346{
1347 int bitnr = to_sensor_dev_attr(attr)->index;
1348 struct it87_data *data = it87_update_device(dev);
1349 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
1350}
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001351
1352static ssize_t clear_intrusion(struct device *dev, struct device_attribute
1353 *attr, const char *buf, size_t count)
1354{
1355 struct it87_data *data = dev_get_drvdata(dev);
1356 long val;
1357 int config;
1358
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001359 if (kstrtol(buf, 10, &val) < 0 || val != 0)
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001360 return -EINVAL;
1361
1362 mutex_lock(&data->update_lock);
1363 config = it87_read_value(data, IT87_REG_CONFIG);
1364 if (config < 0) {
1365 count = config;
1366 } else {
1367 config |= 1 << 5;
1368 it87_write_value(data, IT87_REG_CONFIG, config);
1369 /* Invalidate cache to force re-read */
1370 data->valid = 0;
1371 }
1372 mutex_unlock(&data->update_lock);
1373
1374 return count;
1375}
1376
Jean Delvare0124dd72007-11-25 16:16:41 +01001377static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 8);
1378static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 9);
1379static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 10);
1380static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 11);
1381static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 12);
1382static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 13);
1383static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 14);
1384static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 15);
1385static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 0);
1386static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 1);
1387static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 2);
1388static SENSOR_DEVICE_ATTR(fan4_alarm, S_IRUGO, show_alarm, NULL, 3);
1389static SENSOR_DEVICE_ATTR(fan5_alarm, S_IRUGO, show_alarm, NULL, 6);
1390static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 16);
1391static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 17);
1392static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 18);
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001393static SENSOR_DEVICE_ATTR(intrusion0_alarm, S_IRUGO | S_IWUSR,
1394 show_alarm, clear_intrusion, 4);
Jean Delvare0124dd72007-11-25 16:16:41 +01001395
Jean Delvared9b327c2010-03-05 22:17:17 +01001396static ssize_t show_beep(struct device *dev, struct device_attribute *attr,
1397 char *buf)
1398{
1399 int bitnr = to_sensor_dev_attr(attr)->index;
1400 struct it87_data *data = it87_update_device(dev);
1401 return sprintf(buf, "%u\n", (data->beeps >> bitnr) & 1);
1402}
1403static ssize_t set_beep(struct device *dev, struct device_attribute *attr,
1404 const char *buf, size_t count)
1405{
1406 int bitnr = to_sensor_dev_attr(attr)->index;
1407 struct it87_data *data = dev_get_drvdata(dev);
1408 long val;
1409
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001410 if (kstrtol(buf, 10, &val) < 0
Jean Delvared9b327c2010-03-05 22:17:17 +01001411 || (val != 0 && val != 1))
1412 return -EINVAL;
1413
1414 mutex_lock(&data->update_lock);
1415 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
1416 if (val)
1417 data->beeps |= (1 << bitnr);
1418 else
1419 data->beeps &= ~(1 << bitnr);
1420 it87_write_value(data, IT87_REG_BEEP_ENABLE, data->beeps);
1421 mutex_unlock(&data->update_lock);
1422 return count;
1423}
1424
1425static SENSOR_DEVICE_ATTR(in0_beep, S_IRUGO | S_IWUSR,
1426 show_beep, set_beep, 1);
1427static SENSOR_DEVICE_ATTR(in1_beep, S_IRUGO, show_beep, NULL, 1);
1428static SENSOR_DEVICE_ATTR(in2_beep, S_IRUGO, show_beep, NULL, 1);
1429static SENSOR_DEVICE_ATTR(in3_beep, S_IRUGO, show_beep, NULL, 1);
1430static SENSOR_DEVICE_ATTR(in4_beep, S_IRUGO, show_beep, NULL, 1);
1431static SENSOR_DEVICE_ATTR(in5_beep, S_IRUGO, show_beep, NULL, 1);
1432static SENSOR_DEVICE_ATTR(in6_beep, S_IRUGO, show_beep, NULL, 1);
1433static SENSOR_DEVICE_ATTR(in7_beep, S_IRUGO, show_beep, NULL, 1);
1434/* fanX_beep writability is set later */
1435static SENSOR_DEVICE_ATTR(fan1_beep, S_IRUGO, show_beep, set_beep, 0);
1436static SENSOR_DEVICE_ATTR(fan2_beep, S_IRUGO, show_beep, set_beep, 0);
1437static SENSOR_DEVICE_ATTR(fan3_beep, S_IRUGO, show_beep, set_beep, 0);
1438static SENSOR_DEVICE_ATTR(fan4_beep, S_IRUGO, show_beep, set_beep, 0);
1439static SENSOR_DEVICE_ATTR(fan5_beep, S_IRUGO, show_beep, set_beep, 0);
1440static SENSOR_DEVICE_ATTR(temp1_beep, S_IRUGO | S_IWUSR,
1441 show_beep, set_beep, 2);
1442static SENSOR_DEVICE_ATTR(temp2_beep, S_IRUGO, show_beep, NULL, 2);
1443static SENSOR_DEVICE_ATTR(temp3_beep, S_IRUGO, show_beep, NULL, 2);
1444
Jean Delvare5f2dc792010-03-05 22:17:18 +01001445static ssize_t show_vrm_reg(struct device *dev, struct device_attribute *attr,
1446 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447{
Jean Delvare90d66192007-10-08 18:24:35 +02001448 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvarea7be58a2005-12-18 16:40:14 +01001449 return sprintf(buf, "%u\n", data->vrm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450}
Jean Delvare5f2dc792010-03-05 22:17:18 +01001451static ssize_t store_vrm_reg(struct device *dev, struct device_attribute *attr,
1452 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001454 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001455 unsigned long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001457 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001458 return -EINVAL;
1459
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 data->vrm = val;
1461
1462 return count;
1463}
1464static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm_reg, store_vrm_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Jean Delvare5f2dc792010-03-05 22:17:18 +01001466static ssize_t show_vid_reg(struct device *dev, struct device_attribute *attr,
1467 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468{
1469 struct it87_data *data = it87_update_device(dev);
1470 return sprintf(buf, "%ld\n", (long) vid_from_reg(data->vid, data->vrm));
1471}
1472static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL);
Jean Delvare87808be2006-09-24 21:17:13 +02001473
Jean Delvare738e5e02010-08-14 21:08:50 +02001474static ssize_t show_label(struct device *dev, struct device_attribute *attr,
1475 char *buf)
1476{
Guenter Roeck3c4c4972012-01-20 09:29:44 -08001477 static const char * const labels[] = {
Jean Delvare738e5e02010-08-14 21:08:50 +02001478 "+5V",
1479 "5VSB",
1480 "Vbat",
1481 };
Guenter Roeck3c4c4972012-01-20 09:29:44 -08001482 static const char * const labels_it8721[] = {
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001483 "+3.3V",
1484 "3VSB",
1485 "Vbat",
1486 };
1487 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvare738e5e02010-08-14 21:08:50 +02001488 int nr = to_sensor_dev_attr(attr)->index;
1489
Jean Delvare16b5dda2012-01-16 22:51:48 +01001490 return sprintf(buf, "%s\n", has_12mv_adc(data) ? labels_it8721[nr]
1491 : labels[nr]);
Jean Delvare738e5e02010-08-14 21:08:50 +02001492}
1493static SENSOR_DEVICE_ATTR(in3_label, S_IRUGO, show_label, NULL, 0);
1494static SENSOR_DEVICE_ATTR(in7_label, S_IRUGO, show_label, NULL, 1);
1495static SENSOR_DEVICE_ATTR(in8_label, S_IRUGO, show_label, NULL, 2);
Rudolf Marek7183ae82014-04-04 18:01:35 +02001496/* special AVCC3 IT8603E in9 */
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001497static SENSOR_DEVICE_ATTR(in9_label, S_IRUGO, show_label, NULL, 0);
Jean Delvare738e5e02010-08-14 21:08:50 +02001498
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001499static ssize_t show_name(struct device *dev, struct device_attribute
1500 *devattr, char *buf)
1501{
1502 struct it87_data *data = dev_get_drvdata(dev);
1503 return sprintf(buf, "%s\n", data->name);
1504}
1505static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
1506
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001507static struct attribute *it87_attributes_in[10][5] = {
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001508{
Jean Delvare87808be2006-09-24 21:17:13 +02001509 &sensor_dev_attr_in0_input.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001510 &sensor_dev_attr_in0_min.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001511 &sensor_dev_attr_in0_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001512 &sensor_dev_attr_in0_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001513 NULL
1514}, {
1515 &sensor_dev_attr_in1_input.dev_attr.attr,
1516 &sensor_dev_attr_in1_min.dev_attr.attr,
1517 &sensor_dev_attr_in1_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001518 &sensor_dev_attr_in1_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001519 NULL
1520}, {
1521 &sensor_dev_attr_in2_input.dev_attr.attr,
1522 &sensor_dev_attr_in2_min.dev_attr.attr,
1523 &sensor_dev_attr_in2_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001524 &sensor_dev_attr_in2_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001525 NULL
1526}, {
1527 &sensor_dev_attr_in3_input.dev_attr.attr,
1528 &sensor_dev_attr_in3_min.dev_attr.attr,
1529 &sensor_dev_attr_in3_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001530 &sensor_dev_attr_in3_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001531 NULL
1532}, {
1533 &sensor_dev_attr_in4_input.dev_attr.attr,
1534 &sensor_dev_attr_in4_min.dev_attr.attr,
1535 &sensor_dev_attr_in4_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001536 &sensor_dev_attr_in4_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001537 NULL
1538}, {
1539 &sensor_dev_attr_in5_input.dev_attr.attr,
1540 &sensor_dev_attr_in5_min.dev_attr.attr,
1541 &sensor_dev_attr_in5_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001542 &sensor_dev_attr_in5_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001543 NULL
1544}, {
1545 &sensor_dev_attr_in6_input.dev_attr.attr,
1546 &sensor_dev_attr_in6_min.dev_attr.attr,
1547 &sensor_dev_attr_in6_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001548 &sensor_dev_attr_in6_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001549 NULL
1550}, {
1551 &sensor_dev_attr_in7_input.dev_attr.attr,
1552 &sensor_dev_attr_in7_min.dev_attr.attr,
1553 &sensor_dev_attr_in7_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001554 &sensor_dev_attr_in7_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001555 NULL
1556}, {
1557 &sensor_dev_attr_in8_input.dev_attr.attr,
1558 NULL
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001559}, {
1560 &sensor_dev_attr_in9_input.dev_attr.attr,
1561 NULL
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001562} };
Jean Delvare87808be2006-09-24 21:17:13 +02001563
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001564static const struct attribute_group it87_group_in[10] = {
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001565 { .attrs = it87_attributes_in[0] },
1566 { .attrs = it87_attributes_in[1] },
1567 { .attrs = it87_attributes_in[2] },
1568 { .attrs = it87_attributes_in[3] },
1569 { .attrs = it87_attributes_in[4] },
1570 { .attrs = it87_attributes_in[5] },
1571 { .attrs = it87_attributes_in[6] },
1572 { .attrs = it87_attributes_in[7] },
1573 { .attrs = it87_attributes_in[8] },
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001574 { .attrs = it87_attributes_in[9] },
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001575};
1576
Guenter Roeck4573acb2012-03-26 16:17:41 -07001577static struct attribute *it87_attributes_temp[3][6] = {
1578{
Jean Delvare87808be2006-09-24 21:17:13 +02001579 &sensor_dev_attr_temp1_input.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001580 &sensor_dev_attr_temp1_max.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001581 &sensor_dev_attr_temp1_min.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001582 &sensor_dev_attr_temp1_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001583 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
Guenter Roeck4573acb2012-03-26 16:17:41 -07001584 NULL
1585} , {
1586 &sensor_dev_attr_temp2_input.dev_attr.attr,
1587 &sensor_dev_attr_temp2_max.dev_attr.attr,
1588 &sensor_dev_attr_temp2_min.dev_attr.attr,
1589 &sensor_dev_attr_temp2_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001590 &sensor_dev_attr_temp2_alarm.dev_attr.attr,
Guenter Roeck4573acb2012-03-26 16:17:41 -07001591 NULL
1592} , {
1593 &sensor_dev_attr_temp3_input.dev_attr.attr,
1594 &sensor_dev_attr_temp3_max.dev_attr.attr,
1595 &sensor_dev_attr_temp3_min.dev_attr.attr,
1596 &sensor_dev_attr_temp3_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001597 &sensor_dev_attr_temp3_alarm.dev_attr.attr,
Guenter Roeck4573acb2012-03-26 16:17:41 -07001598 NULL
1599} };
Jean Delvare87808be2006-09-24 21:17:13 +02001600
Guenter Roeck4573acb2012-03-26 16:17:41 -07001601static const struct attribute_group it87_group_temp[3] = {
1602 { .attrs = it87_attributes_temp[0] },
1603 { .attrs = it87_attributes_temp[1] },
1604 { .attrs = it87_attributes_temp[2] },
1605};
1606
Guenter Roeck161d8982012-12-19 22:17:01 +01001607static struct attribute *it87_attributes_temp_offset[] = {
1608 &sensor_dev_attr_temp1_offset.dev_attr.attr,
1609 &sensor_dev_attr_temp2_offset.dev_attr.attr,
1610 &sensor_dev_attr_temp3_offset.dev_attr.attr,
1611};
1612
Guenter Roeck4573acb2012-03-26 16:17:41 -07001613static struct attribute *it87_attributes[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02001614 &dev_attr_alarms.attr,
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001615 &sensor_dev_attr_intrusion0_alarm.dev_attr.attr,
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001616 &dev_attr_name.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001617 NULL
1618};
1619
1620static const struct attribute_group it87_group = {
1621 .attrs = it87_attributes,
1622};
1623
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001624static struct attribute *it87_attributes_in_beep[] = {
Jean Delvared9b327c2010-03-05 22:17:17 +01001625 &sensor_dev_attr_in0_beep.dev_attr.attr,
1626 &sensor_dev_attr_in1_beep.dev_attr.attr,
1627 &sensor_dev_attr_in2_beep.dev_attr.attr,
1628 &sensor_dev_attr_in3_beep.dev_attr.attr,
1629 &sensor_dev_attr_in4_beep.dev_attr.attr,
1630 &sensor_dev_attr_in5_beep.dev_attr.attr,
1631 &sensor_dev_attr_in6_beep.dev_attr.attr,
1632 &sensor_dev_attr_in7_beep.dev_attr.attr,
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001633 NULL,
1634 NULL,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001635};
Jean Delvared9b327c2010-03-05 22:17:17 +01001636
Guenter Roeck4573acb2012-03-26 16:17:41 -07001637static struct attribute *it87_attributes_temp_beep[] = {
Jean Delvared9b327c2010-03-05 22:17:17 +01001638 &sensor_dev_attr_temp1_beep.dev_attr.attr,
1639 &sensor_dev_attr_temp2_beep.dev_attr.attr,
1640 &sensor_dev_attr_temp3_beep.dev_attr.attr,
Jean Delvared9b327c2010-03-05 22:17:17 +01001641};
1642
Guenter Roecke1169ba2012-12-19 22:17:01 +01001643static struct attribute *it87_attributes_fan[5][3+1] = { {
Jean Delvare87808be2006-09-24 21:17:13 +02001644 &sensor_dev_attr_fan1_input.dev_attr.attr,
1645 &sensor_dev_attr_fan1_min.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001646 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
1647 NULL
1648}, {
Jean Delvare87808be2006-09-24 21:17:13 +02001649 &sensor_dev_attr_fan2_input.dev_attr.attr,
1650 &sensor_dev_attr_fan2_min.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001651 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
1652 NULL
1653}, {
Jean Delvare87808be2006-09-24 21:17:13 +02001654 &sensor_dev_attr_fan3_input.dev_attr.attr,
1655 &sensor_dev_attr_fan3_min.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001656 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001657 NULL
Guenter Roecke1169ba2012-12-19 22:17:01 +01001658}, {
1659 &sensor_dev_attr_fan4_input.dev_attr.attr,
1660 &sensor_dev_attr_fan4_min.dev_attr.attr,
1661 &sensor_dev_attr_fan4_alarm.dev_attr.attr,
1662 NULL
1663}, {
1664 &sensor_dev_attr_fan5_input.dev_attr.attr,
1665 &sensor_dev_attr_fan5_min.dev_attr.attr,
1666 &sensor_dev_attr_fan5_alarm.dev_attr.attr,
1667 NULL
Jean Delvare723a0aa2010-03-05 22:17:16 +01001668} };
Jean Delvare0124dd72007-11-25 16:16:41 +01001669
Guenter Roecke1169ba2012-12-19 22:17:01 +01001670static const struct attribute_group it87_group_fan[5] = {
Jean Delvare723a0aa2010-03-05 22:17:16 +01001671 { .attrs = it87_attributes_fan[0] },
1672 { .attrs = it87_attributes_fan[1] },
1673 { .attrs = it87_attributes_fan[2] },
Guenter Roecke1169ba2012-12-19 22:17:01 +01001674 { .attrs = it87_attributes_fan[3] },
1675 { .attrs = it87_attributes_fan[4] },
Jean Delvare723a0aa2010-03-05 22:17:16 +01001676};
1677
Guenter Roecke1169ba2012-12-19 22:17:01 +01001678static const struct attribute *it87_attributes_fan_div[] = {
1679 &sensor_dev_attr_fan1_div.dev_attr.attr,
1680 &sensor_dev_attr_fan2_div.dev_attr.attr,
1681 &sensor_dev_attr_fan3_div.dev_attr.attr,
1682};
Jean Delvare723a0aa2010-03-05 22:17:16 +01001683
1684static struct attribute *it87_attributes_pwm[3][4+1] = { {
Jean Delvare87808be2006-09-24 21:17:13 +02001685 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001686 &sensor_dev_attr_pwm1.dev_attr.attr,
Jean Delvared5b0b5d2007-12-14 14:41:53 +01001687 &dev_attr_pwm1_freq.attr,
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001688 &sensor_dev_attr_pwm1_auto_channels_temp.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001689 NULL
1690}, {
1691 &sensor_dev_attr_pwm2_enable.dev_attr.attr,
1692 &sensor_dev_attr_pwm2.dev_attr.attr,
1693 &dev_attr_pwm2_freq.attr,
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001694 &sensor_dev_attr_pwm2_auto_channels_temp.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001695 NULL
1696}, {
1697 &sensor_dev_attr_pwm3_enable.dev_attr.attr,
1698 &sensor_dev_attr_pwm3.dev_attr.attr,
1699 &dev_attr_pwm3_freq.attr,
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001700 &sensor_dev_attr_pwm3_auto_channels_temp.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001701 NULL
1702} };
Jean Delvare87808be2006-09-24 21:17:13 +02001703
Jean Delvare723a0aa2010-03-05 22:17:16 +01001704static const struct attribute_group it87_group_pwm[3] = {
1705 { .attrs = it87_attributes_pwm[0] },
1706 { .attrs = it87_attributes_pwm[1] },
1707 { .attrs = it87_attributes_pwm[2] },
1708};
1709
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001710static struct attribute *it87_attributes_autopwm[3][9+1] = { {
1711 &sensor_dev_attr_pwm1_auto_point1_pwm.dev_attr.attr,
1712 &sensor_dev_attr_pwm1_auto_point2_pwm.dev_attr.attr,
1713 &sensor_dev_attr_pwm1_auto_point3_pwm.dev_attr.attr,
1714 &sensor_dev_attr_pwm1_auto_point4_pwm.dev_attr.attr,
1715 &sensor_dev_attr_pwm1_auto_point1_temp.dev_attr.attr,
1716 &sensor_dev_attr_pwm1_auto_point1_temp_hyst.dev_attr.attr,
1717 &sensor_dev_attr_pwm1_auto_point2_temp.dev_attr.attr,
1718 &sensor_dev_attr_pwm1_auto_point3_temp.dev_attr.attr,
1719 &sensor_dev_attr_pwm1_auto_point4_temp.dev_attr.attr,
1720 NULL
1721}, {
1722 &sensor_dev_attr_pwm2_auto_point1_pwm.dev_attr.attr,
1723 &sensor_dev_attr_pwm2_auto_point2_pwm.dev_attr.attr,
1724 &sensor_dev_attr_pwm2_auto_point3_pwm.dev_attr.attr,
1725 &sensor_dev_attr_pwm2_auto_point4_pwm.dev_attr.attr,
1726 &sensor_dev_attr_pwm2_auto_point1_temp.dev_attr.attr,
1727 &sensor_dev_attr_pwm2_auto_point1_temp_hyst.dev_attr.attr,
1728 &sensor_dev_attr_pwm2_auto_point2_temp.dev_attr.attr,
1729 &sensor_dev_attr_pwm2_auto_point3_temp.dev_attr.attr,
1730 &sensor_dev_attr_pwm2_auto_point4_temp.dev_attr.attr,
1731 NULL
1732}, {
1733 &sensor_dev_attr_pwm3_auto_point1_pwm.dev_attr.attr,
1734 &sensor_dev_attr_pwm3_auto_point2_pwm.dev_attr.attr,
1735 &sensor_dev_attr_pwm3_auto_point3_pwm.dev_attr.attr,
1736 &sensor_dev_attr_pwm3_auto_point4_pwm.dev_attr.attr,
1737 &sensor_dev_attr_pwm3_auto_point1_temp.dev_attr.attr,
1738 &sensor_dev_attr_pwm3_auto_point1_temp_hyst.dev_attr.attr,
1739 &sensor_dev_attr_pwm3_auto_point2_temp.dev_attr.attr,
1740 &sensor_dev_attr_pwm3_auto_point3_temp.dev_attr.attr,
1741 &sensor_dev_attr_pwm3_auto_point4_temp.dev_attr.attr,
1742 NULL
1743} };
1744
1745static const struct attribute_group it87_group_autopwm[3] = {
1746 { .attrs = it87_attributes_autopwm[0] },
1747 { .attrs = it87_attributes_autopwm[1] },
1748 { .attrs = it87_attributes_autopwm[2] },
1749};
1750
Jean Delvared9b327c2010-03-05 22:17:17 +01001751static struct attribute *it87_attributes_fan_beep[] = {
1752 &sensor_dev_attr_fan1_beep.dev_attr.attr,
1753 &sensor_dev_attr_fan2_beep.dev_attr.attr,
1754 &sensor_dev_attr_fan3_beep.dev_attr.attr,
1755 &sensor_dev_attr_fan4_beep.dev_attr.attr,
1756 &sensor_dev_attr_fan5_beep.dev_attr.attr,
1757};
1758
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01001759static struct attribute *it87_attributes_vid[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02001760 &dev_attr_vrm.attr,
1761 &dev_attr_cpu0_vid.attr,
1762 NULL
1763};
1764
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01001765static const struct attribute_group it87_group_vid = {
1766 .attrs = it87_attributes_vid,
Jean Delvare87808be2006-09-24 21:17:13 +02001767};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
Jean Delvare738e5e02010-08-14 21:08:50 +02001769static struct attribute *it87_attributes_label[] = {
1770 &sensor_dev_attr_in3_label.dev_attr.attr,
1771 &sensor_dev_attr_in7_label.dev_attr.attr,
1772 &sensor_dev_attr_in8_label.dev_attr.attr,
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001773 &sensor_dev_attr_in9_label.dev_attr.attr,
Jean Delvare738e5e02010-08-14 21:08:50 +02001774 NULL
1775};
1776
1777static const struct attribute_group it87_group_label = {
Jean Delvarefa8b6972011-07-17 18:39:19 +02001778 .attrs = it87_attributes_label,
Jean Delvare738e5e02010-08-14 21:08:50 +02001779};
1780
Jean Delvare2d8672c2005-07-19 23:56:35 +02001781/* SuperIO detection - will change isa_address if a chip is found */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001782static int __init it87_find(unsigned short *address,
1783 struct it87_sio_data *sio_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784{
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +02001785 int err;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001786 u16 chip_type;
Jean Delvare98dd22c2008-10-09 15:33:58 +02001787 const char *board_vendor, *board_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +02001789 err = superio_enter();
1790 if (err)
1791 return err;
1792
1793 err = -ENODEV;
Jean Delvare67b671b2007-12-06 23:13:42 +01001794 chip_type = force_id ? force_id : superio_inw(DEVID);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001795
1796 switch (chip_type) {
1797 case IT8705F_DEVID:
1798 sio_data->type = it87;
1799 break;
1800 case IT8712F_DEVID:
1801 sio_data->type = it8712;
1802 break;
1803 case IT8716F_DEVID:
1804 case IT8726F_DEVID:
1805 sio_data->type = it8716;
1806 break;
1807 case IT8718F_DEVID:
1808 sio_data->type = it8718;
1809 break;
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +01001810 case IT8720F_DEVID:
1811 sio_data->type = it8720;
1812 break;
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001813 case IT8721F_DEVID:
1814 sio_data->type = it8721;
1815 break;
Jean Delvare16b5dda2012-01-16 22:51:48 +01001816 case IT8728F_DEVID:
1817 sio_data->type = it8728;
1818 break;
Guenter Roeckb0636702012-09-07 17:34:41 -06001819 case IT8771E_DEVID:
1820 sio_data->type = it8771;
1821 break;
1822 case IT8772E_DEVID:
1823 sio_data->type = it8772;
1824 break;
Guenter Roeck7bc32d22015-01-17 14:10:24 -08001825 case IT8781F_DEVID:
1826 sio_data->type = it8781;
1827 break;
Guenter Roeck0531d982012-03-02 11:46:44 -08001828 case IT8782F_DEVID:
1829 sio_data->type = it8782;
1830 break;
1831 case IT8783E_DEVID:
1832 sio_data->type = it8783;
1833 break;
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +01001834 case IT8786E_DEVID:
1835 sio_data->type = it8786;
1836 break;
Rudolf Marek7183ae82014-04-04 18:01:35 +02001837 case IT8603E_DEVID:
Rudolf Marek574e9bd2014-04-04 18:01:35 +02001838 case IT8623E_DEVID:
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001839 sio_data->type = it8603;
1840 break;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001841 case 0xffff: /* No device at all */
1842 goto exit;
1843 default:
Joe Perchesa8ca1032011-01-12 21:55:10 +01001844 pr_debug("Unsupported chip (DEVID=0x%x)\n", chip_type);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001845 goto exit;
1846 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
Jean Delvare87673dd2006-08-28 14:37:19 +02001848 superio_select(PME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 if (!(superio_inb(IT87_ACT_REG) & 0x01)) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01001850 pr_info("Device not activated, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 goto exit;
1852 }
1853
1854 *address = superio_inw(IT87_BASE_REG) & ~(IT87_EXTENT - 1);
1855 if (*address == 0) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01001856 pr_info("Base address not set, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 goto exit;
1858 }
1859
1860 err = 0;
Andrew Paprocki04751692008-08-06 22:41:06 +02001861 sio_data->revision = superio_inb(DEVREV) & 0x0f;
Guenter Roeckfaf392f2015-03-26 08:36:18 -07001862 pr_info("Found IT%04x%s chip at 0x%x, revision %d\n", chip_type,
1863 it87_devices[sio_data->type].suffix,
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +01001864 *address, sio_data->revision);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Guenter Roeck7f5726c2015-03-26 08:49:18 -07001866 /* in7 (VSB or VCCH5V) is always internal on some chips */
1867 if (it87_devices[sio_data->type].features & FEAT_IN7_INTERNAL)
1868 sio_data->internal |= (1 << 1);
1869
Jean Delvare738e5e02010-08-14 21:08:50 +02001870 /* in8 (Vbat) is always internal */
Guenter Roeck7f5726c2015-03-26 08:49:18 -07001871 sio_data->internal |= (1 << 2);
1872
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001873 /* Only the IT8603E has in9 */
1874 if (sio_data->type != it8603)
1875 sio_data->skip_in |= (1 << 9);
Jean Delvare738e5e02010-08-14 21:08:50 +02001876
Guenter Roeck32dd7c42015-02-12 07:40:23 -08001877 if (!(it87_devices[sio_data->type].features & FEAT_VID))
Jean Delvare895ff262009-12-09 20:35:47 +01001878 sio_data->skip_vid = 1;
Jean Delvared9b327c2010-03-05 22:17:17 +01001879
Guenter Roeck32dd7c42015-02-12 07:40:23 -08001880 /* Read GPIO config and VID value from LDN 7 (GPIO) */
1881 if (sio_data->type == it87) {
Jean Delvared9b327c2010-03-05 22:17:17 +01001882 /* The IT8705F has a different LD number for GPIO */
1883 superio_select(5);
1884 sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f;
Guenter Roeck0531d982012-03-02 11:46:44 -08001885 } else if (sio_data->type == it8783) {
Guenter Roeck088ce2a2013-03-13 16:40:39 -07001886 int reg25, reg27, reg2a, reg2c, regef;
Guenter Roeck0531d982012-03-02 11:46:44 -08001887
Guenter Roeck0531d982012-03-02 11:46:44 -08001888 superio_select(GPIO);
1889
1890 reg25 = superio_inb(IT87_SIO_GPIO1_REG);
1891 reg27 = superio_inb(IT87_SIO_GPIO3_REG);
Guenter Roeck088ce2a2013-03-13 16:40:39 -07001892 reg2a = superio_inb(IT87_SIO_PINX1_REG);
1893 reg2c = superio_inb(IT87_SIO_PINX2_REG);
1894 regef = superio_inb(IT87_SIO_SPI_REG);
Guenter Roeck0531d982012-03-02 11:46:44 -08001895
Guenter Roeck0531d982012-03-02 11:46:44 -08001896 /* Check if fan3 is there or not */
Guenter Roeck088ce2a2013-03-13 16:40:39 -07001897 if ((reg27 & (1 << 0)) || !(reg2c & (1 << 2)))
Guenter Roeck0531d982012-03-02 11:46:44 -08001898 sio_data->skip_fan |= (1 << 2);
1899 if ((reg25 & (1 << 4))
Guenter Roeck088ce2a2013-03-13 16:40:39 -07001900 || (!(reg2a & (1 << 1)) && (regef & (1 << 0))))
Guenter Roeck0531d982012-03-02 11:46:44 -08001901 sio_data->skip_pwm |= (1 << 2);
1902
1903 /* Check if fan2 is there or not */
1904 if (reg27 & (1 << 7))
1905 sio_data->skip_fan |= (1 << 1);
1906 if (reg27 & (1 << 3))
1907 sio_data->skip_pwm |= (1 << 1);
1908
1909 /* VIN5 */
Guenter Roeck088ce2a2013-03-13 16:40:39 -07001910 if ((reg27 & (1 << 0)) || (reg2c & (1 << 2)))
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001911 sio_data->skip_in |= (1 << 5); /* No VIN5 */
Guenter Roeck0531d982012-03-02 11:46:44 -08001912
1913 /* VIN6 */
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001914 if (reg27 & (1 << 1))
1915 sio_data->skip_in |= (1 << 6); /* No VIN6 */
Guenter Roeck0531d982012-03-02 11:46:44 -08001916
1917 /*
1918 * VIN7
1919 * Does not depend on bit 2 of Reg2C, contrary to datasheet.
1920 */
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001921 if (reg27 & (1 << 2)) {
1922 /*
1923 * The data sheet is a bit unclear regarding the
1924 * internal voltage divider for VCCH5V. It says
1925 * "This bit enables and switches VIN7 (pin 91) to the
1926 * internal voltage divider for VCCH5V".
1927 * This is different to other chips, where the internal
1928 * voltage divider would connect VIN7 to an internal
1929 * voltage source. Maybe that is the case here as well.
1930 *
1931 * Since we don't know for sure, re-route it if that is
1932 * not the case, and ask the user to report if the
1933 * resulting voltage is sane.
1934 */
Guenter Roeck088ce2a2013-03-13 16:40:39 -07001935 if (!(reg2c & (1 << 1))) {
1936 reg2c |= (1 << 1);
1937 superio_outb(IT87_SIO_PINX2_REG, reg2c);
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001938 pr_notice("Routing internal VCCH5V to in7.\n");
1939 }
1940 pr_notice("in7 routed to internal voltage divider, with external pin disabled.\n");
1941 pr_notice("Please report if it displays a reasonable voltage.\n");
1942 }
Guenter Roeck0531d982012-03-02 11:46:44 -08001943
Guenter Roeck088ce2a2013-03-13 16:40:39 -07001944 if (reg2c & (1 << 0))
Guenter Roeck0531d982012-03-02 11:46:44 -08001945 sio_data->internal |= (1 << 0);
Guenter Roeck088ce2a2013-03-13 16:40:39 -07001946 if (reg2c & (1 << 1))
Guenter Roeck0531d982012-03-02 11:46:44 -08001947 sio_data->internal |= (1 << 1);
1948
1949 sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f;
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001950 } else if (sio_data->type == it8603) {
1951 int reg27, reg29;
Guenter Roeck0531d982012-03-02 11:46:44 -08001952
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001953 superio_select(GPIO);
1954
1955 reg27 = superio_inb(IT87_SIO_GPIO3_REG);
1956
1957 /* Check if fan3 is there or not */
1958 if (reg27 & (1 << 6))
1959 sio_data->skip_pwm |= (1 << 2);
1960 if (reg27 & (1 << 7))
1961 sio_data->skip_fan |= (1 << 2);
1962
1963 /* Check if fan2 is there or not */
1964 reg29 = superio_inb(IT87_SIO_GPIO5_REG);
1965 if (reg29 & (1 << 1))
1966 sio_data->skip_pwm |= (1 << 1);
1967 if (reg29 & (1 << 2))
1968 sio_data->skip_fan |= (1 << 1);
1969
1970 sio_data->skip_in |= (1 << 5); /* No VIN5 */
1971 sio_data->skip_in |= (1 << 6); /* No VIN6 */
1972
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001973 sio_data->internal |= (1 << 3); /* in9 is AVCC */
1974
1975 sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f;
Jean Delvare895ff262009-12-09 20:35:47 +01001976 } else {
Jean Delvare87673dd2006-08-28 14:37:19 +02001977 int reg;
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001978 bool uart6;
Jean Delvare87673dd2006-08-28 14:37:19 +02001979
1980 superio_select(GPIO);
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001981
Jean Delvare895ff262009-12-09 20:35:47 +01001982 reg = superio_inb(IT87_SIO_GPIO3_REG);
Guenter Roeck32dd7c42015-02-12 07:40:23 -08001983 if (!sio_data->skip_vid) {
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001984 /* We need at least 4 VID pins */
1985 if (reg & 0x0f) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01001986 pr_info("VID is disabled (pins used for GPIO)\n");
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001987 sio_data->skip_vid = 1;
1988 }
Jean Delvare895ff262009-12-09 20:35:47 +01001989 }
1990
Jean Delvare591ec652009-12-09 20:35:48 +01001991 /* Check if fan3 is there or not */
1992 if (reg & (1 << 6))
1993 sio_data->skip_pwm |= (1 << 2);
1994 if (reg & (1 << 7))
1995 sio_data->skip_fan |= (1 << 2);
1996
1997 /* Check if fan2 is there or not */
1998 reg = superio_inb(IT87_SIO_GPIO5_REG);
1999 if (reg & (1 << 1))
2000 sio_data->skip_pwm |= (1 << 1);
2001 if (reg & (1 << 2))
2002 sio_data->skip_fan |= (1 << 1);
2003
Jean Delvare895ff262009-12-09 20:35:47 +01002004 if ((sio_data->type == it8718 || sio_data->type == it8720)
2005 && !(sio_data->skip_vid))
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002006 sio_data->vid_value = superio_inb(IT87_SIO_VID_REG);
Jean Delvare87673dd2006-08-28 14:37:19 +02002007
2008 reg = superio_inb(IT87_SIO_PINX2_REG);
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002009
2010 uart6 = sio_data->type == it8782 && (reg & (1 << 2));
2011
Jean Delvare436cad22010-07-09 16:22:48 +02002012 /*
2013 * The IT8720F has no VIN7 pin, so VCCH should always be
2014 * routed internally to VIN7 with an internal divider.
2015 * Curiously, there still is a configuration bit to control
2016 * this, which means it can be set incorrectly. And even
2017 * more curiously, many boards out there are improperly
2018 * configured, even though the IT8720F datasheet claims
2019 * that the internal routing of VCCH to VIN7 is the default
2020 * setting. So we force the internal routing in this case.
Guenter Roeck0531d982012-03-02 11:46:44 -08002021 *
2022 * On IT8782F, VIN7 is multiplexed with one of the UART6 pins.
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002023 * If UART6 is enabled, re-route VIN7 to the internal divider
2024 * if that is not already the case.
Jean Delvare436cad22010-07-09 16:22:48 +02002025 */
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002026 if ((sio_data->type == it8720 || uart6) && !(reg & (1 << 1))) {
Jean Delvare436cad22010-07-09 16:22:48 +02002027 reg |= (1 << 1);
2028 superio_outb(IT87_SIO_PINX2_REG, reg);
Joe Perchesa8ca1032011-01-12 21:55:10 +01002029 pr_notice("Routing internal VCCH to in7\n");
Jean Delvare436cad22010-07-09 16:22:48 +02002030 }
Jean Delvare87673dd2006-08-28 14:37:19 +02002031 if (reg & (1 << 0))
Jean Delvare738e5e02010-08-14 21:08:50 +02002032 sio_data->internal |= (1 << 0);
Guenter Roeck7f5726c2015-03-26 08:49:18 -07002033 if (reg & (1 << 1))
Jean Delvare738e5e02010-08-14 21:08:50 +02002034 sio_data->internal |= (1 << 1);
Jean Delvared9b327c2010-03-05 22:17:17 +01002035
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002036 /*
2037 * On IT8782F, UART6 pins overlap with VIN5, VIN6, and VIN7.
2038 * While VIN7 can be routed to the internal voltage divider,
2039 * VIN5 and VIN6 are not available if UART6 is enabled.
Guenter Roeck4573acb2012-03-26 16:17:41 -07002040 *
2041 * Also, temp3 is not available if UART6 is enabled and TEMPIN3
2042 * is the temperature source. Since we can not read the
2043 * temperature source here, skip_temp is preliminary.
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002044 */
Guenter Roeck4573acb2012-03-26 16:17:41 -07002045 if (uart6) {
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002046 sio_data->skip_in |= (1 << 5) | (1 << 6);
Guenter Roeck4573acb2012-03-26 16:17:41 -07002047 sio_data->skip_temp |= (1 << 2);
2048 }
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002049
Jean Delvared9b327c2010-03-05 22:17:17 +01002050 sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f;
Jean Delvare87673dd2006-08-28 14:37:19 +02002051 }
Jean Delvared9b327c2010-03-05 22:17:17 +01002052 if (sio_data->beep_pin)
Joe Perchesa8ca1032011-01-12 21:55:10 +01002053 pr_info("Beeping is supported\n");
Jean Delvare87673dd2006-08-28 14:37:19 +02002054
Jean Delvare98dd22c2008-10-09 15:33:58 +02002055 /* Disable specific features based on DMI strings */
2056 board_vendor = dmi_get_system_info(DMI_BOARD_VENDOR);
2057 board_name = dmi_get_system_info(DMI_BOARD_NAME);
2058 if (board_vendor && board_name) {
2059 if (strcmp(board_vendor, "nVIDIA") == 0
2060 && strcmp(board_name, "FN68PT") == 0) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002061 /*
2062 * On the Shuttle SN68PT, FAN_CTL2 is apparently not
2063 * connected to a fan, but to something else. One user
2064 * has reported instant system power-off when changing
2065 * the PWM2 duty cycle, so we disable it.
2066 * I use the board name string as the trigger in case
2067 * the same board is ever used in other systems.
2068 */
Joe Perchesa8ca1032011-01-12 21:55:10 +01002069 pr_info("Disabling pwm2 due to hardware constraints\n");
Jean Delvare98dd22c2008-10-09 15:33:58 +02002070 sio_data->skip_pwm = (1 << 1);
2071 }
2072 }
2073
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074exit:
2075 superio_exit();
2076 return err;
2077}
2078
Jean Delvare723a0aa2010-03-05 22:17:16 +01002079static void it87_remove_files(struct device *dev)
2080{
2081 struct it87_data *data = platform_get_drvdata(pdev);
Jingoo Hana8b3a3a2013-07-30 17:13:06 +09002082 struct it87_sio_data *sio_data = dev_get_platdata(dev);
Jean Delvare723a0aa2010-03-05 22:17:16 +01002083 int i;
2084
2085 sysfs_remove_group(&dev->kobj, &it87_group);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002086 for (i = 0; i < 10; i++) {
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002087 if (sio_data->skip_in & (1 << i))
2088 continue;
2089 sysfs_remove_group(&dev->kobj, &it87_group_in[i]);
2090 if (it87_attributes_in_beep[i])
2091 sysfs_remove_file(&dev->kobj,
2092 it87_attributes_in_beep[i]);
2093 }
Guenter Roeck4573acb2012-03-26 16:17:41 -07002094 for (i = 0; i < 3; i++) {
2095 if (!(data->has_temp & (1 << i)))
2096 continue;
2097 sysfs_remove_group(&dev->kobj, &it87_group_temp[i]);
Guenter Roeck161d8982012-12-19 22:17:01 +01002098 if (has_temp_offset(data))
2099 sysfs_remove_file(&dev->kobj,
2100 it87_attributes_temp_offset[i]);
Guenter Roeck4573acb2012-03-26 16:17:41 -07002101 if (sio_data->beep_pin)
2102 sysfs_remove_file(&dev->kobj,
2103 it87_attributes_temp_beep[i]);
2104 }
Jean Delvare723a0aa2010-03-05 22:17:16 +01002105 for (i = 0; i < 5; i++) {
2106 if (!(data->has_fan & (1 << i)))
2107 continue;
Guenter Roecke1169ba2012-12-19 22:17:01 +01002108 sysfs_remove_group(&dev->kobj, &it87_group_fan[i]);
Jean Delvared9b327c2010-03-05 22:17:17 +01002109 if (sio_data->beep_pin)
2110 sysfs_remove_file(&dev->kobj,
2111 it87_attributes_fan_beep[i]);
Guenter Roecke1169ba2012-12-19 22:17:01 +01002112 if (i < 3 && !has_16bit_fans(data))
2113 sysfs_remove_file(&dev->kobj,
2114 it87_attributes_fan_div[i]);
Jean Delvare723a0aa2010-03-05 22:17:16 +01002115 }
2116 for (i = 0; i < 3; i++) {
Guenter Roeck1696d1d2015-03-27 06:03:41 -07002117 if (sio_data->skip_pwm & (1 << i))
Jean Delvare723a0aa2010-03-05 22:17:16 +01002118 continue;
2119 sysfs_remove_group(&dev->kobj, &it87_group_pwm[i]);
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002120 if (has_old_autopwm(data))
2121 sysfs_remove_group(&dev->kobj,
2122 &it87_group_autopwm[i]);
Jean Delvare723a0aa2010-03-05 22:17:16 +01002123 }
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01002124 if (!sio_data->skip_vid)
2125 sysfs_remove_group(&dev->kobj, &it87_group_vid);
Jean Delvare738e5e02010-08-14 21:08:50 +02002126 sysfs_remove_group(&dev->kobj, &it87_group_label);
Jean Delvare723a0aa2010-03-05 22:17:16 +01002127}
2128
Bill Pemberton6c931ae2012-11-19 13:22:35 -05002129static int it87_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 struct it87_data *data;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002132 struct resource *res;
2133 struct device *dev = &pdev->dev;
Jingoo Hana8b3a3a2013-07-30 17:13:06 +09002134 struct it87_sio_data *sio_data = dev_get_platdata(dev);
Jean Delvare723a0aa2010-03-05 22:17:16 +01002135 int err = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 int enable_pwm_interface;
Jean Delvared9b327c2010-03-05 22:17:17 +01002137 int fan_beep_need_rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002139 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
Guenter Roeck62a1d052012-03-24 21:54:41 -07002140 if (!devm_request_region(&pdev->dev, res->start, IT87_EC_EXTENT,
2141 DRVNAME)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002142 dev_err(dev, "Failed to request region 0x%lx-0x%lx\n",
2143 (unsigned long)res->start,
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05002144 (unsigned long)(res->start + IT87_EC_EXTENT - 1));
Guenter Roeck62a1d052012-03-24 21:54:41 -07002145 return -EBUSY;
Jean Delvare8e9afcb2006-12-12 18:18:28 +01002146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
Guenter Roeck62a1d052012-03-24 21:54:41 -07002148 data = devm_kzalloc(&pdev->dev, sizeof(struct it87_data), GFP_KERNEL);
2149 if (!data)
2150 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002152 data->addr = res->start;
2153 data->type = sio_data->type;
Guenter Roeck483db432012-12-19 22:17:02 +01002154 data->features = it87_devices[sio_data->type].features;
Guenter Roeck5d8d2f22012-12-19 22:17:02 +01002155 data->peci_mask = it87_devices[sio_data->type].peci_mask;
Guenter Roeck19529782012-12-19 22:17:02 +01002156 data->old_peci_mask = it87_devices[sio_data->type].old_peci_mask;
Guenter Roeck483db432012-12-19 22:17:02 +01002157 data->name = it87_devices[sio_data->type].name;
2158 /*
2159 * IT8705F Datasheet 0.4.1, 3h == Version G.
2160 * IT8712F Datasheet 0.9.1, section 8.3.5 indicates 8h == Version J.
2161 * These are the first revisions with 16-bit tachometer support.
2162 */
2163 switch (data->type) {
2164 case it87:
2165 if (sio_data->revision >= 0x03) {
2166 data->features &= ~FEAT_OLD_AUTOPWM;
Guenter Roeck9faf28c2015-02-12 07:11:38 -08002167 data->features |= FEAT_FAN16_CONFIG | FEAT_16BIT_FANS;
Guenter Roeck483db432012-12-19 22:17:02 +01002168 }
2169 break;
2170 case it8712:
2171 if (sio_data->revision >= 0x08) {
2172 data->features &= ~FEAT_OLD_AUTOPWM;
Guenter Roeck9faf28c2015-02-12 07:11:38 -08002173 data->features |= FEAT_FAN16_CONFIG | FEAT_16BIT_FANS |
2174 FEAT_FIVE_FANS;
Guenter Roeck483db432012-12-19 22:17:02 +01002175 }
2176 break;
2177 default:
2178 break;
2179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
2181 /* Now, we do the remaining detection. */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002182 if ((it87_read_value(data, IT87_REG_CONFIG) & 0x80)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002183 || it87_read_value(data, IT87_REG_CHIPID) != 0x90)
2184 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002186 platform_set_drvdata(pdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
Ingo Molnar9a61bf62006-01-18 23:19:26 +01002188 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 /* Check PWM configuration */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002191 enable_pwm_interface = it87_check_pwm(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002193 /* Starting with IT8721F, we handle scaling of internal voltages */
Jean Delvare16b5dda2012-01-16 22:51:48 +01002194 if (has_12mv_adc(data)) {
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002195 if (sio_data->internal & (1 << 0))
2196 data->in_scaled |= (1 << 3); /* in3 is AVCC */
2197 if (sio_data->internal & (1 << 1))
2198 data->in_scaled |= (1 << 7); /* in7 is VSB */
2199 if (sio_data->internal & (1 << 2))
2200 data->in_scaled |= (1 << 8); /* in8 is Vbat */
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002201 if (sio_data->internal & (1 << 3))
2202 data->in_scaled |= (1 << 9); /* in9 is AVCC */
Guenter Roeck7bc32d22015-01-17 14:10:24 -08002203 } else if (sio_data->type == it8781 || sio_data->type == it8782 ||
2204 sio_data->type == it8783) {
Guenter Roeck0531d982012-03-02 11:46:44 -08002205 if (sio_data->internal & (1 << 0))
2206 data->in_scaled |= (1 << 3); /* in3 is VCC5V */
2207 if (sio_data->internal & (1 << 1))
2208 data->in_scaled |= (1 << 7); /* in7 is VCCH5V */
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002209 }
2210
Guenter Roeck4573acb2012-03-26 16:17:41 -07002211 data->has_temp = 0x07;
2212 if (sio_data->skip_temp & (1 << 2)) {
2213 if (sio_data->type == it8782
2214 && !(it87_read_value(data, IT87_REG_TEMP_EXTRA) & 0x80))
2215 data->has_temp &= ~(1 << 2);
2216 }
2217
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 /* Initialize the IT87 chip */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002219 it87_init_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
2221 /* Register sysfs hooks */
Jean Delvare5f2dc792010-03-05 22:17:18 +01002222 err = sysfs_create_group(&dev->kobj, &it87_group);
2223 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002224 return err;
Jean Delvare17d648b2006-08-28 14:23:46 +02002225
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002226 for (i = 0; i < 10; i++) {
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002227 if (sio_data->skip_in & (1 << i))
2228 continue;
2229 err = sysfs_create_group(&dev->kobj, &it87_group_in[i]);
2230 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002231 goto error;
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002232 if (sio_data->beep_pin && it87_attributes_in_beep[i]) {
2233 err = sysfs_create_file(&dev->kobj,
2234 it87_attributes_in_beep[i]);
2235 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002236 goto error;
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002237 }
2238 }
2239
Guenter Roeck4573acb2012-03-26 16:17:41 -07002240 for (i = 0; i < 3; i++) {
2241 if (!(data->has_temp & (1 << i)))
2242 continue;
2243 err = sysfs_create_group(&dev->kobj, &it87_group_temp[i]);
Jean Delvared9b327c2010-03-05 22:17:17 +01002244 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002245 goto error;
Guenter Roeck161d8982012-12-19 22:17:01 +01002246 if (has_temp_offset(data)) {
2247 err = sysfs_create_file(&dev->kobj,
2248 it87_attributes_temp_offset[i]);
2249 if (err)
2250 goto error;
2251 }
Guenter Roeck4573acb2012-03-26 16:17:41 -07002252 if (sio_data->beep_pin) {
2253 err = sysfs_create_file(&dev->kobj,
2254 it87_attributes_temp_beep[i]);
2255 if (err)
2256 goto error;
2257 }
Jean Delvared9b327c2010-03-05 22:17:17 +01002258 }
2259
Jean Delvare9060f8b2006-08-28 14:24:17 +02002260 /* Do not create fan files for disabled fans */
Jean Delvared9b327c2010-03-05 22:17:17 +01002261 fan_beep_need_rw = 1;
Jean Delvare723a0aa2010-03-05 22:17:16 +01002262 for (i = 0; i < 5; i++) {
2263 if (!(data->has_fan & (1 << i)))
2264 continue;
Guenter Roecke1169ba2012-12-19 22:17:01 +01002265 err = sysfs_create_group(&dev->kobj, &it87_group_fan[i]);
Jean Delvare723a0aa2010-03-05 22:17:16 +01002266 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002267 goto error;
Jean Delvared9b327c2010-03-05 22:17:17 +01002268
Guenter Roecke1169ba2012-12-19 22:17:01 +01002269 if (i < 3 && !has_16bit_fans(data)) {
2270 err = sysfs_create_file(&dev->kobj,
2271 it87_attributes_fan_div[i]);
2272 if (err)
2273 goto error;
2274 }
2275
Jean Delvared9b327c2010-03-05 22:17:17 +01002276 if (sio_data->beep_pin) {
2277 err = sysfs_create_file(&dev->kobj,
2278 it87_attributes_fan_beep[i]);
2279 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002280 goto error;
Jean Delvared9b327c2010-03-05 22:17:17 +01002281 if (!fan_beep_need_rw)
2282 continue;
2283
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002284 /*
2285 * As we have a single beep enable bit for all fans,
Jean Delvared9b327c2010-03-05 22:17:17 +01002286 * only the first enabled fan has a writable attribute
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002287 * for it.
2288 */
Jean Delvared9b327c2010-03-05 22:17:17 +01002289 if (sysfs_chmod_file(&dev->kobj,
2290 it87_attributes_fan_beep[i],
2291 S_IRUGO | S_IWUSR))
2292 dev_dbg(dev, "chmod +w fan%d_beep failed\n",
2293 i + 1);
2294 fan_beep_need_rw = 0;
2295 }
Jean Delvare17d648b2006-08-28 14:23:46 +02002296 }
2297
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 if (enable_pwm_interface) {
Jean Delvare723a0aa2010-03-05 22:17:16 +01002299 for (i = 0; i < 3; i++) {
2300 if (sio_data->skip_pwm & (1 << i))
2301 continue;
2302 err = sysfs_create_group(&dev->kobj,
2303 &it87_group_pwm[i]);
2304 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002305 goto error;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002306
2307 if (!has_old_autopwm(data))
2308 continue;
2309 err = sysfs_create_group(&dev->kobj,
2310 &it87_group_autopwm[i]);
2311 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002312 goto error;
Jean Delvare98dd22c2008-10-09 15:33:58 +02002313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 }
2315
Jean Delvare895ff262009-12-09 20:35:47 +01002316 if (!sio_data->skip_vid) {
Jean Delvare303760b2005-07-31 21:52:01 +02002317 data->vrm = vid_which_vrm();
Jean Delvare87673dd2006-08-28 14:37:19 +02002318 /* VID reading from Super-I/O config space if available */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002319 data->vid = sio_data->vid_value;
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01002320 err = sysfs_create_group(&dev->kobj, &it87_group_vid);
2321 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002322 goto error;
Jean Delvare87808be2006-09-24 21:17:13 +02002323 }
2324
Jean Delvare738e5e02010-08-14 21:08:50 +02002325 /* Export labels for internal sensors */
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002326 for (i = 0; i < 4; i++) {
Jean Delvare738e5e02010-08-14 21:08:50 +02002327 if (!(sio_data->internal & (1 << i)))
2328 continue;
2329 err = sysfs_create_file(&dev->kobj,
2330 it87_attributes_label[i]);
2331 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002332 goto error;
Jean Delvare738e5e02010-08-14 21:08:50 +02002333 }
2334
Tony Jones1beeffe2007-08-20 13:46:20 -07002335 data->hwmon_dev = hwmon_device_register(dev);
2336 if (IS_ERR(data->hwmon_dev)) {
2337 err = PTR_ERR(data->hwmon_dev);
Guenter Roeck62a1d052012-03-24 21:54:41 -07002338 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 }
2340
2341 return 0;
2342
Guenter Roeck62a1d052012-03-24 21:54:41 -07002343error:
Jean Delvare723a0aa2010-03-05 22:17:16 +01002344 it87_remove_files(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 return err;
2346}
2347
Bill Pemberton281dfd02012-11-19 13:25:51 -05002348static int it87_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002350 struct it87_data *data = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
Tony Jones1beeffe2007-08-20 13:46:20 -07002352 hwmon_device_unregister(data->hwmon_dev);
Jean Delvare723a0aa2010-03-05 22:17:16 +01002353 it87_remove_files(&pdev->dev);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04002354
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 return 0;
2356}
2357
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002358/*
2359 * Must be called with data->update_lock held, except during initialization.
2360 * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
2361 * would slow down the IT87 access and should not be necessary.
2362 */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002363static int it87_read_value(struct it87_data *data, u8 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002365 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
2366 return inb_p(data->addr + IT87_DATA_REG_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367}
2368
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002369/*
2370 * Must be called with data->update_lock held, except during initialization.
2371 * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
2372 * would slow down the IT87 access and should not be necessary.
2373 */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002374static void it87_write_value(struct it87_data *data, u8 reg, u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002376 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
2377 outb_p(value, data->addr + IT87_DATA_REG_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378}
2379
2380/* Return 1 if and only if the PWM interface is safe to use */
Bill Pemberton6c931ae2012-11-19 13:22:35 -05002381static int it87_check_pwm(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002383 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002384 /*
2385 * Some BIOSes fail to correctly configure the IT87 fans. All fans off
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 * and polarity set to active low is sign that this is the case so we
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002387 * disable pwm control to protect the user.
2388 */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002389 int tmp = it87_read_value(data, IT87_REG_FAN_CTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 if ((tmp & 0x87) == 0) {
2391 if (fix_pwm_polarity) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002392 /*
2393 * The user asks us to attempt a chip reconfiguration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 * This means switching to active high polarity and
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002395 * inverting all fan speed values.
2396 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 int i;
2398 u8 pwm[3];
2399
2400 for (i = 0; i < 3; i++)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002401 pwm[i] = it87_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 IT87_REG_PWM(i));
2403
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002404 /*
2405 * If any fan is in automatic pwm mode, the polarity
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 * might be correct, as suspicious as it seems, so we
2407 * better don't change anything (but still disable the
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002408 * PWM interface).
2409 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 if (!((pwm[0] | pwm[1] | pwm[2]) & 0x80)) {
Guenter Roeck1d9bcf62012-12-19 22:17:01 +01002411 dev_info(dev,
2412 "Reconfiguring PWM to active high polarity\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002413 it87_write_value(data, IT87_REG_FAN_CTL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 tmp | 0x87);
2415 for (i = 0; i < 3; i++)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002416 it87_write_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 IT87_REG_PWM(i),
2418 0x7f & ~pwm[i]);
2419 return 1;
2420 }
2421
Guenter Roeck1d9bcf62012-12-19 22:17:01 +01002422 dev_info(dev,
2423 "PWM configuration is too broken to be fixed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 }
2425
Guenter Roeck1d9bcf62012-12-19 22:17:01 +01002426 dev_info(dev,
2427 "Detected broken BIOS defaults, disabling PWM interface\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 return 0;
2429 } else if (fix_pwm_polarity) {
Guenter Roeck1d9bcf62012-12-19 22:17:01 +01002430 dev_info(dev,
2431 "PWM configuration looks sane, won't touch\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 }
2433
2434 return 1;
2435}
2436
2437/* Called when we have found a new IT87. */
Bill Pemberton6c931ae2012-11-19 13:22:35 -05002438static void it87_init_device(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439{
Jingoo Hana8b3a3a2013-07-30 17:13:06 +09002440 struct it87_sio_data *sio_data = dev_get_platdata(&pdev->dev);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002441 struct it87_data *data = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 int tmp, i;
Jean Delvare591ec652009-12-09 20:35:48 +01002443 u8 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002445 /*
2446 * For each PWM channel:
Jean Delvareb99883d2010-03-05 22:17:15 +01002447 * - If it is in automatic mode, setting to manual mode should set
2448 * the fan to full speed by default.
2449 * - If it is in manual mode, we need a mapping to temperature
2450 * channels to use when later setting to automatic mode later.
2451 * Use a 1:1 mapping by default (we are clueless.)
2452 * In both cases, the value can (and should) be changed by the user
Jean Delvare6229cdb2010-12-08 16:27:22 +01002453 * prior to switching to a different mode.
2454 * Note that this is no longer needed for the IT8721F and later, as
2455 * these have separate registers for the temperature mapping and the
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002456 * manual duty cycle.
2457 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 for (i = 0; i < 3; i++) {
Jean Delvareb99883d2010-03-05 22:17:15 +01002459 data->pwm_temp_map[i] = i;
2460 data->pwm_duty[i] = 0x7f; /* Full speed */
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002461 data->auto_pwm[i][3] = 0x7f; /* Full speed, hard-coded */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 }
2463
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002464 /*
2465 * Some chips seem to have default value 0xff for all limit
Jean Delvarec5df9b72006-08-28 14:37:54 +02002466 * registers. For low voltage limits it makes no sense and triggers
2467 * alarms, so change to 0 instead. For high temperature limits, it
2468 * means -1 degree C, which surprisingly doesn't trigger an alarm,
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002469 * but is still confusing, so change to 127 degrees C.
2470 */
Jean Delvarec5df9b72006-08-28 14:37:54 +02002471 for (i = 0; i < 8; i++) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002472 tmp = it87_read_value(data, IT87_REG_VIN_MIN(i));
Jean Delvarec5df9b72006-08-28 14:37:54 +02002473 if (tmp == 0xff)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002474 it87_write_value(data, IT87_REG_VIN_MIN(i), 0);
Jean Delvarec5df9b72006-08-28 14:37:54 +02002475 }
2476 for (i = 0; i < 3; i++) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002477 tmp = it87_read_value(data, IT87_REG_TEMP_HIGH(i));
Jean Delvarec5df9b72006-08-28 14:37:54 +02002478 if (tmp == 0xff)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002479 it87_write_value(data, IT87_REG_TEMP_HIGH(i), 127);
Jean Delvarec5df9b72006-08-28 14:37:54 +02002480 }
2481
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002482 /*
2483 * Temperature channels are not forcibly enabled, as they can be
Jean Delvarea00afb92010-04-14 16:14:09 +02002484 * set to two different sensor types and we can't guess which one
2485 * is correct for a given system. These channels can be enabled at
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002486 * run-time through the temp{1-3}_type sysfs accessors if needed.
2487 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488
2489 /* Check if voltage monitors are reset manually or by some reason */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002490 tmp = it87_read_value(data, IT87_REG_VIN_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 if ((tmp & 0xff) == 0) {
2492 /* Enable all voltage monitors */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002493 it87_write_value(data, IT87_REG_VIN_ENABLE, 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 }
2495
2496 /* Check if tachometers are reset manually or by some reason */
Jean Delvare591ec652009-12-09 20:35:48 +01002497 mask = 0x70 & ~(sio_data->skip_fan << 4);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002498 data->fan_main_ctrl = it87_read_value(data, IT87_REG_FAN_MAIN_CTRL);
Jean Delvare591ec652009-12-09 20:35:48 +01002499 if ((data->fan_main_ctrl & mask) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 /* Enable all fan tachometers */
Jean Delvare591ec652009-12-09 20:35:48 +01002501 data->fan_main_ctrl |= mask;
Jean Delvare5f2dc792010-03-05 22:17:18 +01002502 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
2503 data->fan_main_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 }
Jean Delvare9060f8b2006-08-28 14:24:17 +02002505 data->has_fan = (data->fan_main_ctrl >> 4) & 0x07;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
Guenter Roeck9faf28c2015-02-12 07:11:38 -08002507 /* Set tachometers to 16-bit mode if needed */
2508 if (has_fan16_config(data)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002509 tmp = it87_read_value(data, IT87_REG_FAN_16BIT);
Jean Delvare9060f8b2006-08-28 14:24:17 +02002510 if (~tmp & 0x07 & data->has_fan) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002511 dev_dbg(&pdev->dev,
Jean Delvare17d648b2006-08-28 14:23:46 +02002512 "Setting fan1-3 to 16-bit mode\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002513 it87_write_value(data, IT87_REG_FAN_16BIT,
Jean Delvare17d648b2006-08-28 14:23:46 +02002514 tmp | 0x07);
2515 }
Guenter Roeck9faf28c2015-02-12 07:11:38 -08002516 }
2517
2518 /* Check for additional fans */
2519 if (has_five_fans(data)) {
2520 tmp = it87_read_value(data, IT87_REG_FAN_16BIT);
2521 if (tmp & (1 << 4))
2522 data->has_fan |= (1 << 3); /* fan4 enabled */
2523 if (tmp & (1 << 5))
2524 data->has_fan |= (1 << 4); /* fan5 enabled */
Jean Delvare17d648b2006-08-28 14:23:46 +02002525 }
2526
Jean Delvare591ec652009-12-09 20:35:48 +01002527 /* Fan input pins may be used for alternative functions */
2528 data->has_fan &= ~sio_data->skip_fan;
2529
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 /* Start monitoring */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002531 it87_write_value(data, IT87_REG_CONFIG,
Jean Delvare41002f82012-07-12 22:47:37 +02002532 (it87_read_value(data, IT87_REG_CONFIG) & 0x3e)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 | (update_vbat ? 0x41 : 0x01));
2534}
2535
Jean Delvareb99883d2010-03-05 22:17:15 +01002536static void it87_update_pwm_ctrl(struct it87_data *data, int nr)
2537{
2538 data->pwm_ctrl[nr] = it87_read_value(data, IT87_REG_PWM(nr));
Jean Delvare16b5dda2012-01-16 22:51:48 +01002539 if (has_newer_autopwm(data)) {
Jean Delvareb99883d2010-03-05 22:17:15 +01002540 data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03;
Jean Delvare6229cdb2010-12-08 16:27:22 +01002541 data->pwm_duty[nr] = it87_read_value(data,
2542 IT87_REG_PWM_DUTY(nr));
2543 } else {
2544 if (data->pwm_ctrl[nr] & 0x80) /* Automatic mode */
2545 data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03;
2546 else /* Manual mode */
2547 data->pwm_duty[nr] = data->pwm_ctrl[nr] & 0x7f;
2548 }
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002549
2550 if (has_old_autopwm(data)) {
2551 int i;
2552
2553 for (i = 0; i < 5 ; i++)
2554 data->auto_temp[nr][i] = it87_read_value(data,
2555 IT87_REG_AUTO_TEMP(nr, i));
2556 for (i = 0; i < 3 ; i++)
2557 data->auto_pwm[nr][i] = it87_read_value(data,
2558 IT87_REG_AUTO_PWM(nr, i));
2559 }
Jean Delvareb99883d2010-03-05 22:17:15 +01002560}
2561
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562static struct it87_data *it87_update_device(struct device *dev)
2563{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002564 struct it87_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 int i;
2566
Ingo Molnar9a61bf62006-01-18 23:19:26 +01002567 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568
2569 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
2570 || !data->valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 if (update_vbat) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002572 /*
2573 * Cleared after each update, so reenable. Value
2574 * returned by this read will be previous value
2575 */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002576 it87_write_value(data, IT87_REG_CONFIG,
Jean Delvare5f2dc792010-03-05 22:17:18 +01002577 it87_read_value(data, IT87_REG_CONFIG) | 0x40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 }
2579 for (i = 0; i <= 7; i++) {
Guenter Roeck929c6a52012-12-19 22:17:00 +01002580 data->in[i][0] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002581 it87_read_value(data, IT87_REG_VIN(i));
Guenter Roeck929c6a52012-12-19 22:17:00 +01002582 data->in[i][1] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002583 it87_read_value(data, IT87_REG_VIN_MIN(i));
Guenter Roeck929c6a52012-12-19 22:17:00 +01002584 data->in[i][2] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002585 it87_read_value(data, IT87_REG_VIN_MAX(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 }
Jean Delvare3543a532006-08-28 14:27:25 +02002587 /* in8 (battery) has no limit registers */
Guenter Roeck929c6a52012-12-19 22:17:00 +01002588 data->in[8][0] = it87_read_value(data, IT87_REG_VIN(8));
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002589 if (data->type == it8603)
2590 data->in[9][0] = it87_read_value(data, 0x2f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591
Jean Delvarec7f1f712007-09-03 17:11:46 +02002592 for (i = 0; i < 5; i++) {
Jean Delvare9060f8b2006-08-28 14:24:17 +02002593 /* Skip disabled fans */
2594 if (!(data->has_fan & (1 << i)))
2595 continue;
2596
Guenter Roecke1169ba2012-12-19 22:17:01 +01002597 data->fan[i][1] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002598 it87_read_value(data, IT87_REG_FAN_MIN[i]);
Guenter Roecke1169ba2012-12-19 22:17:01 +01002599 data->fan[i][0] = it87_read_value(data,
Jean Delvarec7f1f712007-09-03 17:11:46 +02002600 IT87_REG_FAN[i]);
Jean Delvare17d648b2006-08-28 14:23:46 +02002601 /* Add high byte if in 16-bit mode */
Andrew Paprocki04751692008-08-06 22:41:06 +02002602 if (has_16bit_fans(data)) {
Guenter Roecke1169ba2012-12-19 22:17:01 +01002603 data->fan[i][0] |= it87_read_value(data,
Jean Delvarec7f1f712007-09-03 17:11:46 +02002604 IT87_REG_FANX[i]) << 8;
Guenter Roecke1169ba2012-12-19 22:17:01 +01002605 data->fan[i][1] |= it87_read_value(data,
Jean Delvarec7f1f712007-09-03 17:11:46 +02002606 IT87_REG_FANX_MIN[i]) << 8;
Jean Delvare17d648b2006-08-28 14:23:46 +02002607 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 }
2609 for (i = 0; i < 3; i++) {
Guenter Roeck4573acb2012-03-26 16:17:41 -07002610 if (!(data->has_temp & (1 << i)))
2611 continue;
Guenter Roeck60ca3852012-12-19 22:17:00 +01002612 data->temp[i][0] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002613 it87_read_value(data, IT87_REG_TEMP(i));
Guenter Roeck60ca3852012-12-19 22:17:00 +01002614 data->temp[i][1] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002615 it87_read_value(data, IT87_REG_TEMP_LOW(i));
Guenter Roeck60ca3852012-12-19 22:17:00 +01002616 data->temp[i][2] =
2617 it87_read_value(data, IT87_REG_TEMP_HIGH(i));
Guenter Roeck161d8982012-12-19 22:17:01 +01002618 if (has_temp_offset(data))
2619 data->temp[i][3] =
2620 it87_read_value(data,
2621 IT87_REG_TEMP_OFFSET[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 }
2623
Jean Delvare17d648b2006-08-28 14:23:46 +02002624 /* Newer chips don't have clock dividers */
Andrew Paprocki04751692008-08-06 22:41:06 +02002625 if ((data->has_fan & 0x07) && !has_16bit_fans(data)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002626 i = it87_read_value(data, IT87_REG_FAN_DIV);
Jean Delvare17d648b2006-08-28 14:23:46 +02002627 data->fan_div[0] = i & 0x07;
2628 data->fan_div[1] = (i >> 3) & 0x07;
2629 data->fan_div[2] = (i & 0x40) ? 3 : 1;
2630 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631
2632 data->alarms =
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002633 it87_read_value(data, IT87_REG_ALARM1) |
2634 (it87_read_value(data, IT87_REG_ALARM2) << 8) |
2635 (it87_read_value(data, IT87_REG_ALARM3) << 16);
Jean Delvared9b327c2010-03-05 22:17:17 +01002636 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
Jean Delvareb99883d2010-03-05 22:17:15 +01002637
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002638 data->fan_main_ctrl = it87_read_value(data,
2639 IT87_REG_FAN_MAIN_CTRL);
2640 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL);
Jean Delvareb99883d2010-03-05 22:17:15 +01002641 for (i = 0; i < 3; i++)
2642 it87_update_pwm_ctrl(data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002644 data->sensor = it87_read_value(data, IT87_REG_TEMP_ENABLE);
Guenter Roeck19529782012-12-19 22:17:02 +01002645 data->extra = it87_read_value(data, IT87_REG_TEMP_EXTRA);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002646 /*
2647 * The IT8705F does not have VID capability.
2648 * The IT8718F and later don't use IT87_REG_VID for the
2649 * same purpose.
2650 */
Jean Delvare17d648b2006-08-28 14:23:46 +02002651 if (data->type == it8712 || data->type == it8716) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002652 data->vid = it87_read_value(data, IT87_REG_VID);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002653 /*
2654 * The older IT8712F revisions had only 5 VID pins,
2655 * but we assume it is always safe to read 6 bits.
2656 */
Jean Delvare17d648b2006-08-28 14:23:46 +02002657 data->vid &= 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 }
2659 data->last_updated = jiffies;
2660 data->valid = 1;
2661 }
2662
Ingo Molnar9a61bf62006-01-18 23:19:26 +01002663 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664
2665 return data;
2666}
2667
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002668static int __init it87_device_add(unsigned short address,
2669 const struct it87_sio_data *sio_data)
2670{
2671 struct resource res = {
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05002672 .start = address + IT87_EC_OFFSET,
2673 .end = address + IT87_EC_OFFSET + IT87_EC_EXTENT - 1,
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002674 .name = DRVNAME,
2675 .flags = IORESOURCE_IO,
2676 };
2677 int err;
2678
Jean Delvareb9acb642009-01-07 16:37:35 +01002679 err = acpi_check_resource_conflict(&res);
2680 if (err)
2681 goto exit;
2682
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002683 pdev = platform_device_alloc(DRVNAME, address);
2684 if (!pdev) {
2685 err = -ENOMEM;
Joe Perchesa8ca1032011-01-12 21:55:10 +01002686 pr_err("Device allocation failed\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002687 goto exit;
2688 }
2689
2690 err = platform_device_add_resources(pdev, &res, 1);
2691 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002692 pr_err("Device resource addition failed (%d)\n", err);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002693 goto exit_device_put;
2694 }
2695
2696 err = platform_device_add_data(pdev, sio_data,
2697 sizeof(struct it87_sio_data));
2698 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002699 pr_err("Platform data allocation failed\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002700 goto exit_device_put;
2701 }
2702
2703 err = platform_device_add(pdev);
2704 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002705 pr_err("Device addition failed (%d)\n", err);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002706 goto exit_device_put;
2707 }
2708
2709 return 0;
2710
2711exit_device_put:
2712 platform_device_put(pdev);
2713exit:
2714 return err;
2715}
2716
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717static int __init sm_it87_init(void)
2718{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002719 int err;
Jean Delvare5f2dc792010-03-05 22:17:18 +01002720 unsigned short isa_address = 0;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002721 struct it87_sio_data sio_data;
Jean Delvarefde09502005-07-19 23:51:07 +02002722
Jean Delvare98dd22c2008-10-09 15:33:58 +02002723 memset(&sio_data, 0, sizeof(struct it87_sio_data));
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002724 err = it87_find(&isa_address, &sio_data);
2725 if (err)
2726 return err;
2727 err = platform_driver_register(&it87_driver);
2728 if (err)
2729 return err;
2730
2731 err = it87_device_add(isa_address, &sio_data);
Jean Delvare5f2dc792010-03-05 22:17:18 +01002732 if (err) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002733 platform_driver_unregister(&it87_driver);
2734 return err;
2735 }
2736
2737 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738}
2739
2740static void __exit sm_it87_exit(void)
2741{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002742 platform_device_unregister(pdev);
2743 platform_driver_unregister(&it87_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744}
2745
2746
Jean Delvare7c81c602014-01-29 20:40:08 +01002747MODULE_AUTHOR("Chris Gauthron, Jean Delvare <jdelvare@suse.de>");
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002748MODULE_DESCRIPTION("IT8705F/IT871xF/IT872xF hardware monitoring driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749module_param(update_vbat, bool, 0);
2750MODULE_PARM_DESC(update_vbat, "Update vbat if set else return powerup value");
2751module_param(fix_pwm_polarity, bool, 0);
Jean Delvare5f2dc792010-03-05 22:17:18 +01002752MODULE_PARM_DESC(fix_pwm_polarity,
2753 "Force PWM polarity to active high (DANGEROUS)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754MODULE_LICENSE("GPL");
2755
2756module_init(sm_it87_init);
2757module_exit(sm_it87_exit);