blob: 4dfc7238313ebd393e0e4dc0e17bb4414d1e8b68 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jean Delvare5f2dc792010-03-05 22:17:18 +01002 * it87.c - Part of lm_sensors, Linux kernel modules for hardware
3 * monitoring.
4 *
5 * The IT8705F is an LPC-based Super I/O part that contains UARTs, a
6 * parallel port, an IR port, a MIDI port, a floppy controller, etc., in
7 * addition to an Environment Controller (Enhanced Hardware Monitor and
8 * Fan Controller)
9 *
10 * This driver supports only the Environment Controller in the IT8705F and
11 * similar parts. The other devices are supported by different drivers.
12 *
Rudolf Marekc145d5c2014-01-29 20:40:08 +010013 * Supports: IT8603E Super I/O chip w/LPC interface
Guenter Roeck3ba9d972015-02-13 20:13:20 -080014 * IT8620E Super I/O chip w/LPC interface
Guenter Roeck8af1aba2017-02-08 13:52:57 -080015 * IT8622E Super I/O chip w/LPC interface
Rudolf Marek574e9bd2014-04-04 18:01:35 +020016 * IT8623E Super I/O chip w/LPC interface
Guenter Roeck71a9c232016-01-18 00:35:58 -080017 * IT8628E Super I/O chip w/LPC interface
Rudolf Marekc145d5c2014-01-29 20:40:08 +010018 * IT8705F Super I/O chip w/LPC interface
Jean Delvare5f2dc792010-03-05 22:17:18 +010019 * IT8712F Super I/O chip w/LPC interface
20 * IT8716F Super I/O chip w/LPC interface
21 * IT8718F Super I/O chip w/LPC interface
22 * IT8720F Super I/O chip w/LPC interface
Jean Delvare44c1bcd2010-10-28 20:31:51 +020023 * IT8721F Super I/O chip w/LPC interface
Jean Delvare5f2dc792010-03-05 22:17:18 +010024 * IT8726F Super I/O chip w/LPC interface
Jean Delvare16b5dda2012-01-16 22:51:48 +010025 * IT8728F Super I/O chip w/LPC interface
Justin Maggardead80802015-08-05 12:53:08 -070026 * IT8732F Super I/O chip w/LPC interface
Jean Delvare44c1bcd2010-10-28 20:31:51 +020027 * IT8758E Super I/O chip w/LPC interface
Guenter Roeckb0636702012-09-07 17:34:41 -060028 * IT8771E Super I/O chip w/LPC interface
29 * IT8772E Super I/O chip w/LPC interface
Guenter Roeck7bc32d22015-01-17 14:10:24 -080030 * IT8781F Super I/O chip w/LPC interface
Guenter Roeck0531d982012-03-02 11:46:44 -080031 * IT8782F Super I/O chip w/LPC interface
32 * IT8783E/F Super I/O chip w/LPC interface
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +010033 * IT8786E Super I/O chip w/LPC interface
Guenter Roeck4ee07152015-03-25 23:26:28 -070034 * IT8790E Super I/O chip w/LPC interface
Guenter Roecke531ffc2017-02-08 15:10:27 -080035 * IT8792E Super I/O chip w/LPC interface
Jean Delvare5f2dc792010-03-05 22:17:18 +010036 * Sis950 A clone of the IT8705F
37 *
38 * Copyright (C) 2001 Chris Gauthron
Jean Delvare7c81c60f2014-01-29 20:40:08 +010039 * Copyright (C) 2005-2010 Jean Delvare <jdelvare@suse.de>
Jean Delvare5f2dc792010-03-05 22:17:18 +010040 *
41 * This program is free software; you can redistribute it and/or modify
42 * it under the terms of the GNU General Public License as published by
43 * the Free Software Foundation; either version 2 of the License, or
44 * (at your option) any later version.
45 *
46 * This program is distributed in the hope that it will be useful,
47 * but WITHOUT ANY WARRANTY; without even the implied warranty of
48 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
49 * GNU General Public License for more details.
Jean Delvare5f2dc792010-03-05 22:17:18 +010050 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Joe Perchesa8ca1032011-01-12 21:55:10 +010052#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
53
Guenter Roeck48b2ae72015-04-02 08:06:12 -070054#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/module.h>
56#include <linux/init.h>
57#include <linux/slab.h>
58#include <linux/jiffies.h>
corentin.labbeb74f3fd2007-06-13 20:27:36 +020059#include <linux/platform_device.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040060#include <linux/hwmon.h>
Jean Delvare303760b2005-07-31 21:52:01 +020061#include <linux/hwmon-sysfs.h>
62#include <linux/hwmon-vid.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040063#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010064#include <linux/mutex.h>
Jean Delvare87808be2006-09-24 21:17:13 +020065#include <linux/sysfs.h>
Jean Delvare98dd22c2008-10-09 15:33:58 +020066#include <linux/string.h>
67#include <linux/dmi.h>
Jean Delvareb9acb642009-01-07 16:37:35 +010068#include <linux/acpi.h>
H Hartley Sweeten6055fae2009-09-15 17:18:13 +020069#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
corentin.labbeb74f3fd2007-06-13 20:27:36 +020071#define DRVNAME "it87"
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Justin Maggardead80802015-08-05 12:53:08 -070073enum chips { it87, it8712, it8716, it8718, it8720, it8721, it8728, it8732,
Guenter Roecke531ffc2017-02-08 15:10:27 -080074 it8771, it8772, it8781, it8782, it8783, it8786, it8790,
75 it8792, it8603, it8620, it8622, it8628 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Jean Delvare67b671b2007-12-06 23:13:42 +010077static unsigned short force_id;
78module_param(force_id, ushort, 0);
79MODULE_PARM_DESC(force_id, "Override the detected device ID");
80
Guenter Roecke84bd952015-03-28 08:24:29 -070081static struct platform_device *it87_pdev[2];
corentin.labbeb74f3fd2007-06-13 20:27:36 +020082
Guenter Roeck3c2e3512015-03-28 08:03:10 -070083#define REG_2E 0x2e /* The register to read/write */
Guenter Roecke84bd952015-03-28 08:24:29 -070084#define REG_4E 0x4e /* Secondary register to read/write */
Guenter Roeck3c2e3512015-03-28 08:03:10 -070085
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#define DEV 0x07 /* Register: Logical device select */
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#define PME 0x04 /* The device with the fan registers in it */
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +010088
89/* The device with the IT8718F/IT8720F VID value in it */
90#define GPIO 0x07
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#define DEVID 0x20 /* Register: Device ID */
93#define DEVREV 0x22 /* Register: Device Revision */
94
Guenter Roeck3c2e3512015-03-28 08:03:10 -070095static inline int superio_inb(int ioreg, int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Guenter Roeck3c2e3512015-03-28 08:03:10 -070097 outb(reg, ioreg);
98 return inb(ioreg + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700101static inline void superio_outb(int ioreg, int reg, int val)
Jean Delvare436cad22010-07-09 16:22:48 +0200102{
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700103 outb(reg, ioreg);
104 outb(val, ioreg + 1);
Jean Delvare436cad22010-07-09 16:22:48 +0200105}
106
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700107static int superio_inw(int ioreg, int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
109 int val;
Guenter Roeckc9620242015-04-04 09:05:57 -0700110
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700111 outb(reg++, ioreg);
112 val = inb(ioreg + 1) << 8;
113 outb(reg, ioreg);
114 val |= inb(ioreg + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 return val;
116}
117
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700118static inline void superio_select(int ioreg, int ldn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700120 outb(DEV, ioreg);
121 outb(ldn, ioreg + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
123
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700124static inline int superio_enter(int ioreg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200126 /*
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700127 * Try to reserve ioreg and ioreg + 1 for exclusive access.
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200128 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700129 if (!request_muxed_region(ioreg, 2, DRVNAME))
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200130 return -EBUSY;
131
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700132 outb(0x87, ioreg);
133 outb(0x01, ioreg);
134 outb(0x55, ioreg);
Guenter Roecke84bd952015-03-28 08:24:29 -0700135 outb(ioreg == REG_4E ? 0xaa : 0x55, ioreg);
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200136 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700139static inline void superio_exit(int ioreg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700141 outb(0x02, ioreg);
142 outb(0x02, ioreg + 1);
143 release_region(ioreg, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
Jean Delvare87673dd2006-08-28 14:37:19 +0200146/* Logical device 4 registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147#define IT8712F_DEVID 0x8712
148#define IT8705F_DEVID 0x8705
Jean Delvare17d648b2006-08-28 14:23:46 +0200149#define IT8716F_DEVID 0x8716
Jean Delvare87673dd2006-08-28 14:37:19 +0200150#define IT8718F_DEVID 0x8718
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +0100151#define IT8720F_DEVID 0x8720
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200152#define IT8721F_DEVID 0x8721
Rudolf Marek08a8f6e2007-06-09 10:11:16 -0400153#define IT8726F_DEVID 0x8726
Jean Delvare16b5dda2012-01-16 22:51:48 +0100154#define IT8728F_DEVID 0x8728
Justin Maggardead80802015-08-05 12:53:08 -0700155#define IT8732F_DEVID 0x8732
Guenter Roecke531ffc2017-02-08 15:10:27 -0800156#define IT8792E_DEVID 0x8733
Guenter Roeckb0636702012-09-07 17:34:41 -0600157#define IT8771E_DEVID 0x8771
158#define IT8772E_DEVID 0x8772
Guenter Roeck7bc32d22015-01-17 14:10:24 -0800159#define IT8781F_DEVID 0x8781
Guenter Roeck0531d982012-03-02 11:46:44 -0800160#define IT8782F_DEVID 0x8782
161#define IT8783E_DEVID 0x8783
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +0100162#define IT8786E_DEVID 0x8786
Guenter Roeck4ee07152015-03-25 23:26:28 -0700163#define IT8790E_DEVID 0x8790
Rudolf Marek7183ae82014-04-04 18:01:35 +0200164#define IT8603E_DEVID 0x8603
Guenter Roeck3ba9d972015-02-13 20:13:20 -0800165#define IT8620E_DEVID 0x8620
Guenter Roeck8af1aba2017-02-08 13:52:57 -0800166#define IT8622E_DEVID 0x8622
Rudolf Marek574e9bd2014-04-04 18:01:35 +0200167#define IT8623E_DEVID 0x8623
Guenter Roeck71a9c232016-01-18 00:35:58 -0800168#define IT8628E_DEVID 0x8628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169#define IT87_ACT_REG 0x30
170#define IT87_BASE_REG 0x60
171
Jean Delvare87673dd2006-08-28 14:37:19 +0200172/* Logical device 7 registers (IT8712F and later) */
Guenter Roeck0531d982012-03-02 11:46:44 -0800173#define IT87_SIO_GPIO1_REG 0x25
Guenter Roeck3ba9d972015-02-13 20:13:20 -0800174#define IT87_SIO_GPIO2_REG 0x26
Jean Delvare895ff262009-12-09 20:35:47 +0100175#define IT87_SIO_GPIO3_REG 0x27
Guenter Roeck36c4d982015-03-26 18:18:19 -0700176#define IT87_SIO_GPIO4_REG 0x28
Jean Delvare591ec652009-12-09 20:35:48 +0100177#define IT87_SIO_GPIO5_REG 0x29
Guenter Roeck0531d982012-03-02 11:46:44 -0800178#define IT87_SIO_PINX1_REG 0x2a /* Pin selection */
Jean Delvare87673dd2006-08-28 14:37:19 +0200179#define IT87_SIO_PINX2_REG 0x2c /* Pin selection */
Guenter Roeck0531d982012-03-02 11:46:44 -0800180#define IT87_SIO_SPI_REG 0xef /* SPI function pin select */
Jean Delvare87673dd2006-08-28 14:37:19 +0200181#define IT87_SIO_VID_REG 0xfc /* VID value */
Jean Delvared9b327c2010-03-05 22:17:17 +0100182#define IT87_SIO_BEEP_PIN_REG 0xf6 /* Beep pin mapping */
Jean Delvare87673dd2006-08-28 14:37:19 +0200183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184/* Update battery voltage after every reading if true */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030185static bool update_vbat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187/* Not all BIOSes properly configure the PWM registers */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030188static bool fix_pwm_polarity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190/* Many IT87 constants specified below */
191
192/* Length of ISA address segment */
193#define IT87_EXTENT 8
194
Bjorn Helgaas87b4b662008-01-22 07:21:03 -0500195/* Length of ISA address segment for Environmental Controller */
196#define IT87_EC_EXTENT 2
197
198/* Offset of EC registers from ISA base address */
199#define IT87_EC_OFFSET 5
200
201/* Where are the ISA address/data registers relative to the EC base address */
202#define IT87_ADDR_REG_OFFSET 0
203#define IT87_DATA_REG_OFFSET 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205/*----- The IT87 registers -----*/
206
207#define IT87_REG_CONFIG 0x00
208
209#define IT87_REG_ALARM1 0x01
210#define IT87_REG_ALARM2 0x02
211#define IT87_REG_ALARM3 0x03
212
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800213/*
214 * The IT8718F and IT8720F have the VID value in a different register, in
215 * Super-I/O configuration space.
216 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217#define IT87_REG_VID 0x0a
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800218/*
219 * The IT8705F and IT8712F earlier than revision 0x08 use register 0x0b
220 * for fan divisors. Later IT8712F revisions must use 16-bit tachometer
221 * mode.
222 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223#define IT87_REG_FAN_DIV 0x0b
Jean Delvare17d648b2006-08-28 14:23:46 +0200224#define IT87_REG_FAN_16BIT 0x0c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Guenter Roeckf838aa22015-04-01 20:09:36 -0700226/*
227 * Monitors:
228 * - up to 13 voltage (0 to 7, battery, avcc, 10 to 12)
229 * - up to 6 temp (1 to 6)
230 * - up to 6 fan (1 to 6)
231 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Guenter Roeckfa3f70d2015-03-25 23:15:32 -0700233static const u8 IT87_REG_FAN[] = { 0x0d, 0x0e, 0x0f, 0x80, 0x82, 0x4c };
234static const u8 IT87_REG_FAN_MIN[] = { 0x10, 0x11, 0x12, 0x84, 0x86, 0x4e };
235static const u8 IT87_REG_FANX[] = { 0x18, 0x19, 0x1a, 0x81, 0x83, 0x4d };
236static const u8 IT87_REG_FANX_MIN[] = { 0x1b, 0x1c, 0x1d, 0x85, 0x87, 0x4f };
237static const u8 IT87_REG_TEMP_OFFSET[] = { 0x56, 0x57, 0x59 };
Guenter Roeck161d8982012-12-19 22:17:01 +0100238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239#define IT87_REG_FAN_MAIN_CTRL 0x13
240#define IT87_REG_FAN_CTL 0x14
Guenter Roeck36c4d982015-03-26 18:18:19 -0700241static const u8 IT87_REG_PWM[] = { 0x15, 0x16, 0x17, 0x7f, 0xa7, 0xaf };
242static const u8 IT87_REG_PWM_DUTY[] = { 0x63, 0x6b, 0x73, 0x7b, 0xa3, 0xab };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Guenter Roeck559313c2015-04-01 10:15:38 -0700244static const u8 IT87_REG_VIN[] = { 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26,
Guenter Roeckf838aa22015-04-01 20:09:36 -0700245 0x27, 0x28, 0x2f, 0x2c, 0x2d, 0x2e };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Guenter Roeck559313c2015-04-01 10:15:38 -0700247#define IT87_REG_TEMP(nr) (0x29 + (nr))
Guenter Roeck73055402015-03-26 09:16:32 -0700248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249#define IT87_REG_VIN_MAX(nr) (0x30 + (nr) * 2)
250#define IT87_REG_VIN_MIN(nr) (0x31 + (nr) * 2)
251#define IT87_REG_TEMP_HIGH(nr) (0x40 + (nr) * 2)
252#define IT87_REG_TEMP_LOW(nr) (0x41 + (nr) * 2)
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254#define IT87_REG_VIN_ENABLE 0x50
255#define IT87_REG_TEMP_ENABLE 0x51
Guenter Roeck4573acb2012-03-26 16:17:41 -0700256#define IT87_REG_TEMP_EXTRA 0x55
Jean Delvared9b327c2010-03-05 22:17:17 +0100257#define IT87_REG_BEEP_ENABLE 0x5c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259#define IT87_REG_CHIPID 0x58
260
Guenter Roeck2cbb9c32015-04-05 11:53:29 -0700261static const u8 IT87_REG_AUTO_BASE[] = { 0x60, 0x68, 0x70, 0x78, 0xa0, 0xa8 };
262
263#define IT87_REG_AUTO_TEMP(nr, i) (IT87_REG_AUTO_BASE[nr] + (i))
264#define IT87_REG_AUTO_PWM(nr, i) (IT87_REG_AUTO_BASE[nr] + 5 + (i))
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100265
Guenter Roeckcc18da72015-04-01 10:03:01 -0700266#define IT87_REG_TEMP456_ENABLE 0x77
267
Guenter Roeck23100482015-04-02 08:23:45 -0700268#define NUM_VIN ARRAY_SIZE(IT87_REG_VIN)
269#define NUM_VIN_LIMIT 8
270#define NUM_TEMP 6
271#define NUM_TEMP_OFFSET ARRAY_SIZE(IT87_REG_TEMP_OFFSET)
272#define NUM_TEMP_LIMIT 3
273#define NUM_FAN ARRAY_SIZE(IT87_REG_FAN)
274#define NUM_FAN_DIV 3
275#define NUM_PWM ARRAY_SIZE(IT87_REG_PWM)
276#define NUM_AUTO_PWM ARRAY_SIZE(IT87_REG_PWM)
277
Guenter Roeck483db432012-12-19 22:17:02 +0100278struct it87_devices {
279 const char *name;
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700280 const char * const suffix;
Guenter Roeckcc18da72015-04-01 10:03:01 -0700281 u32 features;
Guenter Roeck19529782012-12-19 22:17:02 +0100282 u8 peci_mask;
283 u8 old_peci_mask;
Guenter Roeck483db432012-12-19 22:17:02 +0100284};
285
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700286#define FEAT_12MV_ADC BIT(0)
287#define FEAT_NEWER_AUTOPWM BIT(1)
288#define FEAT_OLD_AUTOPWM BIT(2)
289#define FEAT_16BIT_FANS BIT(3)
290#define FEAT_TEMP_OFFSET BIT(4)
291#define FEAT_TEMP_PECI BIT(5)
292#define FEAT_TEMP_OLD_PECI BIT(6)
293#define FEAT_FAN16_CONFIG BIT(7) /* Need to enable 16-bit fans */
294#define FEAT_FIVE_FANS BIT(8) /* Supports five fans */
295#define FEAT_VID BIT(9) /* Set if chip supports VID */
296#define FEAT_IN7_INTERNAL BIT(10) /* Set if in7 is internal */
297#define FEAT_SIX_FANS BIT(11) /* Supports six fans */
298#define FEAT_10_9MV_ADC BIT(12)
299#define FEAT_AVCC3 BIT(13) /* Chip supports in9/AVCC3 */
Guenter Roeck638c1c02017-02-08 14:00:21 -0800300#define FEAT_FIVE_PWM BIT(14) /* Chip supports 5 pwm chn */
301#define FEAT_SIX_PWM BIT(15) /* Chip supports 6 pwm chn */
302#define FEAT_PWM_FREQ2 BIT(16) /* Separate pwm freq 2 */
303#define FEAT_SIX_TEMP BIT(17) /* Up to 6 temp sensors */
304#define FEAT_VIN3_5V BIT(18) /* VIN3 connected to +5V */
Guenter Roeck483db432012-12-19 22:17:02 +0100305
306static const struct it87_devices it87_devices[] = {
307 [it87] = {
308 .name = "it87",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700309 .suffix = "F",
Guenter Roeck483db432012-12-19 22:17:02 +0100310 .features = FEAT_OLD_AUTOPWM, /* may need to overwrite */
311 },
312 [it8712] = {
313 .name = "it8712",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700314 .suffix = "F",
Guenter Roeck32dd7c402015-02-12 07:40:23 -0800315 .features = FEAT_OLD_AUTOPWM | FEAT_VID,
316 /* may need to overwrite */
Guenter Roeck483db432012-12-19 22:17:02 +0100317 },
318 [it8716] = {
319 .name = "it8716",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700320 .suffix = "F",
Guenter Roeck32dd7c402015-02-12 07:40:23 -0800321 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET | FEAT_VID
Guenter Roeck60878bc2015-03-26 19:57:42 -0700322 | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS | FEAT_PWM_FREQ2,
Guenter Roeck483db432012-12-19 22:17:02 +0100323 },
324 [it8718] = {
325 .name = "it8718",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700326 .suffix = "F",
Guenter Roeck32dd7c402015-02-12 07:40:23 -0800327 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET | FEAT_VID
Guenter Roeck60878bc2015-03-26 19:57:42 -0700328 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS
329 | FEAT_PWM_FREQ2,
Guenter Roeck19529782012-12-19 22:17:02 +0100330 .old_peci_mask = 0x4,
Guenter Roeck483db432012-12-19 22:17:02 +0100331 },
332 [it8720] = {
333 .name = "it8720",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700334 .suffix = "F",
Guenter Roeck32dd7c402015-02-12 07:40:23 -0800335 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET | FEAT_VID
Guenter Roeck60878bc2015-03-26 19:57:42 -0700336 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS
337 | FEAT_PWM_FREQ2,
Guenter Roeck19529782012-12-19 22:17:02 +0100338 .old_peci_mask = 0x4,
Guenter Roeck483db432012-12-19 22:17:02 +0100339 },
340 [it8721] = {
341 .name = "it8721",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700342 .suffix = "F",
Guenter Roeck483db432012-12-19 22:17:02 +0100343 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800344 | FEAT_TEMP_OFFSET | FEAT_TEMP_OLD_PECI | FEAT_TEMP_PECI
Guenter Roeck60878bc2015-03-26 19:57:42 -0700345 | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS | FEAT_IN7_INTERNAL
346 | FEAT_PWM_FREQ2,
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100347 .peci_mask = 0x05,
Guenter Roeck19529782012-12-19 22:17:02 +0100348 .old_peci_mask = 0x02, /* Actually reports PCH */
Guenter Roeck483db432012-12-19 22:17:02 +0100349 },
350 [it8728] = {
351 .name = "it8728",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700352 .suffix = "F",
Guenter Roeck483db432012-12-19 22:17:02 +0100353 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck7f5726c2015-03-26 08:49:18 -0700354 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_FIVE_FANS
Guenter Roeck60878bc2015-03-26 19:57:42 -0700355 | FEAT_IN7_INTERNAL | FEAT_PWM_FREQ2,
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100356 .peci_mask = 0x07,
Guenter Roeck483db432012-12-19 22:17:02 +0100357 },
Justin Maggardead80802015-08-05 12:53:08 -0700358 [it8732] = {
359 .name = "it8732",
360 .suffix = "F",
361 .features = FEAT_NEWER_AUTOPWM | FEAT_16BIT_FANS
362 | FEAT_TEMP_OFFSET | FEAT_TEMP_OLD_PECI | FEAT_TEMP_PECI
363 | FEAT_10_9MV_ADC | FEAT_IN7_INTERNAL,
364 .peci_mask = 0x07,
365 .old_peci_mask = 0x02, /* Actually reports PCH */
366 },
Guenter Roeckb0636702012-09-07 17:34:41 -0600367 [it8771] = {
368 .name = "it8771",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700369 .suffix = "E",
Guenter Roeckb0636702012-09-07 17:34:41 -0600370 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck60878bc2015-03-26 19:57:42 -0700371 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL
372 | FEAT_PWM_FREQ2,
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800373 /* PECI: guesswork */
374 /* 12mV ADC (OHM) */
375 /* 16 bit fans (OHM) */
376 /* three fans, always 16 bit (guesswork) */
Guenter Roeckb0636702012-09-07 17:34:41 -0600377 .peci_mask = 0x07,
378 },
379 [it8772] = {
380 .name = "it8772",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700381 .suffix = "E",
Guenter Roeckb0636702012-09-07 17:34:41 -0600382 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck60878bc2015-03-26 19:57:42 -0700383 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL
384 | FEAT_PWM_FREQ2,
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800385 /* PECI (coreboot) */
386 /* 12mV ADC (HWSensors4, OHM) */
387 /* 16 bit fans (HWSensors4, OHM) */
388 /* three fans, always 16 bit (datasheet) */
Guenter Roeckb0636702012-09-07 17:34:41 -0600389 .peci_mask = 0x07,
390 },
Guenter Roeck7bc32d22015-01-17 14:10:24 -0800391 [it8781] = {
392 .name = "it8781",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700393 .suffix = "F",
Guenter Roeck7bc32d22015-01-17 14:10:24 -0800394 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET
Guenter Roeck60878bc2015-03-26 19:57:42 -0700395 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_PWM_FREQ2,
Guenter Roeck7bc32d22015-01-17 14:10:24 -0800396 .old_peci_mask = 0x4,
397 },
Guenter Roeck483db432012-12-19 22:17:02 +0100398 [it8782] = {
399 .name = "it8782",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700400 .suffix = "F",
Guenter Roeck19529782012-12-19 22:17:02 +0100401 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET
Guenter Roeck60878bc2015-03-26 19:57:42 -0700402 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_PWM_FREQ2,
Guenter Roeck19529782012-12-19 22:17:02 +0100403 .old_peci_mask = 0x4,
Guenter Roeck483db432012-12-19 22:17:02 +0100404 },
405 [it8783] = {
406 .name = "it8783",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700407 .suffix = "E/F",
Guenter Roeck19529782012-12-19 22:17:02 +0100408 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET
Guenter Roeck60878bc2015-03-26 19:57:42 -0700409 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_PWM_FREQ2,
Guenter Roeck19529782012-12-19 22:17:02 +0100410 .old_peci_mask = 0x4,
Guenter Roeck483db432012-12-19 22:17:02 +0100411 },
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +0100412 [it8786] = {
413 .name = "it8786",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700414 .suffix = "E",
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +0100415 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck60878bc2015-03-26 19:57:42 -0700416 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL
417 | FEAT_PWM_FREQ2,
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +0100418 .peci_mask = 0x07,
419 },
Guenter Roeck4ee07152015-03-25 23:26:28 -0700420 [it8790] = {
421 .name = "it8790",
422 .suffix = "E",
423 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck60878bc2015-03-26 19:57:42 -0700424 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL
425 | FEAT_PWM_FREQ2,
Guenter Roeck4ee07152015-03-25 23:26:28 -0700426 .peci_mask = 0x07,
427 },
Guenter Roecke531ffc2017-02-08 15:10:27 -0800428 [it8792] = {
429 .name = "it8792",
430 .suffix = "E",
431 .features = FEAT_NEWER_AUTOPWM | FEAT_16BIT_FANS
432 | FEAT_TEMP_OFFSET | FEAT_TEMP_OLD_PECI | FEAT_TEMP_PECI
433 | FEAT_10_9MV_ADC | FEAT_IN7_INTERNAL,
434 .peci_mask = 0x07,
435 .old_peci_mask = 0x02, /* Actually reports PCH */
436 },
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100437 [it8603] = {
438 .name = "it8603",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700439 .suffix = "E",
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100440 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck73055402015-03-26 09:16:32 -0700441 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL
Guenter Roeck60878bc2015-03-26 19:57:42 -0700442 | FEAT_AVCC3 | FEAT_PWM_FREQ2,
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100443 .peci_mask = 0x07,
444 },
Guenter Roeck3ba9d972015-02-13 20:13:20 -0800445 [it8620] = {
446 .name = "it8620",
447 .suffix = "E",
448 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeckfa3f70d2015-03-25 23:15:32 -0700449 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_SIX_FANS
Guenter Roeckcc18da72015-04-01 10:03:01 -0700450 | FEAT_IN7_INTERNAL | FEAT_SIX_PWM | FEAT_PWM_FREQ2
Guenter Roecka9eebd42017-02-08 13:51:16 -0800451 | FEAT_SIX_TEMP | FEAT_VIN3_5V,
Guenter Roeck3ba9d972015-02-13 20:13:20 -0800452 .peci_mask = 0x07,
453 },
Guenter Roeck8af1aba2017-02-08 13:52:57 -0800454 [it8622] = {
455 .name = "it8622",
456 .suffix = "E",
457 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
458 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_FIVE_FANS
Guenter Roeck638c1c02017-02-08 14:00:21 -0800459 | FEAT_FIVE_PWM | FEAT_IN7_INTERNAL | FEAT_PWM_FREQ2
460 | FEAT_AVCC3 | FEAT_VIN3_5V,
Guenter Roeck8af1aba2017-02-08 13:52:57 -0800461 .peci_mask = 0x07,
462 },
Guenter Roeck71a9c232016-01-18 00:35:58 -0800463 [it8628] = {
464 .name = "it8628",
465 .suffix = "E",
466 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
467 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_SIX_FANS
468 | FEAT_IN7_INTERNAL | FEAT_SIX_PWM | FEAT_PWM_FREQ2
Guenter Roecka9eebd42017-02-08 13:51:16 -0800469 | FEAT_SIX_TEMP | FEAT_VIN3_5V,
Guenter Roeck71a9c232016-01-18 00:35:58 -0800470 .peci_mask = 0x07,
471 },
Guenter Roeck483db432012-12-19 22:17:02 +0100472};
473
474#define has_16bit_fans(data) ((data)->features & FEAT_16BIT_FANS)
475#define has_12mv_adc(data) ((data)->features & FEAT_12MV_ADC)
Justin Maggardead80802015-08-05 12:53:08 -0700476#define has_10_9mv_adc(data) ((data)->features & FEAT_10_9MV_ADC)
Guenter Roeck483db432012-12-19 22:17:02 +0100477#define has_newer_autopwm(data) ((data)->features & FEAT_NEWER_AUTOPWM)
478#define has_old_autopwm(data) ((data)->features & FEAT_OLD_AUTOPWM)
479#define has_temp_offset(data) ((data)->features & FEAT_TEMP_OFFSET)
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100480#define has_temp_peci(data, nr) (((data)->features & FEAT_TEMP_PECI) && \
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700481 ((data)->peci_mask & BIT(nr)))
Guenter Roeck19529782012-12-19 22:17:02 +0100482#define has_temp_old_peci(data, nr) \
483 (((data)->features & FEAT_TEMP_OLD_PECI) && \
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700484 ((data)->old_peci_mask & BIT(nr)))
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800485#define has_fan16_config(data) ((data)->features & FEAT_FAN16_CONFIG)
Guenter Roeckfa3f70d2015-03-25 23:15:32 -0700486#define has_five_fans(data) ((data)->features & (FEAT_FIVE_FANS | \
487 FEAT_SIX_FANS))
Guenter Roeck32dd7c402015-02-12 07:40:23 -0800488#define has_vid(data) ((data)->features & FEAT_VID)
Guenter Roeck7f5726c2015-03-26 08:49:18 -0700489#define has_in7_internal(data) ((data)->features & FEAT_IN7_INTERNAL)
Guenter Roeckfa3f70d2015-03-25 23:15:32 -0700490#define has_six_fans(data) ((data)->features & FEAT_SIX_FANS)
Guenter Roeck73055402015-03-26 09:16:32 -0700491#define has_avcc3(data) ((data)->features & FEAT_AVCC3)
Guenter Roeck638c1c02017-02-08 14:00:21 -0800492#define has_five_pwm(data) ((data)->features & (FEAT_FIVE_PWM \
493 | FEAT_SIX_PWM))
Guenter Roeck36c4d982015-03-26 18:18:19 -0700494#define has_six_pwm(data) ((data)->features & FEAT_SIX_PWM)
Guenter Roeck60878bc2015-03-26 19:57:42 -0700495#define has_pwm_freq2(data) ((data)->features & FEAT_PWM_FREQ2)
Guenter Roeckcc18da72015-04-01 10:03:01 -0700496#define has_six_temp(data) ((data)->features & FEAT_SIX_TEMP)
Guenter Roecka9eebd42017-02-08 13:51:16 -0800497#define has_vin3_5v(data) ((data)->features & FEAT_VIN3_5V)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200499struct it87_sio_data {
500 enum chips type;
501 /* Values read from Super-I/O config space */
Andrew Paprocki04751692008-08-06 22:41:06 +0200502 u8 revision;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200503 u8 vid_value;
Jean Delvared9b327c2010-03-05 22:17:17 +0100504 u8 beep_pin;
Jean Delvare738e5e02010-08-14 21:08:50 +0200505 u8 internal; /* Internal sensors can be labeled */
Jean Delvare591ec652009-12-09 20:35:48 +0100506 /* Features skipped based on config or DMI */
Guenter Roeck9172b5d2012-03-24 21:49:54 -0700507 u16 skip_in;
Jean Delvare895ff262009-12-09 20:35:47 +0100508 u8 skip_vid;
Jean Delvare591ec652009-12-09 20:35:48 +0100509 u8 skip_fan;
Jean Delvare98dd22c2008-10-09 15:33:58 +0200510 u8 skip_pwm;
Guenter Roeck4573acb2012-03-26 16:17:41 -0700511 u8 skip_temp;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200512};
513
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800514/*
515 * For each registered chip, we need to keep some data in memory.
516 * The structure is dynamically allocated.
517 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518struct it87_data {
Guenter Roeck8638d0a2015-03-30 11:13:49 -0700519 const struct attribute_group *groups[7];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 enum chips type;
Guenter Roeckaa8b1872016-08-09 22:09:19 -0700521 u32 features;
Guenter Roeck19529782012-12-19 22:17:02 +0100522 u8 peci_mask;
523 u8 old_peci_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200525 unsigned short addr;
526 const char *name;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100527 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 char valid; /* !=0 if following fields are valid */
529 unsigned long last_updated; /* In jiffies */
530
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200531 u16 in_scaled; /* Internal voltage sensors are scaled */
Guenter Roeckd3766842013-03-30 15:47:21 -0700532 u16 in_internal; /* Bitfield, internal sensors (for labels) */
Guenter Roeck52929712013-03-30 14:00:08 -0700533 u16 has_in; /* Bitfield, voltage sensors enabled */
Guenter Roeck23100482015-04-02 08:23:45 -0700534 u8 in[NUM_VIN][3]; /* [nr][0]=in, [1]=min, [2]=max */
Jean Delvare9060f8b2006-08-28 14:24:17 +0200535 u8 has_fan; /* Bitfield, fans enabled */
Guenter Roeck23100482015-04-02 08:23:45 -0700536 u16 fan[NUM_FAN][2]; /* Register values, [nr][0]=fan, [1]=min */
Guenter Roeck4573acb2012-03-26 16:17:41 -0700537 u8 has_temp; /* Bitfield, temp sensors enabled */
Guenter Roeck23100482015-04-02 08:23:45 -0700538 s8 temp[NUM_TEMP][4]; /* [nr][0]=temp, [1]=min, [2]=max, [3]=offset */
Guenter Roeck19529782012-12-19 22:17:02 +0100539 u8 sensor; /* Register value (IT87_REG_TEMP_ENABLE) */
540 u8 extra; /* Register value (IT87_REG_TEMP_EXTRA) */
Guenter Roeck23100482015-04-02 08:23:45 -0700541 u8 fan_div[NUM_FAN_DIV];/* Register encoding, shifted right */
Guenter Roeckd3766842013-03-30 15:47:21 -0700542 bool has_vid; /* True if VID supported */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 u8 vid; /* Register encoding, combined */
Jean Delvarea7be58a2005-12-18 16:40:14 +0100544 u8 vrm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 u32 alarms; /* Register encoding, combined */
Guenter Roeck52929712013-03-30 14:00:08 -0700546 bool has_beep; /* true if beep supported */
Jean Delvared9b327c2010-03-05 22:17:17 +0100547 u8 beeps; /* Register encoding */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 u8 fan_main_ctrl; /* Register value */
Jean Delvaref8d0c192007-02-14 21:15:02 +0100549 u8 fan_ctl; /* Register value */
Jean Delvareb99883d2010-03-05 22:17:15 +0100550
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800551 /*
552 * The following 3 arrays correspond to the same registers up to
Jean Delvare6229cdb2010-12-08 16:27:22 +0100553 * the IT8720F. The meaning of bits 6-0 depends on the value of bit
554 * 7, and we want to preserve settings on mode changes, so we have
555 * to track all values separately.
556 * Starting with the IT8721F, the manual PWM duty cycles are stored
557 * in separate registers (8-bit values), so the separate tracking
558 * is no longer needed, but it is still done to keep the driver
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800559 * simple.
560 */
Guenter Roeck5c391262013-03-30 15:02:12 -0700561 u8 has_pwm; /* Bitfield, pwm control enabled */
Guenter Roeck23100482015-04-02 08:23:45 -0700562 u8 pwm_ctrl[NUM_PWM]; /* Register value */
563 u8 pwm_duty[NUM_PWM]; /* Manual PWM value set by user */
564 u8 pwm_temp_map[NUM_PWM];/* PWM to temp. chan. mapping (bits 1-0) */
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100565
566 /* Automatic fan speed control registers */
Guenter Roeck23100482015-04-02 08:23:45 -0700567 u8 auto_pwm[NUM_AUTO_PWM][4]; /* [nr][3] is hard-coded */
568 s8 auto_temp[NUM_AUTO_PWM][5]; /* [nr][0] is point1_temp_hyst */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569};
570
Guenter Roeck0531d982012-03-02 11:46:44 -0800571static int adc_lsb(const struct it87_data *data, int nr)
572{
Justin Maggardead80802015-08-05 12:53:08 -0700573 int lsb;
574
575 if (has_12mv_adc(data))
576 lsb = 120;
577 else if (has_10_9mv_adc(data))
578 lsb = 109;
579 else
580 lsb = 160;
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700581 if (data->in_scaled & BIT(nr))
Guenter Roeck0531d982012-03-02 11:46:44 -0800582 lsb <<= 1;
583 return lsb;
584}
585
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200586static u8 in_to_reg(const struct it87_data *data, int nr, long val)
587{
Justin Maggardead80802015-08-05 12:53:08 -0700588 val = DIV_ROUND_CLOSEST(val * 10, adc_lsb(data, nr));
Guenter Roeck2a844c12013-01-09 08:09:34 -0800589 return clamp_val(val, 0, 255);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200590}
591
592static int in_from_reg(const struct it87_data *data, int nr, int val)
593{
Justin Maggardead80802015-08-05 12:53:08 -0700594 return DIV_ROUND_CLOSEST(val * adc_lsb(data, nr), 10);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200595}
Jean Delvare0df6454d2010-10-28 20:31:51 +0200596
597static inline u8 FAN_TO_REG(long rpm, int div)
598{
599 if (rpm == 0)
600 return 255;
Guenter Roeck2a844c12013-01-09 08:09:34 -0800601 rpm = clamp_val(rpm, 1, 1000000);
602 return clamp_val((1350000 + rpm * div / 2) / (rpm * div), 1, 254);
Jean Delvare0df6454d2010-10-28 20:31:51 +0200603}
604
605static inline u16 FAN16_TO_REG(long rpm)
606{
607 if (rpm == 0)
608 return 0xffff;
Guenter Roeck2a844c12013-01-09 08:09:34 -0800609 return clamp_val((1350000 + rpm) / (rpm * 2), 1, 0xfffe);
Jean Delvare0df6454d2010-10-28 20:31:51 +0200610}
611
612#define FAN_FROM_REG(val, div) ((val) == 0 ? -1 : (val) == 255 ? 0 : \
613 1350000 / ((val) * (div)))
614/* The divider is fixed to 2 in 16-bit mode */
615#define FAN16_FROM_REG(val) ((val) == 0 ? -1 : (val) == 0xffff ? 0 : \
616 1350000 / ((val) * 2))
617
Guenter Roeck2a844c12013-01-09 08:09:34 -0800618#define TEMP_TO_REG(val) (clamp_val(((val) < 0 ? (((val) - 500) / 1000) : \
619 ((val) + 500) / 1000), -128, 127))
Jean Delvare0df6454d2010-10-28 20:31:51 +0200620#define TEMP_FROM_REG(val) ((val) * 1000)
621
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200622static u8 pwm_to_reg(const struct it87_data *data, long val)
623{
Jean Delvare16b5dda2012-01-16 22:51:48 +0100624 if (has_newer_autopwm(data))
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200625 return val;
626 else
627 return val >> 1;
628}
629
630static int pwm_from_reg(const struct it87_data *data, u8 reg)
631{
Jean Delvare16b5dda2012-01-16 22:51:48 +0100632 if (has_newer_autopwm(data))
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200633 return reg;
634 else
635 return (reg & 0x7f) << 1;
636}
637
Jean Delvare0df6454d2010-10-28 20:31:51 +0200638static int DIV_TO_REG(int val)
639{
640 int answer = 0;
Guenter Roeckc9620242015-04-04 09:05:57 -0700641
Jean Delvare0df6454d2010-10-28 20:31:51 +0200642 while (answer < 7 && (val >>= 1))
643 answer++;
644 return answer;
645}
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700646
647#define DIV_FROM_REG(val) BIT(val)
Jean Delvare0df6454d2010-10-28 20:31:51 +0200648
Guenter Roeckf56c9c02015-03-26 20:01:24 -0700649/*
650 * PWM base frequencies. The frequency has to be divided by either 128 or 256,
651 * depending on the chip type, to calculate the actual PWM frequency.
652 *
653 * Some of the chip datasheets suggest a base frequency of 51 kHz instead
654 * of 750 kHz for the slowest base frequency, resulting in a PWM frequency
655 * of 200 Hz. Sometimes both PWM frequency select registers are affected,
656 * sometimes just one. It is unknown if this is a datasheet error or real,
657 * so this is ignored for now.
658 */
Jean Delvare0df6454d2010-10-28 20:31:51 +0200659static const unsigned int pwm_freq[8] = {
Guenter Roeckf56c9c02015-03-26 20:01:24 -0700660 48000000,
661 24000000,
662 12000000,
663 8000000,
664 6000000,
665 3000000,
666 1500000,
667 750000,
Jean Delvare0df6454d2010-10-28 20:31:51 +0200668};
669
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700670/*
671 * Must be called with data->update_lock held, except during initialization.
672 * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
673 * would slow down the IT87 access and should not be necessary.
674 */
675static int it87_read_value(struct it87_data *data, u8 reg)
676{
677 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
678 return inb_p(data->addr + IT87_DATA_REG_OFFSET);
679}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700681/*
682 * Must be called with data->update_lock held, except during initialization.
683 * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
684 * would slow down the IT87 access and should not be necessary.
685 */
686static void it87_write_value(struct it87_data *data, u8 reg, u8 value)
687{
688 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
689 outb_p(value, data->addr + IT87_DATA_REG_OFFSET);
690}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700692static void it87_update_pwm_ctrl(struct it87_data *data, int nr)
693{
694 data->pwm_ctrl[nr] = it87_read_value(data, IT87_REG_PWM[nr]);
695 if (has_newer_autopwm(data)) {
Guenter Roeck0624d862015-04-06 21:04:18 -0700696 data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03;
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700697 data->pwm_duty[nr] = it87_read_value(data,
698 IT87_REG_PWM_DUTY[nr]);
699 } else {
700 if (data->pwm_ctrl[nr] & 0x80) /* Automatic mode */
701 data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03;
702 else /* Manual mode */
703 data->pwm_duty[nr] = data->pwm_ctrl[nr] & 0x7f;
704 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700706 if (has_old_autopwm(data)) {
707 int i;
708
709 for (i = 0; i < 5 ; i++)
710 data->auto_temp[nr][i] = it87_read_value(data,
711 IT87_REG_AUTO_TEMP(nr, i));
712 for (i = 0; i < 3 ; i++)
713 data->auto_pwm[nr][i] = it87_read_value(data,
714 IT87_REG_AUTO_PWM(nr, i));
Guenter Roeck2cbb9c32015-04-05 11:53:29 -0700715 } else if (has_newer_autopwm(data)) {
716 int i;
717
718 /*
719 * 0: temperature hysteresis (base + 5)
720 * 1: fan off temperature (base + 0)
721 * 2: fan start temperature (base + 1)
722 * 3: fan max temperature (base + 2)
723 */
724 data->auto_temp[nr][0] =
725 it87_read_value(data, IT87_REG_AUTO_TEMP(nr, 5));
726
727 for (i = 0; i < 3 ; i++)
728 data->auto_temp[nr][i + 1] =
729 it87_read_value(data,
730 IT87_REG_AUTO_TEMP(nr, i));
731 /*
732 * 0: start pwm value (base + 3)
733 * 1: pwm slope (base + 4, 1/8th pwm)
734 */
735 data->auto_pwm[nr][0] =
736 it87_read_value(data, IT87_REG_AUTO_TEMP(nr, 3));
737 data->auto_pwm[nr][1] =
738 it87_read_value(data, IT87_REG_AUTO_TEMP(nr, 4));
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700739 }
740}
741
742static struct it87_data *it87_update_device(struct device *dev)
743{
744 struct it87_data *data = dev_get_drvdata(dev);
745 int i;
746
747 mutex_lock(&data->update_lock);
748
Guenter Roeckc9620242015-04-04 09:05:57 -0700749 if (time_after(jiffies, data->last_updated + HZ + HZ / 2) ||
750 !data->valid) {
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700751 if (update_vbat) {
752 /*
753 * Cleared after each update, so reenable. Value
754 * returned by this read will be previous value
755 */
756 it87_write_value(data, IT87_REG_CONFIG,
757 it87_read_value(data, IT87_REG_CONFIG) | 0x40);
758 }
Guenter Roeck23100482015-04-02 08:23:45 -0700759 for (i = 0; i < NUM_VIN; i++) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700760 if (!(data->has_in & BIT(i)))
Guenter Roeck559313c2015-04-01 10:15:38 -0700761 continue;
762
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700763 data->in[i][0] =
Guenter Roeck559313c2015-04-01 10:15:38 -0700764 it87_read_value(data, IT87_REG_VIN[i]);
765
766 /* VBAT and AVCC don't have limit registers */
Guenter Roeck23100482015-04-02 08:23:45 -0700767 if (i >= NUM_VIN_LIMIT)
Guenter Roeck559313c2015-04-01 10:15:38 -0700768 continue;
769
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700770 data->in[i][1] =
771 it87_read_value(data, IT87_REG_VIN_MIN(i));
772 data->in[i][2] =
773 it87_read_value(data, IT87_REG_VIN_MAX(i));
774 }
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700775
Guenter Roeck23100482015-04-02 08:23:45 -0700776 for (i = 0; i < NUM_FAN; i++) {
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700777 /* Skip disabled fans */
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700778 if (!(data->has_fan & BIT(i)))
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700779 continue;
780
781 data->fan[i][1] =
782 it87_read_value(data, IT87_REG_FAN_MIN[i]);
783 data->fan[i][0] = it87_read_value(data,
784 IT87_REG_FAN[i]);
785 /* Add high byte if in 16-bit mode */
786 if (has_16bit_fans(data)) {
787 data->fan[i][0] |= it87_read_value(data,
788 IT87_REG_FANX[i]) << 8;
789 data->fan[i][1] |= it87_read_value(data,
790 IT87_REG_FANX_MIN[i]) << 8;
791 }
792 }
Guenter Roeck23100482015-04-02 08:23:45 -0700793 for (i = 0; i < NUM_TEMP; i++) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700794 if (!(data->has_temp & BIT(i)))
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700795 continue;
796 data->temp[i][0] =
797 it87_read_value(data, IT87_REG_TEMP(i));
Guenter Roeckcc18da72015-04-01 10:03:01 -0700798
Guenter Roeck23100482015-04-02 08:23:45 -0700799 if (has_temp_offset(data) && i < NUM_TEMP_OFFSET)
800 data->temp[i][3] =
801 it87_read_value(data,
802 IT87_REG_TEMP_OFFSET[i]);
803
804 if (i >= NUM_TEMP_LIMIT)
Guenter Roeckcc18da72015-04-01 10:03:01 -0700805 continue;
806
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700807 data->temp[i][1] =
808 it87_read_value(data, IT87_REG_TEMP_LOW(i));
809 data->temp[i][2] =
810 it87_read_value(data, IT87_REG_TEMP_HIGH(i));
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700811 }
812
813 /* Newer chips don't have clock dividers */
814 if ((data->has_fan & 0x07) && !has_16bit_fans(data)) {
815 i = it87_read_value(data, IT87_REG_FAN_DIV);
816 data->fan_div[0] = i & 0x07;
817 data->fan_div[1] = (i >> 3) & 0x07;
818 data->fan_div[2] = (i & 0x40) ? 3 : 1;
819 }
820
821 data->alarms =
822 it87_read_value(data, IT87_REG_ALARM1) |
823 (it87_read_value(data, IT87_REG_ALARM2) << 8) |
824 (it87_read_value(data, IT87_REG_ALARM3) << 16);
825 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
826
827 data->fan_main_ctrl = it87_read_value(data,
828 IT87_REG_FAN_MAIN_CTRL);
829 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL);
Guenter Roeck0624d862015-04-06 21:04:18 -0700830 for (i = 0; i < NUM_PWM; i++) {
831 if (!(data->has_pwm & BIT(i)))
832 continue;
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700833 it87_update_pwm_ctrl(data, i);
Guenter Roeck0624d862015-04-06 21:04:18 -0700834 }
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700835
836 data->sensor = it87_read_value(data, IT87_REG_TEMP_ENABLE);
837 data->extra = it87_read_value(data, IT87_REG_TEMP_EXTRA);
838 /*
839 * The IT8705F does not have VID capability.
840 * The IT8718F and later don't use IT87_REG_VID for the
841 * same purpose.
842 */
843 if (data->type == it8712 || data->type == it8716) {
844 data->vid = it87_read_value(data, IT87_REG_VID);
845 /*
846 * The older IT8712F revisions had only 5 VID pins,
847 * but we assume it is always safe to read 6 bits.
848 */
849 data->vid &= 0x3f;
850 }
851 data->last_updated = jiffies;
852 data->valid = 1;
853 }
854
855 mutex_unlock(&data->update_lock);
856
857 return data;
858}
Jean Delvarefde09502005-07-19 23:51:07 +0200859
Jean Delvare20ad93d2005-06-05 11:53:25 +0200860static ssize_t show_in(struct device *dev, struct device_attribute *attr,
Guenter Roeck929c6a52012-12-19 22:17:00 +0100861 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
Guenter Roeck929c6a52012-12-19 22:17:00 +0100863 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -0700865 int index = sattr->index;
866 int nr = sattr->nr;
867
Guenter Roeck929c6a52012-12-19 22:17:00 +0100868 return sprintf(buf, "%d\n", in_from_reg(data, nr, data->in[nr][index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869}
870
Guenter Roeck929c6a52012-12-19 22:17:00 +0100871static ssize_t set_in(struct device *dev, struct device_attribute *attr,
872 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
Guenter Roeck929c6a52012-12-19 22:17:00 +0100874 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200875 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -0700876 int index = sattr->index;
877 int nr = sattr->nr;
Jean Delvaref5f64502010-03-05 22:17:19 +0100878 unsigned long val;
879
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100880 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100881 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100883 mutex_lock(&data->update_lock);
Guenter Roeck929c6a52012-12-19 22:17:00 +0100884 data->in[nr][index] = in_to_reg(data, nr, val);
885 it87_write_value(data,
886 index == 1 ? IT87_REG_VIN_MIN(nr)
887 : IT87_REG_VIN_MAX(nr),
888 data->in[nr][index]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100889 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 return count;
891}
892
Guenter Roeck929c6a52012-12-19 22:17:00 +0100893static SENSOR_DEVICE_ATTR_2(in0_input, S_IRUGO, show_in, NULL, 0, 0);
894static SENSOR_DEVICE_ATTR_2(in0_min, S_IRUGO | S_IWUSR, show_in, set_in,
895 0, 1);
896static SENSOR_DEVICE_ATTR_2(in0_max, S_IRUGO | S_IWUSR, show_in, set_in,
897 0, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
Guenter Roeck929c6a52012-12-19 22:17:00 +0100899static SENSOR_DEVICE_ATTR_2(in1_input, S_IRUGO, show_in, NULL, 1, 0);
900static SENSOR_DEVICE_ATTR_2(in1_min, S_IRUGO | S_IWUSR, show_in, set_in,
901 1, 1);
902static SENSOR_DEVICE_ATTR_2(in1_max, S_IRUGO | S_IWUSR, show_in, set_in,
903 1, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Guenter Roeck929c6a52012-12-19 22:17:00 +0100905static SENSOR_DEVICE_ATTR_2(in2_input, S_IRUGO, show_in, NULL, 2, 0);
906static SENSOR_DEVICE_ATTR_2(in2_min, S_IRUGO | S_IWUSR, show_in, set_in,
907 2, 1);
908static SENSOR_DEVICE_ATTR_2(in2_max, S_IRUGO | S_IWUSR, show_in, set_in,
909 2, 2);
910
911static SENSOR_DEVICE_ATTR_2(in3_input, S_IRUGO, show_in, NULL, 3, 0);
912static SENSOR_DEVICE_ATTR_2(in3_min, S_IRUGO | S_IWUSR, show_in, set_in,
913 3, 1);
914static SENSOR_DEVICE_ATTR_2(in3_max, S_IRUGO | S_IWUSR, show_in, set_in,
915 3, 2);
916
917static SENSOR_DEVICE_ATTR_2(in4_input, S_IRUGO, show_in, NULL, 4, 0);
918static SENSOR_DEVICE_ATTR_2(in4_min, S_IRUGO | S_IWUSR, show_in, set_in,
919 4, 1);
920static SENSOR_DEVICE_ATTR_2(in4_max, S_IRUGO | S_IWUSR, show_in, set_in,
921 4, 2);
922
923static SENSOR_DEVICE_ATTR_2(in5_input, S_IRUGO, show_in, NULL, 5, 0);
924static SENSOR_DEVICE_ATTR_2(in5_min, S_IRUGO | S_IWUSR, show_in, set_in,
925 5, 1);
926static SENSOR_DEVICE_ATTR_2(in5_max, S_IRUGO | S_IWUSR, show_in, set_in,
927 5, 2);
928
929static SENSOR_DEVICE_ATTR_2(in6_input, S_IRUGO, show_in, NULL, 6, 0);
930static SENSOR_DEVICE_ATTR_2(in6_min, S_IRUGO | S_IWUSR, show_in, set_in,
931 6, 1);
932static SENSOR_DEVICE_ATTR_2(in6_max, S_IRUGO | S_IWUSR, show_in, set_in,
933 6, 2);
934
935static SENSOR_DEVICE_ATTR_2(in7_input, S_IRUGO, show_in, NULL, 7, 0);
936static SENSOR_DEVICE_ATTR_2(in7_min, S_IRUGO | S_IWUSR, show_in, set_in,
937 7, 1);
938static SENSOR_DEVICE_ATTR_2(in7_max, S_IRUGO | S_IWUSR, show_in, set_in,
939 7, 2);
940
941static SENSOR_DEVICE_ATTR_2(in8_input, S_IRUGO, show_in, NULL, 8, 0);
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100942static SENSOR_DEVICE_ATTR_2(in9_input, S_IRUGO, show_in, NULL, 9, 0);
Guenter Roeckf838aa22015-04-01 20:09:36 -0700943static SENSOR_DEVICE_ATTR_2(in10_input, S_IRUGO, show_in, NULL, 10, 0);
944static SENSOR_DEVICE_ATTR_2(in11_input, S_IRUGO, show_in, NULL, 11, 0);
945static SENSOR_DEVICE_ATTR_2(in12_input, S_IRUGO, show_in, NULL, 12, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Guenter Roeckcc18da72015-04-01 10:03:01 -0700947/* Up to 6 temperatures */
Jean Delvare20ad93d2005-06-05 11:53:25 +0200948static ssize_t show_temp(struct device *dev, struct device_attribute *attr,
Guenter Roeck60ca3852012-12-19 22:17:00 +0100949 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
Guenter Roeck60ca3852012-12-19 22:17:00 +0100951 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
952 int nr = sattr->nr;
953 int index = sattr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +0200955
Guenter Roeck60ca3852012-12-19 22:17:00 +0100956 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[nr][index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200958
Guenter Roeck60ca3852012-12-19 22:17:00 +0100959static ssize_t set_temp(struct device *dev, struct device_attribute *attr,
960 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961{
Guenter Roeck60ca3852012-12-19 22:17:00 +0100962 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
963 int nr = sattr->nr;
964 int index = sattr->index;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200965 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100966 long val;
Guenter Roeck161d8982012-12-19 22:17:01 +0100967 u8 reg, regval;
Jean Delvaref5f64502010-03-05 22:17:19 +0100968
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100969 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100970 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100972 mutex_lock(&data->update_lock);
Guenter Roeck161d8982012-12-19 22:17:01 +0100973
974 switch (index) {
975 default:
976 case 1:
977 reg = IT87_REG_TEMP_LOW(nr);
978 break;
979 case 2:
980 reg = IT87_REG_TEMP_HIGH(nr);
981 break;
982 case 3:
983 regval = it87_read_value(data, IT87_REG_BEEP_ENABLE);
984 if (!(regval & 0x80)) {
985 regval |= 0x80;
986 it87_write_value(data, IT87_REG_BEEP_ENABLE, regval);
987 }
988 data->valid = 0;
989 reg = IT87_REG_TEMP_OFFSET[nr];
990 break;
991 }
992
Guenter Roeck60ca3852012-12-19 22:17:00 +0100993 data->temp[nr][index] = TEMP_TO_REG(val);
Guenter Roeck161d8982012-12-19 22:17:01 +0100994 it87_write_value(data, reg, data->temp[nr][index]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100995 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 return count;
997}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200998
Guenter Roeck60ca3852012-12-19 22:17:00 +0100999static SENSOR_DEVICE_ATTR_2(temp1_input, S_IRUGO, show_temp, NULL, 0, 0);
1000static SENSOR_DEVICE_ATTR_2(temp1_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
1001 0, 1);
1002static SENSOR_DEVICE_ATTR_2(temp1_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
1003 0, 2);
Guenter Roeck161d8982012-12-19 22:17:01 +01001004static SENSOR_DEVICE_ATTR_2(temp1_offset, S_IRUGO | S_IWUSR, show_temp,
1005 set_temp, 0, 3);
Guenter Roeck60ca3852012-12-19 22:17:00 +01001006static SENSOR_DEVICE_ATTR_2(temp2_input, S_IRUGO, show_temp, NULL, 1, 0);
1007static SENSOR_DEVICE_ATTR_2(temp2_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
1008 1, 1);
1009static SENSOR_DEVICE_ATTR_2(temp2_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
1010 1, 2);
Guenter Roeck161d8982012-12-19 22:17:01 +01001011static SENSOR_DEVICE_ATTR_2(temp2_offset, S_IRUGO | S_IWUSR, show_temp,
1012 set_temp, 1, 3);
Guenter Roeck60ca3852012-12-19 22:17:00 +01001013static SENSOR_DEVICE_ATTR_2(temp3_input, S_IRUGO, show_temp, NULL, 2, 0);
1014static SENSOR_DEVICE_ATTR_2(temp3_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
1015 2, 1);
1016static SENSOR_DEVICE_ATTR_2(temp3_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
1017 2, 2);
Guenter Roeck161d8982012-12-19 22:17:01 +01001018static SENSOR_DEVICE_ATTR_2(temp3_offset, S_IRUGO | S_IWUSR, show_temp,
1019 set_temp, 2, 3);
Guenter Roeckcc18da72015-04-01 10:03:01 -07001020static SENSOR_DEVICE_ATTR_2(temp4_input, S_IRUGO, show_temp, NULL, 3, 0);
1021static SENSOR_DEVICE_ATTR_2(temp5_input, S_IRUGO, show_temp, NULL, 4, 0);
1022static SENSOR_DEVICE_ATTR_2(temp6_input, S_IRUGO, show_temp, NULL, 5, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Guenter Roeck2cece012012-12-19 22:17:01 +01001024static ssize_t show_temp_type(struct device *dev, struct device_attribute *attr,
1025 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001027 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1028 int nr = sensor_attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 struct it87_data *data = it87_update_device(dev);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001030 u8 reg = data->sensor; /* In case value is updated while used */
Guenter Roeck19529782012-12-19 22:17:02 +01001031 u8 extra = data->extra;
Jean Delvare5f2dc792010-03-05 22:17:18 +01001032
Guenter Roeckc9620242015-04-04 09:05:57 -07001033 if ((has_temp_peci(data, nr) && (reg >> 6 == nr + 1)) ||
1034 (has_temp_old_peci(data, nr) && (extra & 0x80)))
Guenter Roeck5d8d2f22012-12-19 22:17:02 +01001035 return sprintf(buf, "6\n"); /* Intel PECI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 if (reg & (1 << nr))
1037 return sprintf(buf, "3\n"); /* thermal diode */
1038 if (reg & (8 << nr))
Jean Delvare4ed10772008-10-17 17:51:16 +02001039 return sprintf(buf, "4\n"); /* thermistor */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 return sprintf(buf, "0\n"); /* disabled */
1041}
Guenter Roeck2cece012012-12-19 22:17:01 +01001042
1043static ssize_t set_temp_type(struct device *dev, struct device_attribute *attr,
1044 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001046 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1047 int nr = sensor_attr->index;
1048
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001049 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001050 long val;
Guenter Roeck19529782012-12-19 22:17:02 +01001051 u8 reg, extra;
Jean Delvaref5f64502010-03-05 22:17:19 +01001052
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001053 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001054 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
Jean Delvare8acf07c2010-04-14 16:14:09 +02001056 reg = it87_read_value(data, IT87_REG_TEMP_ENABLE);
1057 reg &= ~(1 << nr);
1058 reg &= ~(8 << nr);
Guenter Roeck5d8d2f22012-12-19 22:17:02 +01001059 if (has_temp_peci(data, nr) && (reg >> 6 == nr + 1 || val == 6))
1060 reg &= 0x3f;
Guenter Roeck19529782012-12-19 22:17:02 +01001061 extra = it87_read_value(data, IT87_REG_TEMP_EXTRA);
1062 if (has_temp_old_peci(data, nr) && ((extra & 0x80) || val == 6))
1063 extra &= 0x7f;
Jean Delvare4ed10772008-10-17 17:51:16 +02001064 if (val == 2) { /* backwards compatibility */
Guenter Roeck1d9bcf62012-12-19 22:17:01 +01001065 dev_warn(dev,
1066 "Sensor type 2 is deprecated, please use 4 instead\n");
Jean Delvare4ed10772008-10-17 17:51:16 +02001067 val = 4;
1068 }
Guenter Roeck5d8d2f22012-12-19 22:17:02 +01001069 /* 3 = thermal diode; 4 = thermistor; 6 = Intel PECI; 0 = disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 if (val == 3)
Jean Delvare8acf07c2010-04-14 16:14:09 +02001071 reg |= 1 << nr;
Jean Delvare4ed10772008-10-17 17:51:16 +02001072 else if (val == 4)
Jean Delvare8acf07c2010-04-14 16:14:09 +02001073 reg |= 8 << nr;
Guenter Roeck5d8d2f22012-12-19 22:17:02 +01001074 else if (has_temp_peci(data, nr) && val == 6)
1075 reg |= (nr + 1) << 6;
Guenter Roeck19529782012-12-19 22:17:02 +01001076 else if (has_temp_old_peci(data, nr) && val == 6)
1077 extra |= 0x80;
Jean Delvare8acf07c2010-04-14 16:14:09 +02001078 else if (val != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 return -EINVAL;
Jean Delvare8acf07c2010-04-14 16:14:09 +02001080
1081 mutex_lock(&data->update_lock);
1082 data->sensor = reg;
Guenter Roeck19529782012-12-19 22:17:02 +01001083 data->extra = extra;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001084 it87_write_value(data, IT87_REG_TEMP_ENABLE, data->sensor);
Guenter Roeck19529782012-12-19 22:17:02 +01001085 if (has_temp_old_peci(data, nr))
1086 it87_write_value(data, IT87_REG_TEMP_EXTRA, data->extra);
Jean Delvare2b3d1d82010-04-14 16:14:10 +02001087 data->valid = 0; /* Force cache refresh */
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001088 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 return count;
1090}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Guenter Roeck2cece012012-12-19 22:17:01 +01001092static SENSOR_DEVICE_ATTR(temp1_type, S_IRUGO | S_IWUSR, show_temp_type,
1093 set_temp_type, 0);
1094static SENSOR_DEVICE_ATTR(temp2_type, S_IRUGO | S_IWUSR, show_temp_type,
1095 set_temp_type, 1);
1096static SENSOR_DEVICE_ATTR(temp3_type, S_IRUGO | S_IWUSR, show_temp_type,
1097 set_temp_type, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001099/* 6 Fans */
Jean Delvareb99883d2010-03-05 22:17:15 +01001100
1101static int pwm_mode(const struct it87_data *data, int nr)
1102{
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001103 if (data->type != it8603 && nr < 3 && !(data->fan_main_ctrl & BIT(nr)))
1104 return 0; /* Full speed */
1105 if (data->pwm_ctrl[nr] & 0x80)
1106 return 2; /* Automatic mode */
1107 if ((data->type == it8603 || nr >= 3) &&
1108 data->pwm_duty[nr] == pwm_to_reg(data, 0xff))
1109 return 0; /* Full speed */
Jean Delvareb99883d2010-03-05 22:17:15 +01001110
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001111 return 1; /* Manual mode */
Jean Delvareb99883d2010-03-05 22:17:15 +01001112}
1113
Jean Delvare20ad93d2005-06-05 11:53:25 +02001114static ssize_t show_fan(struct device *dev, struct device_attribute *attr,
Guenter Roecke1169ba2012-12-19 22:17:01 +01001115 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116{
Guenter Roecke1169ba2012-12-19 22:17:01 +01001117 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
1118 int nr = sattr->nr;
1119 int index = sattr->index;
1120 int speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +02001122
Guenter Roecke1169ba2012-12-19 22:17:01 +01001123 speed = has_16bit_fans(data) ?
1124 FAN16_FROM_REG(data->fan[nr][index]) :
1125 FAN_FROM_REG(data->fan[nr][index],
1126 DIV_FROM_REG(data->fan_div[nr]));
1127 return sprintf(buf, "%d\n", speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128}
Guenter Roecke1169ba2012-12-19 22:17:01 +01001129
Jean Delvare20ad93d2005-06-05 11:53:25 +02001130static ssize_t show_fan_div(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001131 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001133 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
Guenter Roeckc9620242015-04-04 09:05:57 -07001134 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +02001135 int nr = sensor_attr->index;
1136
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001137 return sprintf(buf, "%lu\n", DIV_FROM_REG(data->fan_div[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138}
Guenter Roeckc9620242015-04-04 09:05:57 -07001139
Jean Delvare5f2dc792010-03-05 22:17:18 +01001140static ssize_t show_pwm_enable(struct device *dev,
Guenter Roeckc9620242015-04-04 09:05:57 -07001141 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001143 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
Guenter Roeckc9620242015-04-04 09:05:57 -07001144 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +02001145 int nr = sensor_attr->index;
1146
Jean Delvareb99883d2010-03-05 22:17:15 +01001147 return sprintf(buf, "%d\n", pwm_mode(data, nr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148}
Guenter Roeckc9620242015-04-04 09:05:57 -07001149
Jean Delvare20ad93d2005-06-05 11:53:25 +02001150static ssize_t show_pwm(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001151 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001153 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
Guenter Roeckc9620242015-04-04 09:05:57 -07001154 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +02001155 int nr = sensor_attr->index;
1156
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001157 return sprintf(buf, "%d\n",
1158 pwm_from_reg(data, data->pwm_duty[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159}
Guenter Roeckc9620242015-04-04 09:05:57 -07001160
Jean Delvaref8d0c192007-02-14 21:15:02 +01001161static ssize_t show_pwm_freq(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001162 char *buf)
Jean Delvaref8d0c192007-02-14 21:15:02 +01001163{
Guenter Roeck60878bc2015-03-26 19:57:42 -07001164 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
Jean Delvaref8d0c192007-02-14 21:15:02 +01001165 struct it87_data *data = it87_update_device(dev);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001166 int nr = sensor_attr->index;
Guenter Roeckf56c9c02015-03-26 20:01:24 -07001167 unsigned int freq;
Guenter Roeck60878bc2015-03-26 19:57:42 -07001168 int index;
1169
1170 if (has_pwm_freq2(data) && nr == 1)
1171 index = (data->extra >> 4) & 0x07;
1172 else
1173 index = (data->fan_ctl >> 4) & 0x07;
Jean Delvaref8d0c192007-02-14 21:15:02 +01001174
Guenter Roeckf56c9c02015-03-26 20:01:24 -07001175 freq = pwm_freq[index] / (has_newer_autopwm(data) ? 256 : 128);
1176
1177 return sprintf(buf, "%u\n", freq);
Jean Delvaref8d0c192007-02-14 21:15:02 +01001178}
Guenter Roecke1169ba2012-12-19 22:17:01 +01001179
1180static ssize_t set_fan(struct device *dev, struct device_attribute *attr,
1181 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182{
Guenter Roecke1169ba2012-12-19 22:17:01 +01001183 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
1184 int nr = sattr->nr;
1185 int index = sattr->index;
Jean Delvare20ad93d2005-06-05 11:53:25 +02001186
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001187 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001188 long val;
Jean Delvare7f999aa2007-02-14 21:15:03 +01001189 u8 reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001191 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001192 return -EINVAL;
1193
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001194 mutex_lock(&data->update_lock);
Guenter Roecke1169ba2012-12-19 22:17:01 +01001195
1196 if (has_16bit_fans(data)) {
1197 data->fan[nr][index] = FAN16_TO_REG(val);
1198 it87_write_value(data, IT87_REG_FAN_MIN[nr],
1199 data->fan[nr][index] & 0xff);
1200 it87_write_value(data, IT87_REG_FANX_MIN[nr],
1201 data->fan[nr][index] >> 8);
1202 } else {
1203 reg = it87_read_value(data, IT87_REG_FAN_DIV);
1204 switch (nr) {
1205 case 0:
1206 data->fan_div[nr] = reg & 0x07;
1207 break;
1208 case 1:
1209 data->fan_div[nr] = (reg >> 3) & 0x07;
1210 break;
1211 case 2:
1212 data->fan_div[nr] = (reg & 0x40) ? 3 : 1;
1213 break;
1214 }
1215 data->fan[nr][index] =
1216 FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
1217 it87_write_value(data, IT87_REG_FAN_MIN[nr],
1218 data->fan[nr][index]);
Jean Delvare07eab462005-11-23 15:44:31 -08001219 }
1220
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001221 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 return count;
1223}
Guenter Roecke1169ba2012-12-19 22:17:01 +01001224
Jean Delvare20ad93d2005-06-05 11:53:25 +02001225static ssize_t set_fan_div(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001226 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001228 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001229 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001230 int nr = sensor_attr->index;
Jean Delvaref5f64502010-03-05 22:17:19 +01001231 unsigned long val;
Jean Delvare8ab4ec32006-08-28 14:35:46 +02001232 int min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 u8 old;
1234
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001235 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001236 return -EINVAL;
1237
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001238 mutex_lock(&data->update_lock);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001239 old = it87_read_value(data, IT87_REG_FAN_DIV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Jean Delvare8ab4ec32006-08-28 14:35:46 +02001241 /* Save fan min limit */
Guenter Roecke1169ba2012-12-19 22:17:01 +01001242 min = FAN_FROM_REG(data->fan[nr][1], DIV_FROM_REG(data->fan_div[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
1244 switch (nr) {
1245 case 0:
1246 case 1:
1247 data->fan_div[nr] = DIV_TO_REG(val);
1248 break;
1249 case 2:
1250 if (val < 8)
1251 data->fan_div[nr] = 1;
1252 else
1253 data->fan_div[nr] = 3;
1254 }
1255 val = old & 0x80;
1256 val |= (data->fan_div[0] & 0x07);
1257 val |= (data->fan_div[1] & 0x07) << 3;
1258 if (data->fan_div[2] == 3)
1259 val |= 0x1 << 6;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001260 it87_write_value(data, IT87_REG_FAN_DIV, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Jean Delvare8ab4ec32006-08-28 14:35:46 +02001262 /* Restore fan min limit */
Guenter Roecke1169ba2012-12-19 22:17:01 +01001263 data->fan[nr][1] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
1264 it87_write_value(data, IT87_REG_FAN_MIN[nr], data->fan[nr][1]);
Jean Delvare8ab4ec32006-08-28 14:35:46 +02001265
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001266 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 return count;
1268}
Jean Delvarecccfc9c2010-03-05 22:17:21 +01001269
1270/* Returns 0 if OK, -EINVAL otherwise */
1271static int check_trip_points(struct device *dev, int nr)
1272{
1273 const struct it87_data *data = dev_get_drvdata(dev);
1274 int i, err = 0;
1275
1276 if (has_old_autopwm(data)) {
1277 for (i = 0; i < 3; i++) {
1278 if (data->auto_temp[nr][i] > data->auto_temp[nr][i + 1])
1279 err = -EINVAL;
1280 }
1281 for (i = 0; i < 2; i++) {
1282 if (data->auto_pwm[nr][i] > data->auto_pwm[nr][i + 1])
1283 err = -EINVAL;
1284 }
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001285 } else if (has_newer_autopwm(data)) {
1286 for (i = 1; i < 3; i++) {
1287 if (data->auto_temp[nr][i] > data->auto_temp[nr][i + 1])
1288 err = -EINVAL;
1289 }
Jean Delvarecccfc9c2010-03-05 22:17:21 +01001290 }
1291
1292 if (err) {
Guenter Roeck1d9bcf62012-12-19 22:17:01 +01001293 dev_err(dev,
1294 "Inconsistent trip points, not switching to automatic mode\n");
Jean Delvarecccfc9c2010-03-05 22:17:21 +01001295 dev_err(dev, "Adjust the trip points and try again\n");
1296 }
1297 return err;
1298}
1299
Guenter Roeckc9620242015-04-04 09:05:57 -07001300static ssize_t set_pwm_enable(struct device *dev, struct device_attribute *attr,
1301 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001303 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001304 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001305 int nr = sensor_attr->index;
Jean Delvaref5f64502010-03-05 22:17:19 +01001306 long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001308 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 2)
Jean Delvareb99883d2010-03-05 22:17:15 +01001309 return -EINVAL;
1310
Jean Delvarecccfc9c2010-03-05 22:17:21 +01001311 /* Check trip points before switching to automatic mode */
1312 if (val == 2) {
1313 if (check_trip_points(dev, nr) < 0)
1314 return -EINVAL;
1315 }
1316
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001317 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
1319 if (val == 0) {
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001320 if (nr < 3 && data->type != it8603) {
1321 int tmp;
1322 /* make sure the fan is on when in on/off mode */
1323 tmp = it87_read_value(data, IT87_REG_FAN_CTL);
1324 it87_write_value(data, IT87_REG_FAN_CTL, tmp | BIT(nr));
1325 /* set on/off mode */
1326 data->fan_main_ctrl &= ~BIT(nr);
1327 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
1328 data->fan_main_ctrl);
1329 } else {
Guenter Roeck4c7b8ca2017-02-08 14:07:42 -08001330 u8 ctrl;
1331
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001332 /* No on/off mode, set maximum pwm value */
1333 data->pwm_duty[nr] = pwm_to_reg(data, 0xff);
1334 it87_write_value(data, IT87_REG_PWM_DUTY[nr],
1335 data->pwm_duty[nr]);
1336 /* and set manual mode */
Guenter Roeck4c7b8ca2017-02-08 14:07:42 -08001337 if (has_newer_autopwm(data)) {
1338 ctrl = (data->pwm_ctrl[nr] & 0x7c) |
1339 data->pwm_temp_map[nr];
1340 } else {
1341 ctrl = data->pwm_duty[nr];
1342 }
1343 data->pwm_ctrl[nr] = ctrl;
1344 it87_write_value(data, IT87_REG_PWM[nr], ctrl);
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001345 }
Jean Delvareb99883d2010-03-05 22:17:15 +01001346 } else {
Guenter Roeck4c7b8ca2017-02-08 14:07:42 -08001347 u8 ctrl;
1348
1349 if (has_newer_autopwm(data)) {
1350 ctrl = (data->pwm_ctrl[nr] & 0x7c) |
1351 data->pwm_temp_map[nr];
1352 if (val != 1)
1353 ctrl |= 0x80;
1354 } else {
1355 ctrl = (val == 1 ? data->pwm_duty[nr] : 0x80);
1356 }
1357 data->pwm_ctrl[nr] = ctrl;
1358 it87_write_value(data, IT87_REG_PWM[nr], ctrl);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001359
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001360 if (data->type != it8603 && nr < 3) {
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001361 /* set SmartGuardian mode */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001362 data->fan_main_ctrl |= BIT(nr);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001363 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
1364 data->fan_main_ctrl);
1365 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 }
1367
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001368 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 return count;
1370}
Guenter Roeckc9620242015-04-04 09:05:57 -07001371
Jean Delvare20ad93d2005-06-05 11:53:25 +02001372static ssize_t set_pwm(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001373 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001375 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001376 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001377 int nr = sensor_attr->index;
Jean Delvaref5f64502010-03-05 22:17:19 +01001378 long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001380 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 return -EINVAL;
1382
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001383 mutex_lock(&data->update_lock);
Guenter Roeck82dbe982017-02-08 14:02:59 -08001384 it87_update_pwm_ctrl(data, nr);
Jean Delvare16b5dda2012-01-16 22:51:48 +01001385 if (has_newer_autopwm(data)) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001386 /*
1387 * If we are in automatic mode, the PWM duty cycle register
1388 * is read-only so we can't write the value.
1389 */
Jean Delvare6229cdb2010-12-08 16:27:22 +01001390 if (data->pwm_ctrl[nr] & 0x80) {
1391 mutex_unlock(&data->update_lock);
1392 return -EBUSY;
1393 }
1394 data->pwm_duty[nr] = pwm_to_reg(data, val);
Guenter Roeck36c4d982015-03-26 18:18:19 -07001395 it87_write_value(data, IT87_REG_PWM_DUTY[nr],
Jean Delvare6229cdb2010-12-08 16:27:22 +01001396 data->pwm_duty[nr]);
1397 } else {
1398 data->pwm_duty[nr] = pwm_to_reg(data, val);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001399 /*
1400 * If we are in manual mode, write the duty cycle immediately;
1401 * otherwise, just store it for later use.
1402 */
Jean Delvare6229cdb2010-12-08 16:27:22 +01001403 if (!(data->pwm_ctrl[nr] & 0x80)) {
1404 data->pwm_ctrl[nr] = data->pwm_duty[nr];
Guenter Roeck36c4d982015-03-26 18:18:19 -07001405 it87_write_value(data, IT87_REG_PWM[nr],
Jean Delvare6229cdb2010-12-08 16:27:22 +01001406 data->pwm_ctrl[nr]);
1407 }
Jean Delvareb99883d2010-03-05 22:17:15 +01001408 }
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001409 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 return count;
1411}
Guenter Roeckc9620242015-04-04 09:05:57 -07001412
1413static ssize_t set_pwm_freq(struct device *dev, struct device_attribute *attr,
1414 const char *buf, size_t count)
Jean Delvaref8d0c192007-02-14 21:15:02 +01001415{
Guenter Roeck60878bc2015-03-26 19:57:42 -07001416 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001417 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001418 int nr = sensor_attr->index;
Jean Delvaref5f64502010-03-05 22:17:19 +01001419 unsigned long val;
Jean Delvaref8d0c192007-02-14 21:15:02 +01001420 int i;
1421
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001422 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001423 return -EINVAL;
1424
Guenter Roeckf56c9c02015-03-26 20:01:24 -07001425 val = clamp_val(val, 0, 1000000);
1426 val *= has_newer_autopwm(data) ? 256 : 128;
1427
Jean Delvaref8d0c192007-02-14 21:15:02 +01001428 /* Search for the nearest available frequency */
1429 for (i = 0; i < 7; i++) {
Guenter Roeckc9620242015-04-04 09:05:57 -07001430 if (val > (pwm_freq[i] + pwm_freq[i + 1]) / 2)
Jean Delvaref8d0c192007-02-14 21:15:02 +01001431 break;
1432 }
1433
1434 mutex_lock(&data->update_lock);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001435 if (nr == 0) {
1436 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL) & 0x8f;
1437 data->fan_ctl |= i << 4;
1438 it87_write_value(data, IT87_REG_FAN_CTL, data->fan_ctl);
1439 } else {
1440 data->extra = it87_read_value(data, IT87_REG_TEMP_EXTRA) & 0x8f;
1441 data->extra |= i << 4;
1442 it87_write_value(data, IT87_REG_TEMP_EXTRA, data->extra);
1443 }
Jean Delvaref8d0c192007-02-14 21:15:02 +01001444 mutex_unlock(&data->update_lock);
1445
1446 return count;
1447}
Guenter Roeckc9620242015-04-04 09:05:57 -07001448
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001449static ssize_t show_pwm_temp_map(struct device *dev,
Guenter Roeckc9620242015-04-04 09:05:57 -07001450 struct device_attribute *attr, char *buf)
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001451{
1452 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001453 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001454 int nr = sensor_attr->index;
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001455 int map;
1456
Guenter Roeck0624d862015-04-06 21:04:18 -07001457 map = data->pwm_temp_map[nr];
1458 if (map >= 3)
1459 map = 0; /* Should never happen */
1460 if (nr >= 3) /* pwm channels 3..6 map to temp4..6 */
1461 map += 3;
1462
1463 return sprintf(buf, "%d\n", (int)BIT(map));
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001464}
Guenter Roeckc9620242015-04-04 09:05:57 -07001465
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001466static ssize_t set_pwm_temp_map(struct device *dev,
Guenter Roeckc9620242015-04-04 09:05:57 -07001467 struct device_attribute *attr, const char *buf,
1468 size_t count)
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001469{
1470 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001471 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001472 int nr = sensor_attr->index;
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001473 long val;
1474 u8 reg;
1475
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001476 if (kstrtol(buf, 10, &val) < 0)
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001477 return -EINVAL;
1478
Guenter Roeck0624d862015-04-06 21:04:18 -07001479 if (nr >= 3)
1480 val -= 3;
1481
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001482 switch (val) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001483 case BIT(0):
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001484 reg = 0x00;
1485 break;
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001486 case BIT(1):
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001487 reg = 0x01;
1488 break;
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001489 case BIT(2):
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001490 reg = 0x02;
1491 break;
1492 default:
1493 return -EINVAL;
1494 }
1495
1496 mutex_lock(&data->update_lock);
Guenter Roeck82dbe982017-02-08 14:02:59 -08001497 it87_update_pwm_ctrl(data, nr);
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001498 data->pwm_temp_map[nr] = reg;
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001499 /*
1500 * If we are in automatic mode, write the temp mapping immediately;
1501 * otherwise, just store it for later use.
1502 */
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001503 if (data->pwm_ctrl[nr] & 0x80) {
Guenter Roeck4c7b8ca2017-02-08 14:07:42 -08001504 data->pwm_ctrl[nr] = (data->pwm_ctrl[nr] & 0xfc) |
1505 data->pwm_temp_map[nr];
Guenter Roeck36c4d982015-03-26 18:18:19 -07001506 it87_write_value(data, IT87_REG_PWM[nr], data->pwm_ctrl[nr]);
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001507 }
1508 mutex_unlock(&data->update_lock);
1509 return count;
1510}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Guenter Roeckc9620242015-04-04 09:05:57 -07001512static ssize_t show_auto_pwm(struct device *dev, struct device_attribute *attr,
1513 char *buf)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001514{
1515 struct it87_data *data = it87_update_device(dev);
1516 struct sensor_device_attribute_2 *sensor_attr =
1517 to_sensor_dev_attr_2(attr);
1518 int nr = sensor_attr->nr;
1519 int point = sensor_attr->index;
1520
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001521 return sprintf(buf, "%d\n",
1522 pwm_from_reg(data, data->auto_pwm[nr][point]));
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001523}
1524
Guenter Roeckc9620242015-04-04 09:05:57 -07001525static ssize_t set_auto_pwm(struct device *dev, struct device_attribute *attr,
1526 const char *buf, size_t count)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001527{
1528 struct it87_data *data = dev_get_drvdata(dev);
1529 struct sensor_device_attribute_2 *sensor_attr =
1530 to_sensor_dev_attr_2(attr);
1531 int nr = sensor_attr->nr;
1532 int point = sensor_attr->index;
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001533 int regaddr;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001534 long val;
1535
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001536 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001537 return -EINVAL;
1538
1539 mutex_lock(&data->update_lock);
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001540 data->auto_pwm[nr][point] = pwm_to_reg(data, val);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001541 if (has_newer_autopwm(data))
1542 regaddr = IT87_REG_AUTO_TEMP(nr, 3);
1543 else
1544 regaddr = IT87_REG_AUTO_PWM(nr, point);
1545 it87_write_value(data, regaddr, data->auto_pwm[nr][point]);
1546 mutex_unlock(&data->update_lock);
1547 return count;
1548}
1549
1550static ssize_t show_auto_pwm_slope(struct device *dev,
1551 struct device_attribute *attr, char *buf)
1552{
1553 struct it87_data *data = it87_update_device(dev);
1554 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1555 int nr = sensor_attr->index;
1556
1557 return sprintf(buf, "%d\n", data->auto_pwm[nr][1] & 0x7f);
1558}
1559
1560static ssize_t set_auto_pwm_slope(struct device *dev,
1561 struct device_attribute *attr,
1562 const char *buf, size_t count)
1563{
1564 struct it87_data *data = dev_get_drvdata(dev);
1565 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1566 int nr = sensor_attr->index;
1567 unsigned long val;
1568
1569 if (kstrtoul(buf, 10, &val) < 0 || val > 127)
1570 return -EINVAL;
1571
1572 mutex_lock(&data->update_lock);
1573 data->auto_pwm[nr][1] = (data->auto_pwm[nr][1] & 0x80) | val;
1574 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, 4),
1575 data->auto_pwm[nr][1]);
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001576 mutex_unlock(&data->update_lock);
1577 return count;
1578}
1579
Guenter Roeckc9620242015-04-04 09:05:57 -07001580static ssize_t show_auto_temp(struct device *dev, struct device_attribute *attr,
1581 char *buf)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001582{
1583 struct it87_data *data = it87_update_device(dev);
1584 struct sensor_device_attribute_2 *sensor_attr =
1585 to_sensor_dev_attr_2(attr);
1586 int nr = sensor_attr->nr;
1587 int point = sensor_attr->index;
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001588 int reg;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001589
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001590 if (has_old_autopwm(data) || point)
1591 reg = data->auto_temp[nr][point];
1592 else
1593 reg = data->auto_temp[nr][1] - (data->auto_temp[nr][0] & 0x1f);
1594
1595 return sprintf(buf, "%d\n", TEMP_FROM_REG(reg));
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001596}
1597
Guenter Roeckc9620242015-04-04 09:05:57 -07001598static ssize_t set_auto_temp(struct device *dev, struct device_attribute *attr,
1599 const char *buf, size_t count)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001600{
1601 struct it87_data *data = dev_get_drvdata(dev);
1602 struct sensor_device_attribute_2 *sensor_attr =
1603 to_sensor_dev_attr_2(attr);
1604 int nr = sensor_attr->nr;
1605 int point = sensor_attr->index;
1606 long val;
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001607 int reg;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001608
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001609 if (kstrtol(buf, 10, &val) < 0 || val < -128000 || val > 127000)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001610 return -EINVAL;
1611
1612 mutex_lock(&data->update_lock);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001613 if (has_newer_autopwm(data) && !point) {
1614 reg = data->auto_temp[nr][1] - TEMP_TO_REG(val);
1615 reg = clamp_val(reg, 0, 0x1f) | (data->auto_temp[nr][0] & 0xe0);
1616 data->auto_temp[nr][0] = reg;
1617 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, 5), reg);
1618 } else {
1619 reg = TEMP_TO_REG(val);
1620 data->auto_temp[nr][point] = reg;
1621 if (has_newer_autopwm(data))
1622 point--;
1623 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, point), reg);
1624 }
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001625 mutex_unlock(&data->update_lock);
1626 return count;
1627}
1628
Guenter Roecke1169ba2012-12-19 22:17:01 +01001629static SENSOR_DEVICE_ATTR_2(fan1_input, S_IRUGO, show_fan, NULL, 0, 0);
1630static SENSOR_DEVICE_ATTR_2(fan1_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1631 0, 1);
1632static SENSOR_DEVICE_ATTR(fan1_div, S_IRUGO | S_IWUSR, show_fan_div,
1633 set_fan_div, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Guenter Roecke1169ba2012-12-19 22:17:01 +01001635static SENSOR_DEVICE_ATTR_2(fan2_input, S_IRUGO, show_fan, NULL, 1, 0);
1636static SENSOR_DEVICE_ATTR_2(fan2_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1637 1, 1);
1638static SENSOR_DEVICE_ATTR(fan2_div, S_IRUGO | S_IWUSR, show_fan_div,
1639 set_fan_div, 1);
1640
1641static SENSOR_DEVICE_ATTR_2(fan3_input, S_IRUGO, show_fan, NULL, 2, 0);
1642static SENSOR_DEVICE_ATTR_2(fan3_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1643 2, 1);
1644static SENSOR_DEVICE_ATTR(fan3_div, S_IRUGO | S_IWUSR, show_fan_div,
1645 set_fan_div, 2);
1646
1647static SENSOR_DEVICE_ATTR_2(fan4_input, S_IRUGO, show_fan, NULL, 3, 0);
1648static SENSOR_DEVICE_ATTR_2(fan4_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1649 3, 1);
1650
1651static SENSOR_DEVICE_ATTR_2(fan5_input, S_IRUGO, show_fan, NULL, 4, 0);
1652static SENSOR_DEVICE_ATTR_2(fan5_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1653 4, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07001655static SENSOR_DEVICE_ATTR_2(fan6_input, S_IRUGO, show_fan, NULL, 5, 0);
1656static SENSOR_DEVICE_ATTR_2(fan6_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1657 5, 1);
1658
Guenter Roeckc4458db2012-12-19 22:17:02 +01001659static SENSOR_DEVICE_ATTR(pwm1_enable, S_IRUGO | S_IWUSR,
1660 show_pwm_enable, set_pwm_enable, 0);
1661static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 0);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001662static SENSOR_DEVICE_ATTR(pwm1_freq, S_IRUGO | S_IWUSR, show_pwm_freq,
1663 set_pwm_freq, 0);
Guenter Roeck5c391262013-03-30 15:02:12 -07001664static SENSOR_DEVICE_ATTR(pwm1_auto_channels_temp, S_IRUGO,
Guenter Roeckc4458db2012-12-19 22:17:02 +01001665 show_pwm_temp_map, set_pwm_temp_map, 0);
1666static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_pwm, S_IRUGO | S_IWUSR,
1667 show_auto_pwm, set_auto_pwm, 0, 0);
1668static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_pwm, S_IRUGO | S_IWUSR,
1669 show_auto_pwm, set_auto_pwm, 0, 1);
1670static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_pwm, S_IRUGO | S_IWUSR,
1671 show_auto_pwm, set_auto_pwm, 0, 2);
1672static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_pwm, S_IRUGO,
1673 show_auto_pwm, NULL, 0, 3);
1674static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp, S_IRUGO | S_IWUSR,
1675 show_auto_temp, set_auto_temp, 0, 1);
1676static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1677 show_auto_temp, set_auto_temp, 0, 0);
1678static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_temp, S_IRUGO | S_IWUSR,
1679 show_auto_temp, set_auto_temp, 0, 2);
1680static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_temp, S_IRUGO | S_IWUSR,
1681 show_auto_temp, set_auto_temp, 0, 3);
1682static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_temp, S_IRUGO | S_IWUSR,
1683 show_auto_temp, set_auto_temp, 0, 4);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001684static SENSOR_DEVICE_ATTR_2(pwm1_auto_start, S_IRUGO | S_IWUSR,
1685 show_auto_pwm, set_auto_pwm, 0, 0);
1686static SENSOR_DEVICE_ATTR(pwm1_auto_slope, S_IRUGO | S_IWUSR,
1687 show_auto_pwm_slope, set_auto_pwm_slope, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
Guenter Roeckc4458db2012-12-19 22:17:02 +01001689static SENSOR_DEVICE_ATTR(pwm2_enable, S_IRUGO | S_IWUSR,
1690 show_pwm_enable, set_pwm_enable, 1);
1691static SENSOR_DEVICE_ATTR(pwm2, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 1);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001692static SENSOR_DEVICE_ATTR(pwm2_freq, S_IRUGO, show_pwm_freq, set_pwm_freq, 1);
Guenter Roeck5c391262013-03-30 15:02:12 -07001693static SENSOR_DEVICE_ATTR(pwm2_auto_channels_temp, S_IRUGO,
Guenter Roeckc4458db2012-12-19 22:17:02 +01001694 show_pwm_temp_map, set_pwm_temp_map, 1);
1695static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_pwm, S_IRUGO | S_IWUSR,
1696 show_auto_pwm, set_auto_pwm, 1, 0);
1697static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_pwm, S_IRUGO | S_IWUSR,
1698 show_auto_pwm, set_auto_pwm, 1, 1);
1699static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_pwm, S_IRUGO | S_IWUSR,
1700 show_auto_pwm, set_auto_pwm, 1, 2);
1701static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_pwm, S_IRUGO,
1702 show_auto_pwm, NULL, 1, 3);
1703static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp, S_IRUGO | S_IWUSR,
1704 show_auto_temp, set_auto_temp, 1, 1);
1705static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1706 show_auto_temp, set_auto_temp, 1, 0);
1707static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_temp, S_IRUGO | S_IWUSR,
1708 show_auto_temp, set_auto_temp, 1, 2);
1709static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_temp, S_IRUGO | S_IWUSR,
1710 show_auto_temp, set_auto_temp, 1, 3);
1711static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_temp, S_IRUGO | S_IWUSR,
1712 show_auto_temp, set_auto_temp, 1, 4);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001713static SENSOR_DEVICE_ATTR_2(pwm2_auto_start, S_IRUGO | S_IWUSR,
1714 show_auto_pwm, set_auto_pwm, 1, 0);
1715static SENSOR_DEVICE_ATTR(pwm2_auto_slope, S_IRUGO | S_IWUSR,
1716 show_auto_pwm_slope, set_auto_pwm_slope, 1);
Guenter Roeckc4458db2012-12-19 22:17:02 +01001717
1718static SENSOR_DEVICE_ATTR(pwm3_enable, S_IRUGO | S_IWUSR,
1719 show_pwm_enable, set_pwm_enable, 2);
1720static SENSOR_DEVICE_ATTR(pwm3, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 2);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001721static SENSOR_DEVICE_ATTR(pwm3_freq, S_IRUGO, show_pwm_freq, NULL, 2);
Guenter Roeck5c391262013-03-30 15:02:12 -07001722static SENSOR_DEVICE_ATTR(pwm3_auto_channels_temp, S_IRUGO,
Guenter Roeckc4458db2012-12-19 22:17:02 +01001723 show_pwm_temp_map, set_pwm_temp_map, 2);
1724static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_pwm, S_IRUGO | S_IWUSR,
1725 show_auto_pwm, set_auto_pwm, 2, 0);
1726static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_pwm, S_IRUGO | S_IWUSR,
1727 show_auto_pwm, set_auto_pwm, 2, 1);
1728static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_pwm, S_IRUGO | S_IWUSR,
1729 show_auto_pwm, set_auto_pwm, 2, 2);
1730static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_pwm, S_IRUGO,
1731 show_auto_pwm, NULL, 2, 3);
1732static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp, S_IRUGO | S_IWUSR,
1733 show_auto_temp, set_auto_temp, 2, 1);
1734static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1735 show_auto_temp, set_auto_temp, 2, 0);
1736static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_temp, S_IRUGO | S_IWUSR,
1737 show_auto_temp, set_auto_temp, 2, 2);
1738static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_temp, S_IRUGO | S_IWUSR,
1739 show_auto_temp, set_auto_temp, 2, 3);
1740static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_temp, S_IRUGO | S_IWUSR,
1741 show_auto_temp, set_auto_temp, 2, 4);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001742static SENSOR_DEVICE_ATTR_2(pwm3_auto_start, S_IRUGO | S_IWUSR,
1743 show_auto_pwm, set_auto_pwm, 2, 0);
1744static SENSOR_DEVICE_ATTR(pwm3_auto_slope, S_IRUGO | S_IWUSR,
1745 show_auto_pwm_slope, set_auto_pwm_slope, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
Guenter Roeck36c4d982015-03-26 18:18:19 -07001747static SENSOR_DEVICE_ATTR(pwm4_enable, S_IRUGO | S_IWUSR,
1748 show_pwm_enable, set_pwm_enable, 3);
1749static SENSOR_DEVICE_ATTR(pwm4, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 3);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001750static SENSOR_DEVICE_ATTR(pwm4_freq, S_IRUGO, show_pwm_freq, NULL, 3);
Guenter Roeck5c391262013-03-30 15:02:12 -07001751static SENSOR_DEVICE_ATTR(pwm4_auto_channels_temp, S_IRUGO,
Guenter Roeck36c4d982015-03-26 18:18:19 -07001752 show_pwm_temp_map, set_pwm_temp_map, 3);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001753static SENSOR_DEVICE_ATTR_2(pwm4_auto_point1_temp, S_IRUGO | S_IWUSR,
1754 show_auto_temp, set_auto_temp, 2, 1);
1755static SENSOR_DEVICE_ATTR_2(pwm4_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1756 show_auto_temp, set_auto_temp, 2, 0);
1757static SENSOR_DEVICE_ATTR_2(pwm4_auto_point2_temp, S_IRUGO | S_IWUSR,
1758 show_auto_temp, set_auto_temp, 2, 2);
1759static SENSOR_DEVICE_ATTR_2(pwm4_auto_point3_temp, S_IRUGO | S_IWUSR,
1760 show_auto_temp, set_auto_temp, 2, 3);
1761static SENSOR_DEVICE_ATTR_2(pwm4_auto_start, S_IRUGO | S_IWUSR,
1762 show_auto_pwm, set_auto_pwm, 3, 0);
1763static SENSOR_DEVICE_ATTR(pwm4_auto_slope, S_IRUGO | S_IWUSR,
1764 show_auto_pwm_slope, set_auto_pwm_slope, 3);
Guenter Roeck36c4d982015-03-26 18:18:19 -07001765
1766static SENSOR_DEVICE_ATTR(pwm5_enable, S_IRUGO | S_IWUSR,
1767 show_pwm_enable, set_pwm_enable, 4);
1768static SENSOR_DEVICE_ATTR(pwm5, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 4);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001769static SENSOR_DEVICE_ATTR(pwm5_freq, S_IRUGO, show_pwm_freq, NULL, 4);
Guenter Roeck5c391262013-03-30 15:02:12 -07001770static SENSOR_DEVICE_ATTR(pwm5_auto_channels_temp, S_IRUGO,
Guenter Roeck36c4d982015-03-26 18:18:19 -07001771 show_pwm_temp_map, set_pwm_temp_map, 4);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001772static SENSOR_DEVICE_ATTR_2(pwm5_auto_point1_temp, S_IRUGO | S_IWUSR,
1773 show_auto_temp, set_auto_temp, 2, 1);
1774static SENSOR_DEVICE_ATTR_2(pwm5_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1775 show_auto_temp, set_auto_temp, 2, 0);
1776static SENSOR_DEVICE_ATTR_2(pwm5_auto_point2_temp, S_IRUGO | S_IWUSR,
1777 show_auto_temp, set_auto_temp, 2, 2);
1778static SENSOR_DEVICE_ATTR_2(pwm5_auto_point3_temp, S_IRUGO | S_IWUSR,
1779 show_auto_temp, set_auto_temp, 2, 3);
1780static SENSOR_DEVICE_ATTR_2(pwm5_auto_start, S_IRUGO | S_IWUSR,
1781 show_auto_pwm, set_auto_pwm, 4, 0);
1782static SENSOR_DEVICE_ATTR(pwm5_auto_slope, S_IRUGO | S_IWUSR,
1783 show_auto_pwm_slope, set_auto_pwm_slope, 4);
Guenter Roeck36c4d982015-03-26 18:18:19 -07001784
1785static SENSOR_DEVICE_ATTR(pwm6_enable, S_IRUGO | S_IWUSR,
1786 show_pwm_enable, set_pwm_enable, 5);
1787static SENSOR_DEVICE_ATTR(pwm6, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 5);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001788static SENSOR_DEVICE_ATTR(pwm6_freq, S_IRUGO, show_pwm_freq, NULL, 5);
Guenter Roeck5c391262013-03-30 15:02:12 -07001789static SENSOR_DEVICE_ATTR(pwm6_auto_channels_temp, S_IRUGO,
Guenter Roeck36c4d982015-03-26 18:18:19 -07001790 show_pwm_temp_map, set_pwm_temp_map, 5);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001791static SENSOR_DEVICE_ATTR_2(pwm6_auto_point1_temp, S_IRUGO | S_IWUSR,
1792 show_auto_temp, set_auto_temp, 2, 1);
1793static SENSOR_DEVICE_ATTR_2(pwm6_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1794 show_auto_temp, set_auto_temp, 2, 0);
1795static SENSOR_DEVICE_ATTR_2(pwm6_auto_point2_temp, S_IRUGO | S_IWUSR,
1796 show_auto_temp, set_auto_temp, 2, 2);
1797static SENSOR_DEVICE_ATTR_2(pwm6_auto_point3_temp, S_IRUGO | S_IWUSR,
1798 show_auto_temp, set_auto_temp, 2, 3);
1799static SENSOR_DEVICE_ATTR_2(pwm6_auto_start, S_IRUGO | S_IWUSR,
1800 show_auto_pwm, set_auto_pwm, 5, 0);
1801static SENSOR_DEVICE_ATTR(pwm6_auto_slope, S_IRUGO | S_IWUSR,
1802 show_auto_pwm_slope, set_auto_pwm_slope, 5);
Guenter Roeck36c4d982015-03-26 18:18:19 -07001803
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804/* Alarms */
Julia Lawallddc64ae2016-12-22 13:05:21 +01001805static ssize_t alarms_show(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001806 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807{
1808 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001809
Jean Delvare68188ba2005-05-16 18:52:38 +02001810 return sprintf(buf, "%u\n", data->alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811}
Julia Lawallddc64ae2016-12-22 13:05:21 +01001812static DEVICE_ATTR_RO(alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
Jean Delvare0124dd72007-11-25 16:16:41 +01001814static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001815 char *buf)
Jean Delvare0124dd72007-11-25 16:16:41 +01001816{
Jean Delvare0124dd72007-11-25 16:16:41 +01001817 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001818 int bitnr = to_sensor_dev_attr(attr)->index;
1819
Jean Delvare0124dd72007-11-25 16:16:41 +01001820 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
1821}
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001822
Guenter Roeckc9620242015-04-04 09:05:57 -07001823static ssize_t clear_intrusion(struct device *dev,
1824 struct device_attribute *attr, const char *buf,
1825 size_t count)
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001826{
1827 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001828 int config;
Guenter Roeckc9620242015-04-04 09:05:57 -07001829 long val;
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001830
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001831 if (kstrtol(buf, 10, &val) < 0 || val != 0)
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001832 return -EINVAL;
1833
1834 mutex_lock(&data->update_lock);
1835 config = it87_read_value(data, IT87_REG_CONFIG);
1836 if (config < 0) {
1837 count = config;
1838 } else {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001839 config |= BIT(5);
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001840 it87_write_value(data, IT87_REG_CONFIG, config);
1841 /* Invalidate cache to force re-read */
1842 data->valid = 0;
1843 }
1844 mutex_unlock(&data->update_lock);
1845
1846 return count;
1847}
1848
Jean Delvare0124dd72007-11-25 16:16:41 +01001849static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 8);
1850static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 9);
1851static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 10);
1852static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 11);
1853static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 12);
1854static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 13);
1855static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 14);
1856static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 15);
1857static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 0);
1858static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 1);
1859static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 2);
1860static SENSOR_DEVICE_ATTR(fan4_alarm, S_IRUGO, show_alarm, NULL, 3);
1861static SENSOR_DEVICE_ATTR(fan5_alarm, S_IRUGO, show_alarm, NULL, 6);
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07001862static SENSOR_DEVICE_ATTR(fan6_alarm, S_IRUGO, show_alarm, NULL, 7);
Jean Delvare0124dd72007-11-25 16:16:41 +01001863static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 16);
1864static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 17);
1865static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 18);
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001866static SENSOR_DEVICE_ATTR(intrusion0_alarm, S_IRUGO | S_IWUSR,
1867 show_alarm, clear_intrusion, 4);
Jean Delvare0124dd72007-11-25 16:16:41 +01001868
Jean Delvared9b327c2010-03-05 22:17:17 +01001869static ssize_t show_beep(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001870 char *buf)
Jean Delvared9b327c2010-03-05 22:17:17 +01001871{
Jean Delvared9b327c2010-03-05 22:17:17 +01001872 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001873 int bitnr = to_sensor_dev_attr(attr)->index;
1874
Jean Delvared9b327c2010-03-05 22:17:17 +01001875 return sprintf(buf, "%u\n", (data->beeps >> bitnr) & 1);
1876}
Guenter Roeckc9620242015-04-04 09:05:57 -07001877
Jean Delvared9b327c2010-03-05 22:17:17 +01001878static ssize_t set_beep(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001879 const char *buf, size_t count)
Jean Delvared9b327c2010-03-05 22:17:17 +01001880{
1881 int bitnr = to_sensor_dev_attr(attr)->index;
1882 struct it87_data *data = dev_get_drvdata(dev);
1883 long val;
1884
Guenter Roeckc9620242015-04-04 09:05:57 -07001885 if (kstrtol(buf, 10, &val) < 0 || (val != 0 && val != 1))
Jean Delvared9b327c2010-03-05 22:17:17 +01001886 return -EINVAL;
1887
1888 mutex_lock(&data->update_lock);
1889 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
1890 if (val)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001891 data->beeps |= BIT(bitnr);
Jean Delvared9b327c2010-03-05 22:17:17 +01001892 else
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001893 data->beeps &= ~BIT(bitnr);
Jean Delvared9b327c2010-03-05 22:17:17 +01001894 it87_write_value(data, IT87_REG_BEEP_ENABLE, data->beeps);
1895 mutex_unlock(&data->update_lock);
1896 return count;
1897}
1898
1899static SENSOR_DEVICE_ATTR(in0_beep, S_IRUGO | S_IWUSR,
1900 show_beep, set_beep, 1);
1901static SENSOR_DEVICE_ATTR(in1_beep, S_IRUGO, show_beep, NULL, 1);
1902static SENSOR_DEVICE_ATTR(in2_beep, S_IRUGO, show_beep, NULL, 1);
1903static SENSOR_DEVICE_ATTR(in3_beep, S_IRUGO, show_beep, NULL, 1);
1904static SENSOR_DEVICE_ATTR(in4_beep, S_IRUGO, show_beep, NULL, 1);
1905static SENSOR_DEVICE_ATTR(in5_beep, S_IRUGO, show_beep, NULL, 1);
1906static SENSOR_DEVICE_ATTR(in6_beep, S_IRUGO, show_beep, NULL, 1);
1907static SENSOR_DEVICE_ATTR(in7_beep, S_IRUGO, show_beep, NULL, 1);
1908/* fanX_beep writability is set later */
1909static SENSOR_DEVICE_ATTR(fan1_beep, S_IRUGO, show_beep, set_beep, 0);
1910static SENSOR_DEVICE_ATTR(fan2_beep, S_IRUGO, show_beep, set_beep, 0);
1911static SENSOR_DEVICE_ATTR(fan3_beep, S_IRUGO, show_beep, set_beep, 0);
1912static SENSOR_DEVICE_ATTR(fan4_beep, S_IRUGO, show_beep, set_beep, 0);
1913static SENSOR_DEVICE_ATTR(fan5_beep, S_IRUGO, show_beep, set_beep, 0);
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07001914static SENSOR_DEVICE_ATTR(fan6_beep, S_IRUGO, show_beep, set_beep, 0);
Jean Delvared9b327c2010-03-05 22:17:17 +01001915static SENSOR_DEVICE_ATTR(temp1_beep, S_IRUGO | S_IWUSR,
1916 show_beep, set_beep, 2);
1917static SENSOR_DEVICE_ATTR(temp2_beep, S_IRUGO, show_beep, NULL, 2);
1918static SENSOR_DEVICE_ATTR(temp3_beep, S_IRUGO, show_beep, NULL, 2);
1919
Julia Lawallddc64ae2016-12-22 13:05:21 +01001920static ssize_t vrm_show(struct device *dev, struct device_attribute *attr,
1921 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922{
Jean Delvare90d66192007-10-08 18:24:35 +02001923 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001924
Jean Delvarea7be58a2005-12-18 16:40:14 +01001925 return sprintf(buf, "%u\n", data->vrm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926}
Guenter Roeckc9620242015-04-04 09:05:57 -07001927
Julia Lawallddc64ae2016-12-22 13:05:21 +01001928static ssize_t vrm_store(struct device *dev, struct device_attribute *attr,
1929 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001931 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001932 unsigned long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001934 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001935 return -EINVAL;
1936
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 data->vrm = val;
1938
1939 return count;
1940}
Julia Lawallddc64ae2016-12-22 13:05:21 +01001941static DEVICE_ATTR_RW(vrm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
Julia Lawallddc64ae2016-12-22 13:05:21 +01001943static ssize_t cpu0_vid_show(struct device *dev,
1944 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945{
1946 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001947
1948 return sprintf(buf, "%ld\n", (long)vid_from_reg(data->vid, data->vrm));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949}
Julia Lawallddc64ae2016-12-22 13:05:21 +01001950static DEVICE_ATTR_RO(cpu0_vid);
Jean Delvare87808be2006-09-24 21:17:13 +02001951
Jean Delvare738e5e02010-08-14 21:08:50 +02001952static ssize_t show_label(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001953 char *buf)
Jean Delvare738e5e02010-08-14 21:08:50 +02001954{
Guenter Roeck3c4c4972012-01-20 09:29:44 -08001955 static const char * const labels[] = {
Jean Delvare738e5e02010-08-14 21:08:50 +02001956 "+5V",
1957 "5VSB",
1958 "Vbat",
Guenter Roeck638c1c02017-02-08 14:00:21 -08001959 "AVCC",
Jean Delvare738e5e02010-08-14 21:08:50 +02001960 };
Guenter Roeck3c4c4972012-01-20 09:29:44 -08001961 static const char * const labels_it8721[] = {
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001962 "+3.3V",
1963 "3VSB",
1964 "Vbat",
Guenter Roeck638c1c02017-02-08 14:00:21 -08001965 "+3.3V",
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001966 };
1967 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvare738e5e02010-08-14 21:08:50 +02001968 int nr = to_sensor_dev_attr(attr)->index;
Justin Maggardead80802015-08-05 12:53:08 -07001969 const char *label;
Jean Delvare738e5e02010-08-14 21:08:50 +02001970
Guenter Roecka9eebd42017-02-08 13:51:16 -08001971 if (has_vin3_5v(data) && nr == 0)
1972 label = labels[0];
1973 else if (has_12mv_adc(data) || has_10_9mv_adc(data))
Justin Maggardead80802015-08-05 12:53:08 -07001974 label = labels_it8721[nr];
1975 else
1976 label = labels[nr];
1977
1978 return sprintf(buf, "%s\n", label);
Jean Delvare738e5e02010-08-14 21:08:50 +02001979}
1980static SENSOR_DEVICE_ATTR(in3_label, S_IRUGO, show_label, NULL, 0);
1981static SENSOR_DEVICE_ATTR(in7_label, S_IRUGO, show_label, NULL, 1);
1982static SENSOR_DEVICE_ATTR(in8_label, S_IRUGO, show_label, NULL, 2);
Guenter Roeck73055402015-03-26 09:16:32 -07001983/* AVCC3 */
Guenter Roeck638c1c02017-02-08 14:00:21 -08001984static SENSOR_DEVICE_ATTR(in9_label, S_IRUGO, show_label, NULL, 3);
Jean Delvare738e5e02010-08-14 21:08:50 +02001985
Guenter Roeck52929712013-03-30 14:00:08 -07001986static umode_t it87_in_is_visible(struct kobject *kobj,
1987 struct attribute *attr, int index)
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001988{
Guenter Roeck52929712013-03-30 14:00:08 -07001989 struct device *dev = container_of(kobj, struct device, kobj);
1990 struct it87_data *data = dev_get_drvdata(dev);
1991 int i = index / 5; /* voltage index */
1992 int a = index % 5; /* attribute index */
1993
Guenter Roeckf838aa22015-04-01 20:09:36 -07001994 if (index >= 40) { /* in8 and higher only have input attributes */
Guenter Roeck52929712013-03-30 14:00:08 -07001995 i = index - 40 + 8;
1996 a = 0;
1997 }
1998
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001999 if (!(data->has_in & BIT(i)))
Guenter Roeck52929712013-03-30 14:00:08 -07002000 return 0;
2001
2002 if (a == 4 && !data->has_beep)
2003 return 0;
2004
2005 return attr->mode;
2006}
2007
2008static struct attribute *it87_attributes_in[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02002009 &sensor_dev_attr_in0_input.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002010 &sensor_dev_attr_in0_min.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002011 &sensor_dev_attr_in0_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002012 &sensor_dev_attr_in0_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002013 &sensor_dev_attr_in0_beep.dev_attr.attr, /* 4 */
2014
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002015 &sensor_dev_attr_in1_input.dev_attr.attr,
2016 &sensor_dev_attr_in1_min.dev_attr.attr,
2017 &sensor_dev_attr_in1_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002018 &sensor_dev_attr_in1_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002019 &sensor_dev_attr_in1_beep.dev_attr.attr, /* 9 */
2020
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002021 &sensor_dev_attr_in2_input.dev_attr.attr,
2022 &sensor_dev_attr_in2_min.dev_attr.attr,
2023 &sensor_dev_attr_in2_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002024 &sensor_dev_attr_in2_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002025 &sensor_dev_attr_in2_beep.dev_attr.attr, /* 14 */
2026
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002027 &sensor_dev_attr_in3_input.dev_attr.attr,
2028 &sensor_dev_attr_in3_min.dev_attr.attr,
2029 &sensor_dev_attr_in3_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002030 &sensor_dev_attr_in3_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002031 &sensor_dev_attr_in3_beep.dev_attr.attr, /* 19 */
2032
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002033 &sensor_dev_attr_in4_input.dev_attr.attr,
2034 &sensor_dev_attr_in4_min.dev_attr.attr,
2035 &sensor_dev_attr_in4_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002036 &sensor_dev_attr_in4_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002037 &sensor_dev_attr_in4_beep.dev_attr.attr, /* 24 */
2038
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002039 &sensor_dev_attr_in5_input.dev_attr.attr,
2040 &sensor_dev_attr_in5_min.dev_attr.attr,
2041 &sensor_dev_attr_in5_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002042 &sensor_dev_attr_in5_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002043 &sensor_dev_attr_in5_beep.dev_attr.attr, /* 29 */
2044
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002045 &sensor_dev_attr_in6_input.dev_attr.attr,
2046 &sensor_dev_attr_in6_min.dev_attr.attr,
2047 &sensor_dev_attr_in6_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002048 &sensor_dev_attr_in6_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002049 &sensor_dev_attr_in6_beep.dev_attr.attr, /* 34 */
2050
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002051 &sensor_dev_attr_in7_input.dev_attr.attr,
2052 &sensor_dev_attr_in7_min.dev_attr.attr,
2053 &sensor_dev_attr_in7_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002054 &sensor_dev_attr_in7_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002055 &sensor_dev_attr_in7_beep.dev_attr.attr, /* 39 */
Jean Delvare87808be2006-09-24 21:17:13 +02002056
Guenter Roeck52929712013-03-30 14:00:08 -07002057 &sensor_dev_attr_in8_input.dev_attr.attr, /* 40 */
Jean Delvared5f3f6c2016-08-29 13:33:29 +02002058 &sensor_dev_attr_in9_input.dev_attr.attr,
2059 &sensor_dev_attr_in10_input.dev_attr.attr,
2060 &sensor_dev_attr_in11_input.dev_attr.attr,
2061 &sensor_dev_attr_in12_input.dev_attr.attr,
Jean Delvare3c329262016-08-29 13:18:23 +02002062 NULL
Guenter Roeck52929712013-03-30 14:00:08 -07002063};
2064
2065static const struct attribute_group it87_group_in = {
2066 .attrs = it87_attributes_in,
2067 .is_visible = it87_in_is_visible,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002068};
2069
Guenter Roeck87533772013-03-30 14:23:20 -07002070static umode_t it87_temp_is_visible(struct kobject *kobj,
2071 struct attribute *attr, int index)
Guenter Roeck4573acb2012-03-26 16:17:41 -07002072{
Guenter Roeck87533772013-03-30 14:23:20 -07002073 struct device *dev = container_of(kobj, struct device, kobj);
2074 struct it87_data *data = dev_get_drvdata(dev);
2075 int i = index / 7; /* temperature index */
2076 int a = index % 7; /* attribute index */
2077
Guenter Roeckcc18da72015-04-01 10:03:01 -07002078 if (index >= 21) {
2079 i = index - 21 + 3;
2080 a = 0;
2081 }
2082
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002083 if (!(data->has_temp & BIT(i)))
Guenter Roeck87533772013-03-30 14:23:20 -07002084 return 0;
2085
2086 if (a == 5 && !has_temp_offset(data))
2087 return 0;
2088
2089 if (a == 6 && !data->has_beep)
2090 return 0;
2091
2092 return attr->mode;
2093}
2094
2095static struct attribute *it87_attributes_temp[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02002096 &sensor_dev_attr_temp1_input.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002097 &sensor_dev_attr_temp1_max.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002098 &sensor_dev_attr_temp1_min.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002099 &sensor_dev_attr_temp1_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002100 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
Guenter Roeck87533772013-03-30 14:23:20 -07002101 &sensor_dev_attr_temp1_offset.dev_attr.attr, /* 5 */
2102 &sensor_dev_attr_temp1_beep.dev_attr.attr, /* 6 */
2103
Guenter Roeckcc18da72015-04-01 10:03:01 -07002104 &sensor_dev_attr_temp2_input.dev_attr.attr, /* 7 */
Guenter Roeck4573acb2012-03-26 16:17:41 -07002105 &sensor_dev_attr_temp2_max.dev_attr.attr,
2106 &sensor_dev_attr_temp2_min.dev_attr.attr,
2107 &sensor_dev_attr_temp2_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002108 &sensor_dev_attr_temp2_alarm.dev_attr.attr,
Guenter Roeck87533772013-03-30 14:23:20 -07002109 &sensor_dev_attr_temp2_offset.dev_attr.attr,
2110 &sensor_dev_attr_temp2_beep.dev_attr.attr,
2111
Guenter Roeckcc18da72015-04-01 10:03:01 -07002112 &sensor_dev_attr_temp3_input.dev_attr.attr, /* 14 */
Guenter Roeck4573acb2012-03-26 16:17:41 -07002113 &sensor_dev_attr_temp3_max.dev_attr.attr,
2114 &sensor_dev_attr_temp3_min.dev_attr.attr,
2115 &sensor_dev_attr_temp3_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002116 &sensor_dev_attr_temp3_alarm.dev_attr.attr,
Guenter Roeck87533772013-03-30 14:23:20 -07002117 &sensor_dev_attr_temp3_offset.dev_attr.attr,
2118 &sensor_dev_attr_temp3_beep.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002119
Guenter Roeckcc18da72015-04-01 10:03:01 -07002120 &sensor_dev_attr_temp4_input.dev_attr.attr, /* 21 */
2121 &sensor_dev_attr_temp5_input.dev_attr.attr,
2122 &sensor_dev_attr_temp6_input.dev_attr.attr,
Guenter Roeck87533772013-03-30 14:23:20 -07002123 NULL
Guenter Roeck4573acb2012-03-26 16:17:41 -07002124};
2125
Guenter Roeck87533772013-03-30 14:23:20 -07002126static const struct attribute_group it87_group_temp = {
2127 .attrs = it87_attributes_temp,
2128 .is_visible = it87_temp_is_visible,
Guenter Roeck161d8982012-12-19 22:17:01 +01002129};
2130
Guenter Roeckd3766842013-03-30 15:47:21 -07002131static umode_t it87_is_visible(struct kobject *kobj,
2132 struct attribute *attr, int index)
2133{
2134 struct device *dev = container_of(kobj, struct device, kobj);
2135 struct it87_data *data = dev_get_drvdata(dev);
2136
Guenter Roeck8638d0a2015-03-30 11:13:49 -07002137 if ((index == 2 || index == 3) && !data->has_vid)
Guenter Roeckd3766842013-03-30 15:47:21 -07002138 return 0;
2139
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002140 if (index > 3 && !(data->in_internal & BIT(index - 4)))
Guenter Roeckd3766842013-03-30 15:47:21 -07002141 return 0;
2142
2143 return attr->mode;
2144}
2145
Guenter Roeck4573acb2012-03-26 16:17:41 -07002146static struct attribute *it87_attributes[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02002147 &dev_attr_alarms.attr,
Jean Delvare3d30f9e2011-07-25 21:46:10 +02002148 &sensor_dev_attr_intrusion0_alarm.dev_attr.attr,
Guenter Roeck8638d0a2015-03-30 11:13:49 -07002149 &dev_attr_vrm.attr, /* 2 */
2150 &dev_attr_cpu0_vid.attr, /* 3 */
2151 &sensor_dev_attr_in3_label.dev_attr.attr, /* 4 .. 7 */
Guenter Roeckd3766842013-03-30 15:47:21 -07002152 &sensor_dev_attr_in7_label.dev_attr.attr,
2153 &sensor_dev_attr_in8_label.dev_attr.attr,
2154 &sensor_dev_attr_in9_label.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002155 NULL
2156};
2157
2158static const struct attribute_group it87_group = {
2159 .attrs = it87_attributes,
Guenter Roeckd3766842013-03-30 15:47:21 -07002160 .is_visible = it87_is_visible,
Jean Delvare87808be2006-09-24 21:17:13 +02002161};
2162
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002163static umode_t it87_fan_is_visible(struct kobject *kobj,
2164 struct attribute *attr, int index)
2165{
2166 struct device *dev = container_of(kobj, struct device, kobj);
2167 struct it87_data *data = dev_get_drvdata(dev);
2168 int i = index / 5; /* fan index */
2169 int a = index % 5; /* attribute index */
2170
2171 if (index >= 15) { /* fan 4..6 don't have divisor attributes */
2172 i = (index - 15) / 4 + 3;
2173 a = (index - 15) % 4;
2174 }
2175
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002176 if (!(data->has_fan & BIT(i)))
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002177 return 0;
2178
2179 if (a == 3) { /* beep */
2180 if (!data->has_beep)
2181 return 0;
2182 /* first fan beep attribute is writable */
2183 if (i == __ffs(data->has_fan))
2184 return attr->mode | S_IWUSR;
2185 }
2186
2187 if (a == 4 && has_16bit_fans(data)) /* divisor */
2188 return 0;
2189
2190 return attr->mode;
2191}
2192
2193static struct attribute *it87_attributes_fan[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02002194 &sensor_dev_attr_fan1_input.dev_attr.attr,
2195 &sensor_dev_attr_fan1_min.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01002196 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002197 &sensor_dev_attr_fan1_beep.dev_attr.attr, /* 3 */
2198 &sensor_dev_attr_fan1_div.dev_attr.attr, /* 4 */
2199
Jean Delvare87808be2006-09-24 21:17:13 +02002200 &sensor_dev_attr_fan2_input.dev_attr.attr,
2201 &sensor_dev_attr_fan2_min.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01002202 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002203 &sensor_dev_attr_fan2_beep.dev_attr.attr,
2204 &sensor_dev_attr_fan2_div.dev_attr.attr, /* 9 */
2205
Jean Delvare87808be2006-09-24 21:17:13 +02002206 &sensor_dev_attr_fan3_input.dev_attr.attr,
2207 &sensor_dev_attr_fan3_min.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002208 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002209 &sensor_dev_attr_fan3_beep.dev_attr.attr,
2210 &sensor_dev_attr_fan3_div.dev_attr.attr, /* 14 */
2211
2212 &sensor_dev_attr_fan4_input.dev_attr.attr, /* 15 */
Guenter Roecke1169ba2012-12-19 22:17:01 +01002213 &sensor_dev_attr_fan4_min.dev_attr.attr,
2214 &sensor_dev_attr_fan4_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002215 &sensor_dev_attr_fan4_beep.dev_attr.attr,
2216
2217 &sensor_dev_attr_fan5_input.dev_attr.attr, /* 19 */
Guenter Roecke1169ba2012-12-19 22:17:01 +01002218 &sensor_dev_attr_fan5_min.dev_attr.attr,
2219 &sensor_dev_attr_fan5_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002220 &sensor_dev_attr_fan5_beep.dev_attr.attr,
2221
2222 &sensor_dev_attr_fan6_input.dev_attr.attr, /* 23 */
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07002223 &sensor_dev_attr_fan6_min.dev_attr.attr,
2224 &sensor_dev_attr_fan6_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002225 &sensor_dev_attr_fan6_beep.dev_attr.attr,
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07002226 NULL
Jean Delvare723a0aa2010-03-05 22:17:16 +01002227};
2228
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002229static const struct attribute_group it87_group_fan = {
2230 .attrs = it87_attributes_fan,
2231 .is_visible = it87_fan_is_visible,
Guenter Roecke1169ba2012-12-19 22:17:01 +01002232};
Jean Delvare723a0aa2010-03-05 22:17:16 +01002233
Guenter Roeck5c391262013-03-30 15:02:12 -07002234static umode_t it87_pwm_is_visible(struct kobject *kobj,
2235 struct attribute *attr, int index)
Guenter Roeck60878bc2015-03-26 19:57:42 -07002236{
2237 struct device *dev = container_of(kobj, struct device, kobj);
2238 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeck5c391262013-03-30 15:02:12 -07002239 int i = index / 4; /* pwm index */
2240 int a = index % 4; /* attribute index */
Guenter Roeck60878bc2015-03-26 19:57:42 -07002241
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002242 if (!(data->has_pwm & BIT(i)))
Guenter Roeck5c391262013-03-30 15:02:12 -07002243 return 0;
2244
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002245 /* pwmX_auto_channels_temp is only writable if auto pwm is supported */
2246 if (a == 3 && (has_old_autopwm(data) || has_newer_autopwm(data)))
Guenter Roeck5c391262013-03-30 15:02:12 -07002247 return attr->mode | S_IWUSR;
2248
2249 /* pwm2_freq is writable if there are two pwm frequency selects */
2250 if (has_pwm_freq2(data) && i == 1 && a == 2)
Guenter Roeck60878bc2015-03-26 19:57:42 -07002251 return attr->mode | S_IWUSR;
2252
2253 return attr->mode;
2254}
2255
Guenter Roeck5c391262013-03-30 15:02:12 -07002256static struct attribute *it87_attributes_pwm[] = {
2257 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
2258 &sensor_dev_attr_pwm1.dev_attr.attr,
2259 &sensor_dev_attr_pwm1_freq.dev_attr.attr,
2260 &sensor_dev_attr_pwm1_auto_channels_temp.dev_attr.attr,
2261
2262 &sensor_dev_attr_pwm2_enable.dev_attr.attr,
2263 &sensor_dev_attr_pwm2.dev_attr.attr,
2264 &sensor_dev_attr_pwm2_freq.dev_attr.attr,
2265 &sensor_dev_attr_pwm2_auto_channels_temp.dev_attr.attr,
2266
2267 &sensor_dev_attr_pwm3_enable.dev_attr.attr,
2268 &sensor_dev_attr_pwm3.dev_attr.attr,
2269 &sensor_dev_attr_pwm3_freq.dev_attr.attr,
2270 &sensor_dev_attr_pwm3_auto_channels_temp.dev_attr.attr,
2271
2272 &sensor_dev_attr_pwm4_enable.dev_attr.attr,
2273 &sensor_dev_attr_pwm4.dev_attr.attr,
2274 &sensor_dev_attr_pwm4_freq.dev_attr.attr,
2275 &sensor_dev_attr_pwm4_auto_channels_temp.dev_attr.attr,
2276
2277 &sensor_dev_attr_pwm5_enable.dev_attr.attr,
2278 &sensor_dev_attr_pwm5.dev_attr.attr,
2279 &sensor_dev_attr_pwm5_freq.dev_attr.attr,
2280 &sensor_dev_attr_pwm5_auto_channels_temp.dev_attr.attr,
2281
2282 &sensor_dev_attr_pwm6_enable.dev_attr.attr,
2283 &sensor_dev_attr_pwm6.dev_attr.attr,
2284 &sensor_dev_attr_pwm6_freq.dev_attr.attr,
2285 &sensor_dev_attr_pwm6_auto_channels_temp.dev_attr.attr,
2286
2287 NULL
Jean Delvare723a0aa2010-03-05 22:17:16 +01002288};
2289
Guenter Roeck5c391262013-03-30 15:02:12 -07002290static const struct attribute_group it87_group_pwm = {
2291 .attrs = it87_attributes_pwm,
2292 .is_visible = it87_pwm_is_visible,
2293};
2294
2295static umode_t it87_auto_pwm_is_visible(struct kobject *kobj,
2296 struct attribute *attr, int index)
2297{
2298 struct device *dev = container_of(kobj, struct device, kobj);
2299 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002300 int i = index / 11; /* pwm index */
2301 int a = index % 11; /* attribute index */
2302
2303 if (index >= 33) { /* pwm 4..6 */
2304 i = (index - 33) / 6 + 3;
2305 a = (index - 33) % 6 + 4;
2306 }
Guenter Roeck5c391262013-03-30 15:02:12 -07002307
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002308 if (!(data->has_pwm & BIT(i)))
Guenter Roeck5c391262013-03-30 15:02:12 -07002309 return 0;
2310
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002311 if (has_newer_autopwm(data)) {
2312 if (a < 4) /* no auto point pwm */
2313 return 0;
2314 if (a == 8) /* no auto_point4 */
2315 return 0;
2316 }
2317 if (has_old_autopwm(data)) {
2318 if (a >= 9) /* no pwm_auto_start, pwm_auto_slope */
2319 return 0;
2320 }
2321
Guenter Roeck5c391262013-03-30 15:02:12 -07002322 return attr->mode;
2323}
2324
2325static struct attribute *it87_attributes_auto_pwm[] = {
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002326 &sensor_dev_attr_pwm1_auto_point1_pwm.dev_attr.attr,
2327 &sensor_dev_attr_pwm1_auto_point2_pwm.dev_attr.attr,
2328 &sensor_dev_attr_pwm1_auto_point3_pwm.dev_attr.attr,
2329 &sensor_dev_attr_pwm1_auto_point4_pwm.dev_attr.attr,
2330 &sensor_dev_attr_pwm1_auto_point1_temp.dev_attr.attr,
2331 &sensor_dev_attr_pwm1_auto_point1_temp_hyst.dev_attr.attr,
2332 &sensor_dev_attr_pwm1_auto_point2_temp.dev_attr.attr,
2333 &sensor_dev_attr_pwm1_auto_point3_temp.dev_attr.attr,
2334 &sensor_dev_attr_pwm1_auto_point4_temp.dev_attr.attr,
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002335 &sensor_dev_attr_pwm1_auto_start.dev_attr.attr,
2336 &sensor_dev_attr_pwm1_auto_slope.dev_attr.attr,
Guenter Roeck5c391262013-03-30 15:02:12 -07002337
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002338 &sensor_dev_attr_pwm2_auto_point1_pwm.dev_attr.attr, /* 11 */
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002339 &sensor_dev_attr_pwm2_auto_point2_pwm.dev_attr.attr,
2340 &sensor_dev_attr_pwm2_auto_point3_pwm.dev_attr.attr,
2341 &sensor_dev_attr_pwm2_auto_point4_pwm.dev_attr.attr,
2342 &sensor_dev_attr_pwm2_auto_point1_temp.dev_attr.attr,
2343 &sensor_dev_attr_pwm2_auto_point1_temp_hyst.dev_attr.attr,
2344 &sensor_dev_attr_pwm2_auto_point2_temp.dev_attr.attr,
2345 &sensor_dev_attr_pwm2_auto_point3_temp.dev_attr.attr,
2346 &sensor_dev_attr_pwm2_auto_point4_temp.dev_attr.attr,
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002347 &sensor_dev_attr_pwm2_auto_start.dev_attr.attr,
2348 &sensor_dev_attr_pwm2_auto_slope.dev_attr.attr,
Guenter Roeck5c391262013-03-30 15:02:12 -07002349
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002350 &sensor_dev_attr_pwm3_auto_point1_pwm.dev_attr.attr, /* 22 */
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002351 &sensor_dev_attr_pwm3_auto_point2_pwm.dev_attr.attr,
2352 &sensor_dev_attr_pwm3_auto_point3_pwm.dev_attr.attr,
2353 &sensor_dev_attr_pwm3_auto_point4_pwm.dev_attr.attr,
2354 &sensor_dev_attr_pwm3_auto_point1_temp.dev_attr.attr,
2355 &sensor_dev_attr_pwm3_auto_point1_temp_hyst.dev_attr.attr,
2356 &sensor_dev_attr_pwm3_auto_point2_temp.dev_attr.attr,
2357 &sensor_dev_attr_pwm3_auto_point3_temp.dev_attr.attr,
2358 &sensor_dev_attr_pwm3_auto_point4_temp.dev_attr.attr,
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002359 &sensor_dev_attr_pwm3_auto_start.dev_attr.attr,
2360 &sensor_dev_attr_pwm3_auto_slope.dev_attr.attr,
2361
2362 &sensor_dev_attr_pwm4_auto_point1_temp.dev_attr.attr, /* 33 */
2363 &sensor_dev_attr_pwm4_auto_point1_temp_hyst.dev_attr.attr,
2364 &sensor_dev_attr_pwm4_auto_point2_temp.dev_attr.attr,
2365 &sensor_dev_attr_pwm4_auto_point3_temp.dev_attr.attr,
2366 &sensor_dev_attr_pwm4_auto_start.dev_attr.attr,
2367 &sensor_dev_attr_pwm4_auto_slope.dev_attr.attr,
2368
2369 &sensor_dev_attr_pwm5_auto_point1_temp.dev_attr.attr,
2370 &sensor_dev_attr_pwm5_auto_point1_temp_hyst.dev_attr.attr,
2371 &sensor_dev_attr_pwm5_auto_point2_temp.dev_attr.attr,
2372 &sensor_dev_attr_pwm5_auto_point3_temp.dev_attr.attr,
2373 &sensor_dev_attr_pwm5_auto_start.dev_attr.attr,
2374 &sensor_dev_attr_pwm5_auto_slope.dev_attr.attr,
2375
2376 &sensor_dev_attr_pwm6_auto_point1_temp.dev_attr.attr,
2377 &sensor_dev_attr_pwm6_auto_point1_temp_hyst.dev_attr.attr,
2378 &sensor_dev_attr_pwm6_auto_point2_temp.dev_attr.attr,
2379 &sensor_dev_attr_pwm6_auto_point3_temp.dev_attr.attr,
2380 &sensor_dev_attr_pwm6_auto_start.dev_attr.attr,
2381 &sensor_dev_attr_pwm6_auto_slope.dev_attr.attr,
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002382
Guenter Roeck5c391262013-03-30 15:02:12 -07002383 NULL,
2384};
2385
2386static const struct attribute_group it87_group_auto_pwm = {
2387 .attrs = it87_attributes_auto_pwm,
2388 .is_visible = it87_auto_pwm_is_visible,
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002389};
2390
Jean Delvare2d8672c2005-07-19 23:56:35 +02002391/* SuperIO detection - will change isa_address if a chip is found */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002392static int __init it87_find(int sioaddr, unsigned short *address,
2393 struct it87_sio_data *sio_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394{
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +02002395 int err;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002396 u16 chip_type;
Jean Delvare98dd22c2008-10-09 15:33:58 +02002397 const char *board_vendor, *board_name;
Guenter Roeckf83a9cb2015-03-31 09:31:34 -07002398 const struct it87_devices *config;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002400 err = superio_enter(sioaddr);
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +02002401 if (err)
2402 return err;
2403
2404 err = -ENODEV;
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002405 chip_type = force_id ? force_id : superio_inw(sioaddr, DEVID);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002406
2407 switch (chip_type) {
2408 case IT8705F_DEVID:
2409 sio_data->type = it87;
2410 break;
2411 case IT8712F_DEVID:
2412 sio_data->type = it8712;
2413 break;
2414 case IT8716F_DEVID:
2415 case IT8726F_DEVID:
2416 sio_data->type = it8716;
2417 break;
2418 case IT8718F_DEVID:
2419 sio_data->type = it8718;
2420 break;
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +01002421 case IT8720F_DEVID:
2422 sio_data->type = it8720;
2423 break;
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002424 case IT8721F_DEVID:
2425 sio_data->type = it8721;
2426 break;
Jean Delvare16b5dda2012-01-16 22:51:48 +01002427 case IT8728F_DEVID:
2428 sio_data->type = it8728;
2429 break;
Justin Maggardead80802015-08-05 12:53:08 -07002430 case IT8732F_DEVID:
2431 sio_data->type = it8732;
2432 break;
Guenter Roecke531ffc2017-02-08 15:10:27 -08002433 case IT8792E_DEVID:
2434 sio_data->type = it8792;
2435 break;
Guenter Roeckb0636702012-09-07 17:34:41 -06002436 case IT8771E_DEVID:
2437 sio_data->type = it8771;
2438 break;
2439 case IT8772E_DEVID:
2440 sio_data->type = it8772;
2441 break;
Guenter Roeck7bc32d22015-01-17 14:10:24 -08002442 case IT8781F_DEVID:
2443 sio_data->type = it8781;
2444 break;
Guenter Roeck0531d982012-03-02 11:46:44 -08002445 case IT8782F_DEVID:
2446 sio_data->type = it8782;
2447 break;
2448 case IT8783E_DEVID:
2449 sio_data->type = it8783;
2450 break;
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +01002451 case IT8786E_DEVID:
2452 sio_data->type = it8786;
2453 break;
Guenter Roeck4ee07152015-03-25 23:26:28 -07002454 case IT8790E_DEVID:
2455 sio_data->type = it8790;
2456 break;
Rudolf Marek7183ae82014-04-04 18:01:35 +02002457 case IT8603E_DEVID:
Rudolf Marek574e9bd2014-04-04 18:01:35 +02002458 case IT8623E_DEVID:
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002459 sio_data->type = it8603;
2460 break;
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002461 case IT8620E_DEVID:
2462 sio_data->type = it8620;
2463 break;
Guenter Roeck8af1aba2017-02-08 13:52:57 -08002464 case IT8622E_DEVID:
2465 sio_data->type = it8622;
2466 break;
Guenter Roeck71a9c232016-01-18 00:35:58 -08002467 case IT8628E_DEVID:
2468 sio_data->type = it8628;
2469 break;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002470 case 0xffff: /* No device at all */
2471 goto exit;
2472 default:
Joe Perchesa8ca1032011-01-12 21:55:10 +01002473 pr_debug("Unsupported chip (DEVID=0x%x)\n", chip_type);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002474 goto exit;
2475 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002477 superio_select(sioaddr, PME);
2478 if (!(superio_inb(sioaddr, IT87_ACT_REG) & 0x01)) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002479 pr_info("Device not activated, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 goto exit;
2481 }
2482
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002483 *address = superio_inw(sioaddr, IT87_BASE_REG) & ~(IT87_EXTENT - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 if (*address == 0) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002485 pr_info("Base address not set, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 goto exit;
2487 }
2488
2489 err = 0;
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002490 sio_data->revision = superio_inb(sioaddr, DEVREV) & 0x0f;
Guenter Roeckfaf392f2015-03-26 08:36:18 -07002491 pr_info("Found IT%04x%s chip at 0x%x, revision %d\n", chip_type,
2492 it87_devices[sio_data->type].suffix,
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +01002493 *address, sio_data->revision);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
Guenter Roeckf83a9cb2015-03-31 09:31:34 -07002495 config = &it87_devices[sio_data->type];
2496
Guenter Roeck7f5726c2015-03-26 08:49:18 -07002497 /* in7 (VSB or VCCH5V) is always internal on some chips */
Guenter Roeckf83a9cb2015-03-31 09:31:34 -07002498 if (has_in7_internal(config))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002499 sio_data->internal |= BIT(1);
Guenter Roeck7f5726c2015-03-26 08:49:18 -07002500
Jean Delvare738e5e02010-08-14 21:08:50 +02002501 /* in8 (Vbat) is always internal */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002502 sio_data->internal |= BIT(2);
Guenter Roeck7f5726c2015-03-26 08:49:18 -07002503
Guenter Roeck73055402015-03-26 09:16:32 -07002504 /* in9 (AVCC3), always internal if supported */
2505 if (has_avcc3(config))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002506 sio_data->internal |= BIT(3); /* in9 is AVCC */
Guenter Roeck73055402015-03-26 09:16:32 -07002507 else
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002508 sio_data->skip_in |= BIT(9);
Jean Delvare738e5e02010-08-14 21:08:50 +02002509
Guenter Roeck638c1c02017-02-08 14:00:21 -08002510 if (!has_five_pwm(config))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002511 sio_data->skip_pwm |= BIT(3) | BIT(4) | BIT(5);
Guenter Roeck638c1c02017-02-08 14:00:21 -08002512 else if (!has_six_pwm(config))
2513 sio_data->skip_pwm |= BIT(5);
Guenter Roeck36c4d982015-03-26 18:18:19 -07002514
Guenter Roeckf83a9cb2015-03-31 09:31:34 -07002515 if (!has_vid(config))
Jean Delvare895ff262009-12-09 20:35:47 +01002516 sio_data->skip_vid = 1;
Jean Delvared9b327c2010-03-05 22:17:17 +01002517
Guenter Roeck32dd7c402015-02-12 07:40:23 -08002518 /* Read GPIO config and VID value from LDN 7 (GPIO) */
2519 if (sio_data->type == it87) {
Jean Delvared9b327c2010-03-05 22:17:17 +01002520 /* The IT8705F has a different LD number for GPIO */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002521 superio_select(sioaddr, 5);
2522 sio_data->beep_pin = superio_inb(sioaddr,
2523 IT87_SIO_BEEP_PIN_REG) & 0x3f;
Guenter Roeck0531d982012-03-02 11:46:44 -08002524 } else if (sio_data->type == it8783) {
Guenter Roeck088ce2a2013-03-13 16:40:39 -07002525 int reg25, reg27, reg2a, reg2c, regef;
Guenter Roeck0531d982012-03-02 11:46:44 -08002526
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002527 superio_select(sioaddr, GPIO);
Guenter Roeck0531d982012-03-02 11:46:44 -08002528
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002529 reg25 = superio_inb(sioaddr, IT87_SIO_GPIO1_REG);
2530 reg27 = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
2531 reg2a = superio_inb(sioaddr, IT87_SIO_PINX1_REG);
2532 reg2c = superio_inb(sioaddr, IT87_SIO_PINX2_REG);
2533 regef = superio_inb(sioaddr, IT87_SIO_SPI_REG);
Guenter Roeck0531d982012-03-02 11:46:44 -08002534
Guenter Roeck0531d982012-03-02 11:46:44 -08002535 /* Check if fan3 is there or not */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002536 if ((reg27 & BIT(0)) || !(reg2c & BIT(2)))
2537 sio_data->skip_fan |= BIT(2);
Guenter Roeckc9620242015-04-04 09:05:57 -07002538 if ((reg25 & BIT(4)) ||
2539 (!(reg2a & BIT(1)) && (regef & BIT(0))))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002540 sio_data->skip_pwm |= BIT(2);
Guenter Roeck0531d982012-03-02 11:46:44 -08002541
2542 /* Check if fan2 is there or not */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002543 if (reg27 & BIT(7))
2544 sio_data->skip_fan |= BIT(1);
2545 if (reg27 & BIT(3))
2546 sio_data->skip_pwm |= BIT(1);
Guenter Roeck0531d982012-03-02 11:46:44 -08002547
2548 /* VIN5 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002549 if ((reg27 & BIT(0)) || (reg2c & BIT(2)))
2550 sio_data->skip_in |= BIT(5); /* No VIN5 */
Guenter Roeck0531d982012-03-02 11:46:44 -08002551
2552 /* VIN6 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002553 if (reg27 & BIT(1))
2554 sio_data->skip_in |= BIT(6); /* No VIN6 */
Guenter Roeck0531d982012-03-02 11:46:44 -08002555
2556 /*
2557 * VIN7
2558 * Does not depend on bit 2 of Reg2C, contrary to datasheet.
2559 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002560 if (reg27 & BIT(2)) {
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002561 /*
2562 * The data sheet is a bit unclear regarding the
2563 * internal voltage divider for VCCH5V. It says
2564 * "This bit enables and switches VIN7 (pin 91) to the
2565 * internal voltage divider for VCCH5V".
2566 * This is different to other chips, where the internal
2567 * voltage divider would connect VIN7 to an internal
2568 * voltage source. Maybe that is the case here as well.
2569 *
2570 * Since we don't know for sure, re-route it if that is
2571 * not the case, and ask the user to report if the
2572 * resulting voltage is sane.
2573 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002574 if (!(reg2c & BIT(1))) {
2575 reg2c |= BIT(1);
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002576 superio_outb(sioaddr, IT87_SIO_PINX2_REG,
2577 reg2c);
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002578 pr_notice("Routing internal VCCH5V to in7.\n");
2579 }
2580 pr_notice("in7 routed to internal voltage divider, with external pin disabled.\n");
2581 pr_notice("Please report if it displays a reasonable voltage.\n");
2582 }
Guenter Roeck0531d982012-03-02 11:46:44 -08002583
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002584 if (reg2c & BIT(0))
2585 sio_data->internal |= BIT(0);
2586 if (reg2c & BIT(1))
2587 sio_data->internal |= BIT(1);
Guenter Roeck0531d982012-03-02 11:46:44 -08002588
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002589 sio_data->beep_pin = superio_inb(sioaddr,
2590 IT87_SIO_BEEP_PIN_REG) & 0x3f;
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002591 } else if (sio_data->type == it8603) {
2592 int reg27, reg29;
Guenter Roeck0531d982012-03-02 11:46:44 -08002593
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002594 superio_select(sioaddr, GPIO);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002595
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002596 reg27 = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002597
2598 /* Check if fan3 is there or not */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002599 if (reg27 & BIT(6))
2600 sio_data->skip_pwm |= BIT(2);
2601 if (reg27 & BIT(7))
2602 sio_data->skip_fan |= BIT(2);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002603
2604 /* Check if fan2 is there or not */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002605 reg29 = superio_inb(sioaddr, IT87_SIO_GPIO5_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002606 if (reg29 & BIT(1))
2607 sio_data->skip_pwm |= BIT(1);
2608 if (reg29 & BIT(2))
2609 sio_data->skip_fan |= BIT(1);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002610
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002611 sio_data->skip_in |= BIT(5); /* No VIN5 */
2612 sio_data->skip_in |= BIT(6); /* No VIN6 */
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002613
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002614 sio_data->beep_pin = superio_inb(sioaddr,
2615 IT87_SIO_BEEP_PIN_REG) & 0x3f;
Guenter Roeck71a9c232016-01-18 00:35:58 -08002616 } else if (sio_data->type == it8620 || sio_data->type == it8628) {
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002617 int reg;
2618
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002619 superio_select(sioaddr, GPIO);
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002620
Guenter Roeck36c4d982015-03-26 18:18:19 -07002621 /* Check for pwm5 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002622 reg = superio_inb(sioaddr, IT87_SIO_GPIO1_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002623 if (reg & BIT(6))
2624 sio_data->skip_pwm |= BIT(4);
Guenter Roeck36c4d982015-03-26 18:18:19 -07002625
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002626 /* Check for fan4, fan5 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002627 reg = superio_inb(sioaddr, IT87_SIO_GPIO2_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002628 if (!(reg & BIT(5)))
2629 sio_data->skip_fan |= BIT(3);
2630 if (!(reg & BIT(4)))
2631 sio_data->skip_fan |= BIT(4);
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002632
2633 /* Check for pwm3, fan3 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002634 reg = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002635 if (reg & BIT(6))
2636 sio_data->skip_pwm |= BIT(2);
2637 if (reg & BIT(7))
2638 sio_data->skip_fan |= BIT(2);
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002639
Guenter Roeck36c4d982015-03-26 18:18:19 -07002640 /* Check for pwm4 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002641 reg = superio_inb(sioaddr, IT87_SIO_GPIO4_REG);
Guenter Roeckd66777c2017-02-08 14:05:56 -08002642 if (reg & BIT(2))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002643 sio_data->skip_pwm |= BIT(3);
Guenter Roeck36c4d982015-03-26 18:18:19 -07002644
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002645 /* Check for pwm2, fan2 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002646 reg = superio_inb(sioaddr, IT87_SIO_GPIO5_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002647 if (reg & BIT(1))
2648 sio_data->skip_pwm |= BIT(1);
2649 if (reg & BIT(2))
2650 sio_data->skip_fan |= BIT(1);
Guenter Roeck36c4d982015-03-26 18:18:19 -07002651 /* Check for pwm6, fan6 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002652 if (!(reg & BIT(7))) {
2653 sio_data->skip_pwm |= BIT(5);
2654 sio_data->skip_fan |= BIT(5);
Guenter Roeck36c4d982015-03-26 18:18:19 -07002655 }
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002656
Guenter Roeck638c1c02017-02-08 14:00:21 -08002657 /* Check if AVCC is on VIN3 */
2658 reg = superio_inb(sioaddr, IT87_SIO_PINX2_REG);
2659 if (reg & BIT(0))
2660 sio_data->internal |= BIT(0);
2661 else
2662 sio_data->skip_in |= BIT(9);
2663
2664 sio_data->beep_pin = superio_inb(sioaddr,
2665 IT87_SIO_BEEP_PIN_REG) & 0x3f;
2666 } else if (sio_data->type == it8622) {
2667 int reg;
2668
2669 superio_select(sioaddr, GPIO);
2670
2671 /* Check for pwm4, fan4 */
2672 reg = superio_inb(sioaddr, IT87_SIO_GPIO1_REG);
2673 if (reg & BIT(6))
2674 sio_data->skip_fan |= BIT(3);
2675 if (reg & BIT(5))
2676 sio_data->skip_pwm |= BIT(3);
2677
2678 /* Check for pwm3, fan3, pwm5, fan5 */
2679 reg = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
2680 if (reg & BIT(6))
2681 sio_data->skip_pwm |= BIT(2);
2682 if (reg & BIT(7))
2683 sio_data->skip_fan |= BIT(2);
2684 if (reg & BIT(3))
2685 sio_data->skip_pwm |= BIT(4);
2686 if (reg & BIT(1))
2687 sio_data->skip_fan |= BIT(4);
2688
2689 /* Check for pwm2, fan2 */
2690 reg = superio_inb(sioaddr, IT87_SIO_GPIO5_REG);
2691 if (reg & BIT(1))
2692 sio_data->skip_pwm |= BIT(1);
2693 if (reg & BIT(2))
2694 sio_data->skip_fan |= BIT(1);
2695
2696 /* Check for AVCC */
2697 reg = superio_inb(sioaddr, IT87_SIO_PINX2_REG);
2698 if (!(reg & BIT(0)))
2699 sio_data->skip_in |= BIT(9);
2700
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002701 sio_data->beep_pin = superio_inb(sioaddr,
2702 IT87_SIO_BEEP_PIN_REG) & 0x3f;
Jean Delvare895ff262009-12-09 20:35:47 +01002703 } else {
Jean Delvare87673dd2006-08-28 14:37:19 +02002704 int reg;
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002705 bool uart6;
Jean Delvare87673dd2006-08-28 14:37:19 +02002706
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002707 superio_select(sioaddr, GPIO);
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002708
Guenter Roecka0df9262015-04-05 16:51:36 -07002709 /* Check for fan4, fan5 */
2710 if (has_five_fans(config)) {
2711 reg = superio_inb(sioaddr, IT87_SIO_GPIO2_REG);
2712 switch (sio_data->type) {
2713 case it8718:
2714 if (reg & BIT(5))
2715 sio_data->skip_fan |= BIT(3);
2716 if (reg & BIT(4))
2717 sio_data->skip_fan |= BIT(4);
2718 break;
2719 case it8720:
2720 case it8721:
2721 case it8728:
2722 if (!(reg & BIT(5)))
2723 sio_data->skip_fan |= BIT(3);
2724 if (!(reg & BIT(4)))
2725 sio_data->skip_fan |= BIT(4);
2726 break;
2727 default:
2728 break;
2729 }
2730 }
2731
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002732 reg = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
Guenter Roeck32dd7c402015-02-12 07:40:23 -08002733 if (!sio_data->skip_vid) {
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002734 /* We need at least 4 VID pins */
2735 if (reg & 0x0f) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002736 pr_info("VID is disabled (pins used for GPIO)\n");
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002737 sio_data->skip_vid = 1;
2738 }
Jean Delvare895ff262009-12-09 20:35:47 +01002739 }
2740
Jean Delvare591ec652009-12-09 20:35:48 +01002741 /* Check if fan3 is there or not */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002742 if (reg & BIT(6))
2743 sio_data->skip_pwm |= BIT(2);
2744 if (reg & BIT(7))
2745 sio_data->skip_fan |= BIT(2);
Jean Delvare591ec652009-12-09 20:35:48 +01002746
2747 /* Check if fan2 is there or not */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002748 reg = superio_inb(sioaddr, IT87_SIO_GPIO5_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002749 if (reg & BIT(1))
2750 sio_data->skip_pwm |= BIT(1);
2751 if (reg & BIT(2))
2752 sio_data->skip_fan |= BIT(1);
Jean Delvare591ec652009-12-09 20:35:48 +01002753
Guenter Roeckc9620242015-04-04 09:05:57 -07002754 if ((sio_data->type == it8718 || sio_data->type == it8720) &&
2755 !(sio_data->skip_vid))
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002756 sio_data->vid_value = superio_inb(sioaddr,
2757 IT87_SIO_VID_REG);
Jean Delvare87673dd2006-08-28 14:37:19 +02002758
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002759 reg = superio_inb(sioaddr, IT87_SIO_PINX2_REG);
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002760
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002761 uart6 = sio_data->type == it8782 && (reg & BIT(2));
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002762
Jean Delvare436cad22010-07-09 16:22:48 +02002763 /*
2764 * The IT8720F has no VIN7 pin, so VCCH should always be
2765 * routed internally to VIN7 with an internal divider.
2766 * Curiously, there still is a configuration bit to control
2767 * this, which means it can be set incorrectly. And even
2768 * more curiously, many boards out there are improperly
2769 * configured, even though the IT8720F datasheet claims
2770 * that the internal routing of VCCH to VIN7 is the default
2771 * setting. So we force the internal routing in this case.
Guenter Roeck0531d982012-03-02 11:46:44 -08002772 *
2773 * On IT8782F, VIN7 is multiplexed with one of the UART6 pins.
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002774 * If UART6 is enabled, re-route VIN7 to the internal divider
2775 * if that is not already the case.
Jean Delvare436cad22010-07-09 16:22:48 +02002776 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002777 if ((sio_data->type == it8720 || uart6) && !(reg & BIT(1))) {
2778 reg |= BIT(1);
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002779 superio_outb(sioaddr, IT87_SIO_PINX2_REG, reg);
Joe Perchesa8ca1032011-01-12 21:55:10 +01002780 pr_notice("Routing internal VCCH to in7\n");
Jean Delvare436cad22010-07-09 16:22:48 +02002781 }
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002782 if (reg & BIT(0))
2783 sio_data->internal |= BIT(0);
2784 if (reg & BIT(1))
2785 sio_data->internal |= BIT(1);
Jean Delvared9b327c2010-03-05 22:17:17 +01002786
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002787 /*
2788 * On IT8782F, UART6 pins overlap with VIN5, VIN6, and VIN7.
2789 * While VIN7 can be routed to the internal voltage divider,
2790 * VIN5 and VIN6 are not available if UART6 is enabled.
Guenter Roeck4573acb2012-03-26 16:17:41 -07002791 *
2792 * Also, temp3 is not available if UART6 is enabled and TEMPIN3
2793 * is the temperature source. Since we can not read the
2794 * temperature source here, skip_temp is preliminary.
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002795 */
Guenter Roeck4573acb2012-03-26 16:17:41 -07002796 if (uart6) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002797 sio_data->skip_in |= BIT(5) | BIT(6);
2798 sio_data->skip_temp |= BIT(2);
Guenter Roeck4573acb2012-03-26 16:17:41 -07002799 }
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002800
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002801 sio_data->beep_pin = superio_inb(sioaddr,
2802 IT87_SIO_BEEP_PIN_REG) & 0x3f;
Jean Delvare87673dd2006-08-28 14:37:19 +02002803 }
Jean Delvared9b327c2010-03-05 22:17:17 +01002804 if (sio_data->beep_pin)
Joe Perchesa8ca1032011-01-12 21:55:10 +01002805 pr_info("Beeping is supported\n");
Jean Delvare87673dd2006-08-28 14:37:19 +02002806
Jean Delvare98dd22c2008-10-09 15:33:58 +02002807 /* Disable specific features based on DMI strings */
2808 board_vendor = dmi_get_system_info(DMI_BOARD_VENDOR);
2809 board_name = dmi_get_system_info(DMI_BOARD_NAME);
2810 if (board_vendor && board_name) {
Guenter Roeckc9620242015-04-04 09:05:57 -07002811 if (strcmp(board_vendor, "nVIDIA") == 0 &&
2812 strcmp(board_name, "FN68PT") == 0) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002813 /*
2814 * On the Shuttle SN68PT, FAN_CTL2 is apparently not
2815 * connected to a fan, but to something else. One user
2816 * has reported instant system power-off when changing
2817 * the PWM2 duty cycle, so we disable it.
2818 * I use the board name string as the trigger in case
2819 * the same board is ever used in other systems.
2820 */
Joe Perchesa8ca1032011-01-12 21:55:10 +01002821 pr_info("Disabling pwm2 due to hardware constraints\n");
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002822 sio_data->skip_pwm = BIT(1);
Jean Delvare98dd22c2008-10-09 15:33:58 +02002823 }
2824 }
2825
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826exit:
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002827 superio_exit(sioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 return err;
2829}
2830
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002831/* Called when we have found a new IT87. */
2832static void it87_init_device(struct platform_device *pdev)
2833{
2834 struct it87_sio_data *sio_data = dev_get_platdata(&pdev->dev);
2835 struct it87_data *data = platform_get_drvdata(pdev);
2836 int tmp, i;
2837 u8 mask;
2838
2839 /*
2840 * For each PWM channel:
2841 * - If it is in automatic mode, setting to manual mode should set
2842 * the fan to full speed by default.
2843 * - If it is in manual mode, we need a mapping to temperature
2844 * channels to use when later setting to automatic mode later.
2845 * Use a 1:1 mapping by default (we are clueless.)
2846 * In both cases, the value can (and should) be changed by the user
2847 * prior to switching to a different mode.
2848 * Note that this is no longer needed for the IT8721F and later, as
2849 * these have separate registers for the temperature mapping and the
2850 * manual duty cycle.
2851 */
Guenter Roeck23100482015-04-02 08:23:45 -07002852 for (i = 0; i < NUM_AUTO_PWM; i++) {
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002853 data->pwm_temp_map[i] = i;
2854 data->pwm_duty[i] = 0x7f; /* Full speed */
2855 data->auto_pwm[i][3] = 0x7f; /* Full speed, hard-coded */
2856 }
2857
2858 /*
2859 * Some chips seem to have default value 0xff for all limit
2860 * registers. For low voltage limits it makes no sense and triggers
2861 * alarms, so change to 0 instead. For high temperature limits, it
2862 * means -1 degree C, which surprisingly doesn't trigger an alarm,
2863 * but is still confusing, so change to 127 degrees C.
2864 */
Guenter Roeck23100482015-04-02 08:23:45 -07002865 for (i = 0; i < NUM_VIN_LIMIT; i++) {
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002866 tmp = it87_read_value(data, IT87_REG_VIN_MIN(i));
2867 if (tmp == 0xff)
2868 it87_write_value(data, IT87_REG_VIN_MIN(i), 0);
2869 }
Guenter Roeck23100482015-04-02 08:23:45 -07002870 for (i = 0; i < NUM_TEMP_LIMIT; i++) {
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002871 tmp = it87_read_value(data, IT87_REG_TEMP_HIGH(i));
2872 if (tmp == 0xff)
2873 it87_write_value(data, IT87_REG_TEMP_HIGH(i), 127);
2874 }
2875
2876 /*
2877 * Temperature channels are not forcibly enabled, as they can be
2878 * set to two different sensor types and we can't guess which one
2879 * is correct for a given system. These channels can be enabled at
2880 * run-time through the temp{1-3}_type sysfs accessors if needed.
2881 */
2882
2883 /* Check if voltage monitors are reset manually or by some reason */
2884 tmp = it87_read_value(data, IT87_REG_VIN_ENABLE);
2885 if ((tmp & 0xff) == 0) {
2886 /* Enable all voltage monitors */
2887 it87_write_value(data, IT87_REG_VIN_ENABLE, 0xff);
2888 }
2889
2890 /* Check if tachometers are reset manually or by some reason */
2891 mask = 0x70 & ~(sio_data->skip_fan << 4);
2892 data->fan_main_ctrl = it87_read_value(data, IT87_REG_FAN_MAIN_CTRL);
2893 if ((data->fan_main_ctrl & mask) == 0) {
2894 /* Enable all fan tachometers */
2895 data->fan_main_ctrl |= mask;
2896 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
2897 data->fan_main_ctrl);
2898 }
2899 data->has_fan = (data->fan_main_ctrl >> 4) & 0x07;
2900
2901 tmp = it87_read_value(data, IT87_REG_FAN_16BIT);
2902
2903 /* Set tachometers to 16-bit mode if needed */
2904 if (has_fan16_config(data)) {
2905 if (~tmp & 0x07 & data->has_fan) {
2906 dev_dbg(&pdev->dev,
2907 "Setting fan1-3 to 16-bit mode\n");
2908 it87_write_value(data, IT87_REG_FAN_16BIT,
2909 tmp | 0x07);
2910 }
2911 }
2912
2913 /* Check for additional fans */
2914 if (has_five_fans(data)) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002915 if (tmp & BIT(4))
2916 data->has_fan |= BIT(3); /* fan4 enabled */
2917 if (tmp & BIT(5))
2918 data->has_fan |= BIT(4); /* fan5 enabled */
2919 if (has_six_fans(data) && (tmp & BIT(2)))
2920 data->has_fan |= BIT(5); /* fan6 enabled */
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002921 }
2922
2923 /* Fan input pins may be used for alternative functions */
2924 data->has_fan &= ~sio_data->skip_fan;
2925
2926 /* Check if pwm5, pwm6 are enabled */
2927 if (has_six_pwm(data)) {
2928 /* The following code may be IT8620E specific */
2929 tmp = it87_read_value(data, IT87_REG_FAN_DIV);
2930 if ((tmp & 0xc0) == 0xc0)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002931 sio_data->skip_pwm |= BIT(4);
2932 if (!(tmp & BIT(3)))
2933 sio_data->skip_pwm |= BIT(5);
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002934 }
2935
2936 /* Start monitoring */
2937 it87_write_value(data, IT87_REG_CONFIG,
2938 (it87_read_value(data, IT87_REG_CONFIG) & 0x3e)
2939 | (update_vbat ? 0x41 : 0x01));
2940}
2941
2942/* Return 1 if and only if the PWM interface is safe to use */
2943static int it87_check_pwm(struct device *dev)
2944{
2945 struct it87_data *data = dev_get_drvdata(dev);
2946 /*
2947 * Some BIOSes fail to correctly configure the IT87 fans. All fans off
2948 * and polarity set to active low is sign that this is the case so we
2949 * disable pwm control to protect the user.
2950 */
2951 int tmp = it87_read_value(data, IT87_REG_FAN_CTL);
2952
2953 if ((tmp & 0x87) == 0) {
2954 if (fix_pwm_polarity) {
2955 /*
2956 * The user asks us to attempt a chip reconfiguration.
2957 * This means switching to active high polarity and
2958 * inverting all fan speed values.
2959 */
2960 int i;
2961 u8 pwm[3];
2962
Guenter Roeck23100482015-04-02 08:23:45 -07002963 for (i = 0; i < ARRAY_SIZE(pwm); i++)
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002964 pwm[i] = it87_read_value(data,
2965 IT87_REG_PWM[i]);
2966
2967 /*
2968 * If any fan is in automatic pwm mode, the polarity
2969 * might be correct, as suspicious as it seems, so we
2970 * better don't change anything (but still disable the
2971 * PWM interface).
2972 */
2973 if (!((pwm[0] | pwm[1] | pwm[2]) & 0x80)) {
2974 dev_info(dev,
2975 "Reconfiguring PWM to active high polarity\n");
2976 it87_write_value(data, IT87_REG_FAN_CTL,
2977 tmp | 0x87);
2978 for (i = 0; i < 3; i++)
2979 it87_write_value(data,
2980 IT87_REG_PWM[i],
2981 0x7f & ~pwm[i]);
2982 return 1;
2983 }
2984
2985 dev_info(dev,
2986 "PWM configuration is too broken to be fixed\n");
2987 }
2988
2989 dev_info(dev,
2990 "Detected broken BIOS defaults, disabling PWM interface\n");
2991 return 0;
2992 } else if (fix_pwm_polarity) {
2993 dev_info(dev,
2994 "PWM configuration looks sane, won't touch\n");
2995 }
2996
2997 return 1;
2998}
2999
Bill Pemberton6c931ae2012-11-19 13:22:35 -05003000static int it87_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 struct it87_data *data;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003003 struct resource *res;
3004 struct device *dev = &pdev->dev;
Jingoo Hana8b3a3a2013-07-30 17:13:06 +09003005 struct it87_sio_data *sio_data = dev_get_platdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 int enable_pwm_interface;
Guenter Roeck8638d0a2015-03-30 11:13:49 -07003007 struct device *hwmon_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003009 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
Guenter Roeck62a1d052012-03-24 21:54:41 -07003010 if (!devm_request_region(&pdev->dev, res->start, IT87_EC_EXTENT,
3011 DRVNAME)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003012 dev_err(dev, "Failed to request region 0x%lx-0x%lx\n",
3013 (unsigned long)res->start,
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05003014 (unsigned long)(res->start + IT87_EC_EXTENT - 1));
Guenter Roeck62a1d052012-03-24 21:54:41 -07003015 return -EBUSY;
Jean Delvare8e9afcb2006-12-12 18:18:28 +01003016 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017
Guenter Roeck62a1d052012-03-24 21:54:41 -07003018 data = devm_kzalloc(&pdev->dev, sizeof(struct it87_data), GFP_KERNEL);
3019 if (!data)
3020 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003022 data->addr = res->start;
3023 data->type = sio_data->type;
Guenter Roeck483db432012-12-19 22:17:02 +01003024 data->features = it87_devices[sio_data->type].features;
Guenter Roeck5d8d2f22012-12-19 22:17:02 +01003025 data->peci_mask = it87_devices[sio_data->type].peci_mask;
Guenter Roeck19529782012-12-19 22:17:02 +01003026 data->old_peci_mask = it87_devices[sio_data->type].old_peci_mask;
Guenter Roeck483db432012-12-19 22:17:02 +01003027 /*
3028 * IT8705F Datasheet 0.4.1, 3h == Version G.
3029 * IT8712F Datasheet 0.9.1, section 8.3.5 indicates 8h == Version J.
3030 * These are the first revisions with 16-bit tachometer support.
3031 */
3032 switch (data->type) {
3033 case it87:
3034 if (sio_data->revision >= 0x03) {
3035 data->features &= ~FEAT_OLD_AUTOPWM;
Guenter Roeck9faf28c2015-02-12 07:11:38 -08003036 data->features |= FEAT_FAN16_CONFIG | FEAT_16BIT_FANS;
Guenter Roeck483db432012-12-19 22:17:02 +01003037 }
3038 break;
3039 case it8712:
3040 if (sio_data->revision >= 0x08) {
3041 data->features &= ~FEAT_OLD_AUTOPWM;
Guenter Roeck9faf28c2015-02-12 07:11:38 -08003042 data->features |= FEAT_FAN16_CONFIG | FEAT_16BIT_FANS |
3043 FEAT_FIVE_FANS;
Guenter Roeck483db432012-12-19 22:17:02 +01003044 }
3045 break;
3046 default:
3047 break;
3048 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049
3050 /* Now, we do the remaining detection. */
Guenter Roeckc9620242015-04-04 09:05:57 -07003051 if ((it87_read_value(data, IT87_REG_CONFIG) & 0x80) ||
3052 it87_read_value(data, IT87_REG_CHIPID) != 0x90)
Guenter Roeck62a1d052012-03-24 21:54:41 -07003053 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003055 platform_set_drvdata(pdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056
Ingo Molnar9a61bf62006-01-18 23:19:26 +01003057 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 /* Check PWM configuration */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003060 enable_pwm_interface = it87_check_pwm(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061
Jean Delvare44c1bcd2010-10-28 20:31:51 +02003062 /* Starting with IT8721F, we handle scaling of internal voltages */
Jean Delvare16b5dda2012-01-16 22:51:48 +01003063 if (has_12mv_adc(data)) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003064 if (sio_data->internal & BIT(0))
3065 data->in_scaled |= BIT(3); /* in3 is AVCC */
3066 if (sio_data->internal & BIT(1))
3067 data->in_scaled |= BIT(7); /* in7 is VSB */
3068 if (sio_data->internal & BIT(2))
3069 data->in_scaled |= BIT(8); /* in8 is Vbat */
3070 if (sio_data->internal & BIT(3))
3071 data->in_scaled |= BIT(9); /* in9 is AVCC */
Guenter Roeck7bc32d22015-01-17 14:10:24 -08003072 } else if (sio_data->type == it8781 || sio_data->type == it8782 ||
3073 sio_data->type == it8783) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003074 if (sio_data->internal & BIT(0))
3075 data->in_scaled |= BIT(3); /* in3 is VCC5V */
3076 if (sio_data->internal & BIT(1))
3077 data->in_scaled |= BIT(7); /* in7 is VCCH5V */
Jean Delvare44c1bcd2010-10-28 20:31:51 +02003078 }
3079
Guenter Roeck4573acb2012-03-26 16:17:41 -07003080 data->has_temp = 0x07;
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003081 if (sio_data->skip_temp & BIT(2)) {
Guenter Roeckc9620242015-04-04 09:05:57 -07003082 if (sio_data->type == it8782 &&
3083 !(it87_read_value(data, IT87_REG_TEMP_EXTRA) & 0x80))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003084 data->has_temp &= ~BIT(2);
Guenter Roeck4573acb2012-03-26 16:17:41 -07003085 }
3086
Guenter Roeckd3766842013-03-30 15:47:21 -07003087 data->in_internal = sio_data->internal;
Guenter Roeck52929712013-03-30 14:00:08 -07003088 data->has_in = 0x3ff & ~sio_data->skip_in;
3089
Guenter Roeckcc18da72015-04-01 10:03:01 -07003090 if (has_six_temp(data)) {
3091 u8 reg = it87_read_value(data, IT87_REG_TEMP456_ENABLE);
3092
Guenter Roeckf838aa22015-04-01 20:09:36 -07003093 /* Check for additional temperature sensors */
Guenter Roeckcc18da72015-04-01 10:03:01 -07003094 if ((reg & 0x03) >= 0x02)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003095 data->has_temp |= BIT(3);
Guenter Roeckcc18da72015-04-01 10:03:01 -07003096 if (((reg >> 2) & 0x03) >= 0x02)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003097 data->has_temp |= BIT(4);
Guenter Roeckcc18da72015-04-01 10:03:01 -07003098 if (((reg >> 4) & 0x03) >= 0x02)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003099 data->has_temp |= BIT(5);
Guenter Roeckf838aa22015-04-01 20:09:36 -07003100
3101 /* Check for additional voltage sensors */
3102 if ((reg & 0x03) == 0x01)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003103 data->has_in |= BIT(10);
Guenter Roeckf838aa22015-04-01 20:09:36 -07003104 if (((reg >> 2) & 0x03) == 0x01)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003105 data->has_in |= BIT(11);
Guenter Roeckf838aa22015-04-01 20:09:36 -07003106 if (((reg >> 4) & 0x03) == 0x01)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003107 data->has_in |= BIT(12);
Guenter Roeckcc18da72015-04-01 10:03:01 -07003108 }
3109
Guenter Roeck52929712013-03-30 14:00:08 -07003110 data->has_beep = !!sio_data->beep_pin;
3111
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 /* Initialize the IT87 chip */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003113 it87_init_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114
Guenter Roeckd3766842013-03-30 15:47:21 -07003115 if (!sio_data->skip_vid) {
3116 data->has_vid = true;
3117 data->vrm = vid_which_vrm();
3118 /* VID reading from Super-I/O config space if available */
3119 data->vid = sio_data->vid_value;
3120 }
3121
Guenter Roeck8638d0a2015-03-30 11:13:49 -07003122 /* Prepare for sysfs hooks */
3123 data->groups[0] = &it87_group;
3124 data->groups[1] = &it87_group_in;
3125 data->groups[2] = &it87_group_temp;
3126 data->groups[3] = &it87_group_fan;
Jean Delvare17d648b2006-08-28 14:23:46 +02003127
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 if (enable_pwm_interface) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003129 data->has_pwm = BIT(ARRAY_SIZE(IT87_REG_PWM)) - 1;
Guenter Roeck5c391262013-03-30 15:02:12 -07003130 data->has_pwm &= ~sio_data->skip_pwm;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01003131
Guenter Roeck8638d0a2015-03-30 11:13:49 -07003132 data->groups[4] = &it87_group_pwm;
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07003133 if (has_old_autopwm(data) || has_newer_autopwm(data))
Guenter Roeck8638d0a2015-03-30 11:13:49 -07003134 data->groups[5] = &it87_group_auto_pwm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 }
3136
Guenter Roeck8638d0a2015-03-30 11:13:49 -07003137 hwmon_dev = devm_hwmon_device_register_with_groups(dev,
3138 it87_devices[sio_data->type].name,
3139 data, data->groups);
3140 return PTR_ERR_OR_ZERO(hwmon_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141}
3142
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07003143static struct platform_driver it87_driver = {
3144 .driver = {
3145 .name = DRVNAME,
3146 },
3147 .probe = it87_probe,
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07003148};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149
Guenter Roecke84bd952015-03-28 08:24:29 -07003150static int __init it87_device_add(int index, unsigned short address,
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003151 const struct it87_sio_data *sio_data)
3152{
Guenter Roeck8e50e3c2015-03-28 07:49:14 -07003153 struct platform_device *pdev;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003154 struct resource res = {
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05003155 .start = address + IT87_EC_OFFSET,
3156 .end = address + IT87_EC_OFFSET + IT87_EC_EXTENT - 1,
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003157 .name = DRVNAME,
3158 .flags = IORESOURCE_IO,
3159 };
3160 int err;
3161
Jean Delvareb9acb642009-01-07 16:37:35 +01003162 err = acpi_check_resource_conflict(&res);
3163 if (err)
Guenter Roeck5cae84a52015-03-28 07:44:59 -07003164 return err;
Jean Delvareb9acb642009-01-07 16:37:35 +01003165
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003166 pdev = platform_device_alloc(DRVNAME, address);
Guenter Roeck5cae84a52015-03-28 07:44:59 -07003167 if (!pdev)
3168 return -ENOMEM;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003169
3170 err = platform_device_add_resources(pdev, &res, 1);
3171 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01003172 pr_err("Device resource addition failed (%d)\n", err);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003173 goto exit_device_put;
3174 }
3175
3176 err = platform_device_add_data(pdev, sio_data,
3177 sizeof(struct it87_sio_data));
3178 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01003179 pr_err("Platform data allocation failed\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003180 goto exit_device_put;
3181 }
3182
3183 err = platform_device_add(pdev);
3184 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01003185 pr_err("Device addition failed (%d)\n", err);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003186 goto exit_device_put;
3187 }
3188
Guenter Roecke84bd952015-03-28 08:24:29 -07003189 it87_pdev[index] = pdev;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003190 return 0;
3191
3192exit_device_put:
3193 platform_device_put(pdev);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003194 return err;
3195}
3196
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197static int __init sm_it87_init(void)
3198{
Guenter Roecke84bd952015-03-28 08:24:29 -07003199 int sioaddr[2] = { REG_2E, REG_4E };
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003200 struct it87_sio_data sio_data;
Guenter Roeck83583782017-03-12 06:18:58 -07003201 unsigned short isa_address[2];
Guenter Roecke84bd952015-03-28 08:24:29 -07003202 bool found = false;
3203 int i, err;
Jean Delvarefde09502005-07-19 23:51:07 +02003204
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003205 err = platform_driver_register(&it87_driver);
3206 if (err)
3207 return err;
3208
Guenter Roecke84bd952015-03-28 08:24:29 -07003209 for (i = 0; i < ARRAY_SIZE(sioaddr); i++) {
3210 memset(&sio_data, 0, sizeof(struct it87_sio_data));
Guenter Roeck83583782017-03-12 06:18:58 -07003211 isa_address[i] = 0;
3212 err = it87_find(sioaddr[i], &isa_address[i], &sio_data);
3213 if (err || isa_address[i] == 0)
Guenter Roecke84bd952015-03-28 08:24:29 -07003214 continue;
Guenter Roeck83583782017-03-12 06:18:58 -07003215 /*
3216 * Don't register second chip if its ISA address matches
3217 * the first chip's ISA address.
3218 */
3219 if (i && isa_address[i] == isa_address[0])
3220 break;
Guenter Roecke84bd952015-03-28 08:24:29 -07003221
Guenter Roeck83583782017-03-12 06:18:58 -07003222 err = it87_device_add(i, isa_address[i], &sio_data);
Guenter Roecke84bd952015-03-28 08:24:29 -07003223 if (err)
3224 goto exit_dev_unregister;
Guenter Roeck83583782017-03-12 06:18:58 -07003225
Guenter Roecke84bd952015-03-28 08:24:29 -07003226 found = true;
Guenter Roeck83583782017-03-12 06:18:58 -07003227
3228 /*
3229 * IT8705F may respond on both SIO addresses.
3230 * Stop probing after finding one.
3231 */
3232 if (sio_data.type == it87)
3233 break;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003234 }
3235
Guenter Roecke84bd952015-03-28 08:24:29 -07003236 if (!found) {
3237 err = -ENODEV;
3238 goto exit_unregister;
3239 }
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003240 return 0;
Guenter Roecke84bd952015-03-28 08:24:29 -07003241
3242exit_dev_unregister:
3243 /* NULL check handled by platform_device_unregister */
3244 platform_device_unregister(it87_pdev[0]);
3245exit_unregister:
3246 platform_driver_unregister(&it87_driver);
3247 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248}
3249
3250static void __exit sm_it87_exit(void)
3251{
Guenter Roecke84bd952015-03-28 08:24:29 -07003252 /* NULL check handled by platform_device_unregister */
3253 platform_device_unregister(it87_pdev[1]);
3254 platform_device_unregister(it87_pdev[0]);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003255 platform_driver_unregister(&it87_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256}
3257
Jean Delvare7c81c60f2014-01-29 20:40:08 +01003258MODULE_AUTHOR("Chris Gauthron, Jean Delvare <jdelvare@suse.de>");
Jean Delvare44c1bcd2010-10-28 20:31:51 +02003259MODULE_DESCRIPTION("IT8705F/IT871xF/IT872xF hardware monitoring driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260module_param(update_vbat, bool, 0);
3261MODULE_PARM_DESC(update_vbat, "Update vbat if set else return powerup value");
3262module_param(fix_pwm_polarity, bool, 0);
Jean Delvare5f2dc792010-03-05 22:17:18 +01003263MODULE_PARM_DESC(fix_pwm_polarity,
3264 "Force PWM polarity to active high (DANGEROUS)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265MODULE_LICENSE("GPL");
3266
3267module_init(sm_it87_init);
3268module_exit(sm_it87_exit);