blob: f8499cb95fec851139c4d680e03e80378ee828aa [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 Delvare7c81c602014-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 Roeck32dd7c42015-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 Roeck32dd7c42015-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 Roeck32dd7c42015-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 Roeck32dd7c42015-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 Roeck32dd7c42015-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 {
Maciej S. Szmigiero384548e2017-08-09 17:15:46 +0200500 int sioaddr;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200501 enum chips type;
502 /* Values read from Super-I/O config space */
Andrew Paprocki04751692008-08-06 22:41:06 +0200503 u8 revision;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200504 u8 vid_value;
Jean Delvared9b327c2010-03-05 22:17:17 +0100505 u8 beep_pin;
Jean Delvare738e5e02010-08-14 21:08:50 +0200506 u8 internal; /* Internal sensors can be labeled */
Maciej S. Szmigiero384548e2017-08-09 17:15:46 +0200507 bool need_in7_reroute;
Jean Delvare591ec652009-12-09 20:35:48 +0100508 /* Features skipped based on config or DMI */
Guenter Roeck9172b5d2012-03-24 21:49:54 -0700509 u16 skip_in;
Jean Delvare895ff262009-12-09 20:35:47 +0100510 u8 skip_vid;
Jean Delvare591ec652009-12-09 20:35:48 +0100511 u8 skip_fan;
Jean Delvare98dd22c2008-10-09 15:33:58 +0200512 u8 skip_pwm;
Guenter Roeck4573acb2012-03-26 16:17:41 -0700513 u8 skip_temp;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200514};
515
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800516/*
517 * For each registered chip, we need to keep some data in memory.
518 * The structure is dynamically allocated.
519 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520struct it87_data {
Guenter Roeck8638d0a2015-03-30 11:13:49 -0700521 const struct attribute_group *groups[7];
Maciej S. Szmigiero384548e2017-08-09 17:15:46 +0200522 int sioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 enum chips type;
Guenter Roeckaa8b1872016-08-09 22:09:19 -0700524 u32 features;
Guenter Roeck19529782012-12-19 22:17:02 +0100525 u8 peci_mask;
526 u8 old_peci_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200528 unsigned short addr;
529 const char *name;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100530 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 char valid; /* !=0 if following fields are valid */
532 unsigned long last_updated; /* In jiffies */
533
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200534 u16 in_scaled; /* Internal voltage sensors are scaled */
Guenter Roeckd3766842013-03-30 15:47:21 -0700535 u16 in_internal; /* Bitfield, internal sensors (for labels) */
Guenter Roeck52929712013-03-30 14:00:08 -0700536 u16 has_in; /* Bitfield, voltage sensors enabled */
Guenter Roeck23100482015-04-02 08:23:45 -0700537 u8 in[NUM_VIN][3]; /* [nr][0]=in, [1]=min, [2]=max */
Maciej S. Szmigiero384548e2017-08-09 17:15:46 +0200538 bool need_in7_reroute;
Jean Delvare9060f8b2006-08-28 14:24:17 +0200539 u8 has_fan; /* Bitfield, fans enabled */
Guenter Roeck23100482015-04-02 08:23:45 -0700540 u16 fan[NUM_FAN][2]; /* Register values, [nr][0]=fan, [1]=min */
Guenter Roeck4573acb2012-03-26 16:17:41 -0700541 u8 has_temp; /* Bitfield, temp sensors enabled */
Guenter Roeck23100482015-04-02 08:23:45 -0700542 s8 temp[NUM_TEMP][4]; /* [nr][0]=temp, [1]=min, [2]=max, [3]=offset */
Guenter Roeck19529782012-12-19 22:17:02 +0100543 u8 sensor; /* Register value (IT87_REG_TEMP_ENABLE) */
544 u8 extra; /* Register value (IT87_REG_TEMP_EXTRA) */
Guenter Roeck23100482015-04-02 08:23:45 -0700545 u8 fan_div[NUM_FAN_DIV];/* Register encoding, shifted right */
Guenter Roeckd3766842013-03-30 15:47:21 -0700546 bool has_vid; /* True if VID supported */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 u8 vid; /* Register encoding, combined */
Jean Delvarea7be58a2005-12-18 16:40:14 +0100548 u8 vrm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 u32 alarms; /* Register encoding, combined */
Guenter Roeck52929712013-03-30 14:00:08 -0700550 bool has_beep; /* true if beep supported */
Jean Delvared9b327c2010-03-05 22:17:17 +0100551 u8 beeps; /* Register encoding */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 u8 fan_main_ctrl; /* Register value */
Jean Delvaref8d0c192007-02-14 21:15:02 +0100553 u8 fan_ctl; /* Register value */
Jean Delvareb99883d2010-03-05 22:17:15 +0100554
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800555 /*
556 * The following 3 arrays correspond to the same registers up to
Jean Delvare6229cdb2010-12-08 16:27:22 +0100557 * the IT8720F. The meaning of bits 6-0 depends on the value of bit
558 * 7, and we want to preserve settings on mode changes, so we have
559 * to track all values separately.
560 * Starting with the IT8721F, the manual PWM duty cycles are stored
561 * in separate registers (8-bit values), so the separate tracking
562 * is no longer needed, but it is still done to keep the driver
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800563 * simple.
564 */
Guenter Roeck5c391262013-03-30 15:02:12 -0700565 u8 has_pwm; /* Bitfield, pwm control enabled */
Guenter Roeck23100482015-04-02 08:23:45 -0700566 u8 pwm_ctrl[NUM_PWM]; /* Register value */
567 u8 pwm_duty[NUM_PWM]; /* Manual PWM value set by user */
568 u8 pwm_temp_map[NUM_PWM];/* PWM to temp. chan. mapping (bits 1-0) */
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100569
570 /* Automatic fan speed control registers */
Guenter Roeck23100482015-04-02 08:23:45 -0700571 u8 auto_pwm[NUM_AUTO_PWM][4]; /* [nr][3] is hard-coded */
572 s8 auto_temp[NUM_AUTO_PWM][5]; /* [nr][0] is point1_temp_hyst */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573};
574
Guenter Roeck0531d982012-03-02 11:46:44 -0800575static int adc_lsb(const struct it87_data *data, int nr)
576{
Justin Maggardead80802015-08-05 12:53:08 -0700577 int lsb;
578
579 if (has_12mv_adc(data))
580 lsb = 120;
581 else if (has_10_9mv_adc(data))
582 lsb = 109;
583 else
584 lsb = 160;
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700585 if (data->in_scaled & BIT(nr))
Guenter Roeck0531d982012-03-02 11:46:44 -0800586 lsb <<= 1;
587 return lsb;
588}
589
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200590static u8 in_to_reg(const struct it87_data *data, int nr, long val)
591{
Justin Maggardead80802015-08-05 12:53:08 -0700592 val = DIV_ROUND_CLOSEST(val * 10, adc_lsb(data, nr));
Guenter Roeck2a844c12013-01-09 08:09:34 -0800593 return clamp_val(val, 0, 255);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200594}
595
596static int in_from_reg(const struct it87_data *data, int nr, int val)
597{
Justin Maggardead80802015-08-05 12:53:08 -0700598 return DIV_ROUND_CLOSEST(val * adc_lsb(data, nr), 10);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200599}
Jean Delvare0df6454d2010-10-28 20:31:51 +0200600
601static inline u8 FAN_TO_REG(long rpm, int div)
602{
603 if (rpm == 0)
604 return 255;
Guenter Roeck2a844c12013-01-09 08:09:34 -0800605 rpm = clamp_val(rpm, 1, 1000000);
606 return clamp_val((1350000 + rpm * div / 2) / (rpm * div), 1, 254);
Jean Delvare0df6454d2010-10-28 20:31:51 +0200607}
608
609static inline u16 FAN16_TO_REG(long rpm)
610{
611 if (rpm == 0)
612 return 0xffff;
Guenter Roeck2a844c12013-01-09 08:09:34 -0800613 return clamp_val((1350000 + rpm) / (rpm * 2), 1, 0xfffe);
Jean Delvare0df6454d2010-10-28 20:31:51 +0200614}
615
616#define FAN_FROM_REG(val, div) ((val) == 0 ? -1 : (val) == 255 ? 0 : \
617 1350000 / ((val) * (div)))
618/* The divider is fixed to 2 in 16-bit mode */
619#define FAN16_FROM_REG(val) ((val) == 0 ? -1 : (val) == 0xffff ? 0 : \
620 1350000 / ((val) * 2))
621
Guenter Roeck2a844c12013-01-09 08:09:34 -0800622#define TEMP_TO_REG(val) (clamp_val(((val) < 0 ? (((val) - 500) / 1000) : \
623 ((val) + 500) / 1000), -128, 127))
Jean Delvare0df6454d2010-10-28 20:31:51 +0200624#define TEMP_FROM_REG(val) ((val) * 1000)
625
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200626static u8 pwm_to_reg(const struct it87_data *data, long val)
627{
Jean Delvare16b5dda2012-01-16 22:51:48 +0100628 if (has_newer_autopwm(data))
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200629 return val;
630 else
631 return val >> 1;
632}
633
634static int pwm_from_reg(const struct it87_data *data, u8 reg)
635{
Jean Delvare16b5dda2012-01-16 22:51:48 +0100636 if (has_newer_autopwm(data))
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200637 return reg;
638 else
639 return (reg & 0x7f) << 1;
640}
641
Jean Delvare0df6454d2010-10-28 20:31:51 +0200642static int DIV_TO_REG(int val)
643{
644 int answer = 0;
Guenter Roeckc9620242015-04-04 09:05:57 -0700645
Jean Delvare0df6454d2010-10-28 20:31:51 +0200646 while (answer < 7 && (val >>= 1))
647 answer++;
648 return answer;
649}
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700650
651#define DIV_FROM_REG(val) BIT(val)
Jean Delvare0df6454d2010-10-28 20:31:51 +0200652
Guenter Roeckf56c9c02015-03-26 20:01:24 -0700653/*
654 * PWM base frequencies. The frequency has to be divided by either 128 or 256,
655 * depending on the chip type, to calculate the actual PWM frequency.
656 *
657 * Some of the chip datasheets suggest a base frequency of 51 kHz instead
658 * of 750 kHz for the slowest base frequency, resulting in a PWM frequency
659 * of 200 Hz. Sometimes both PWM frequency select registers are affected,
660 * sometimes just one. It is unknown if this is a datasheet error or real,
661 * so this is ignored for now.
662 */
Jean Delvare0df6454d2010-10-28 20:31:51 +0200663static const unsigned int pwm_freq[8] = {
Guenter Roeckf56c9c02015-03-26 20:01:24 -0700664 48000000,
665 24000000,
666 12000000,
667 8000000,
668 6000000,
669 3000000,
670 1500000,
671 750000,
Jean Delvare0df6454d2010-10-28 20:31:51 +0200672};
673
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700674/*
675 * Must be called with data->update_lock held, except during initialization.
676 * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
677 * would slow down the IT87 access and should not be necessary.
678 */
679static int it87_read_value(struct it87_data *data, u8 reg)
680{
681 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
682 return inb_p(data->addr + IT87_DATA_REG_OFFSET);
683}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700685/*
686 * Must be called with data->update_lock held, except during initialization.
687 * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
688 * would slow down the IT87 access and should not be necessary.
689 */
690static void it87_write_value(struct it87_data *data, u8 reg, u8 value)
691{
692 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
693 outb_p(value, data->addr + IT87_DATA_REG_OFFSET);
694}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700696static void it87_update_pwm_ctrl(struct it87_data *data, int nr)
697{
698 data->pwm_ctrl[nr] = it87_read_value(data, IT87_REG_PWM[nr]);
699 if (has_newer_autopwm(data)) {
Guenter Roeck0624d862015-04-06 21:04:18 -0700700 data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03;
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700701 data->pwm_duty[nr] = it87_read_value(data,
702 IT87_REG_PWM_DUTY[nr]);
703 } else {
704 if (data->pwm_ctrl[nr] & 0x80) /* Automatic mode */
705 data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03;
706 else /* Manual mode */
707 data->pwm_duty[nr] = data->pwm_ctrl[nr] & 0x7f;
708 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700710 if (has_old_autopwm(data)) {
711 int i;
712
713 for (i = 0; i < 5 ; i++)
714 data->auto_temp[nr][i] = it87_read_value(data,
715 IT87_REG_AUTO_TEMP(nr, i));
716 for (i = 0; i < 3 ; i++)
717 data->auto_pwm[nr][i] = it87_read_value(data,
718 IT87_REG_AUTO_PWM(nr, i));
Guenter Roeck2cbb9c32015-04-05 11:53:29 -0700719 } else if (has_newer_autopwm(data)) {
720 int i;
721
722 /*
723 * 0: temperature hysteresis (base + 5)
724 * 1: fan off temperature (base + 0)
725 * 2: fan start temperature (base + 1)
726 * 3: fan max temperature (base + 2)
727 */
728 data->auto_temp[nr][0] =
729 it87_read_value(data, IT87_REG_AUTO_TEMP(nr, 5));
730
731 for (i = 0; i < 3 ; i++)
732 data->auto_temp[nr][i + 1] =
733 it87_read_value(data,
734 IT87_REG_AUTO_TEMP(nr, i));
735 /*
736 * 0: start pwm value (base + 3)
737 * 1: pwm slope (base + 4, 1/8th pwm)
738 */
739 data->auto_pwm[nr][0] =
740 it87_read_value(data, IT87_REG_AUTO_TEMP(nr, 3));
741 data->auto_pwm[nr][1] =
742 it87_read_value(data, IT87_REG_AUTO_TEMP(nr, 4));
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700743 }
744}
745
746static struct it87_data *it87_update_device(struct device *dev)
747{
748 struct it87_data *data = dev_get_drvdata(dev);
749 int i;
750
751 mutex_lock(&data->update_lock);
752
Guenter Roeckc9620242015-04-04 09:05:57 -0700753 if (time_after(jiffies, data->last_updated + HZ + HZ / 2) ||
754 !data->valid) {
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700755 if (update_vbat) {
756 /*
757 * Cleared after each update, so reenable. Value
758 * returned by this read will be previous value
759 */
760 it87_write_value(data, IT87_REG_CONFIG,
761 it87_read_value(data, IT87_REG_CONFIG) | 0x40);
762 }
Guenter Roeck23100482015-04-02 08:23:45 -0700763 for (i = 0; i < NUM_VIN; i++) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700764 if (!(data->has_in & BIT(i)))
Guenter Roeck559313c2015-04-01 10:15:38 -0700765 continue;
766
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700767 data->in[i][0] =
Guenter Roeck559313c2015-04-01 10:15:38 -0700768 it87_read_value(data, IT87_REG_VIN[i]);
769
770 /* VBAT and AVCC don't have limit registers */
Guenter Roeck23100482015-04-02 08:23:45 -0700771 if (i >= NUM_VIN_LIMIT)
Guenter Roeck559313c2015-04-01 10:15:38 -0700772 continue;
773
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700774 data->in[i][1] =
775 it87_read_value(data, IT87_REG_VIN_MIN(i));
776 data->in[i][2] =
777 it87_read_value(data, IT87_REG_VIN_MAX(i));
778 }
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700779
Guenter Roeck23100482015-04-02 08:23:45 -0700780 for (i = 0; i < NUM_FAN; i++) {
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700781 /* Skip disabled fans */
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700782 if (!(data->has_fan & BIT(i)))
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700783 continue;
784
785 data->fan[i][1] =
786 it87_read_value(data, IT87_REG_FAN_MIN[i]);
787 data->fan[i][0] = it87_read_value(data,
788 IT87_REG_FAN[i]);
789 /* Add high byte if in 16-bit mode */
790 if (has_16bit_fans(data)) {
791 data->fan[i][0] |= it87_read_value(data,
792 IT87_REG_FANX[i]) << 8;
793 data->fan[i][1] |= it87_read_value(data,
794 IT87_REG_FANX_MIN[i]) << 8;
795 }
796 }
Guenter Roeck23100482015-04-02 08:23:45 -0700797 for (i = 0; i < NUM_TEMP; i++) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700798 if (!(data->has_temp & BIT(i)))
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700799 continue;
800 data->temp[i][0] =
801 it87_read_value(data, IT87_REG_TEMP(i));
Guenter Roeckcc18da72015-04-01 10:03:01 -0700802
Guenter Roeck23100482015-04-02 08:23:45 -0700803 if (has_temp_offset(data) && i < NUM_TEMP_OFFSET)
804 data->temp[i][3] =
805 it87_read_value(data,
806 IT87_REG_TEMP_OFFSET[i]);
807
808 if (i >= NUM_TEMP_LIMIT)
Guenter Roeckcc18da72015-04-01 10:03:01 -0700809 continue;
810
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700811 data->temp[i][1] =
812 it87_read_value(data, IT87_REG_TEMP_LOW(i));
813 data->temp[i][2] =
814 it87_read_value(data, IT87_REG_TEMP_HIGH(i));
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700815 }
816
817 /* Newer chips don't have clock dividers */
818 if ((data->has_fan & 0x07) && !has_16bit_fans(data)) {
819 i = it87_read_value(data, IT87_REG_FAN_DIV);
820 data->fan_div[0] = i & 0x07;
821 data->fan_div[1] = (i >> 3) & 0x07;
822 data->fan_div[2] = (i & 0x40) ? 3 : 1;
823 }
824
825 data->alarms =
826 it87_read_value(data, IT87_REG_ALARM1) |
827 (it87_read_value(data, IT87_REG_ALARM2) << 8) |
828 (it87_read_value(data, IT87_REG_ALARM3) << 16);
829 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
830
831 data->fan_main_ctrl = it87_read_value(data,
832 IT87_REG_FAN_MAIN_CTRL);
833 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL);
Guenter Roeck0624d862015-04-06 21:04:18 -0700834 for (i = 0; i < NUM_PWM; i++) {
835 if (!(data->has_pwm & BIT(i)))
836 continue;
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700837 it87_update_pwm_ctrl(data, i);
Guenter Roeck0624d862015-04-06 21:04:18 -0700838 }
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700839
840 data->sensor = it87_read_value(data, IT87_REG_TEMP_ENABLE);
841 data->extra = it87_read_value(data, IT87_REG_TEMP_EXTRA);
842 /*
843 * The IT8705F does not have VID capability.
844 * The IT8718F and later don't use IT87_REG_VID for the
845 * same purpose.
846 */
847 if (data->type == it8712 || data->type == it8716) {
848 data->vid = it87_read_value(data, IT87_REG_VID);
849 /*
850 * The older IT8712F revisions had only 5 VID pins,
851 * but we assume it is always safe to read 6 bits.
852 */
853 data->vid &= 0x3f;
854 }
855 data->last_updated = jiffies;
856 data->valid = 1;
857 }
858
859 mutex_unlock(&data->update_lock);
860
861 return data;
862}
Jean Delvarefde09502005-07-19 23:51:07 +0200863
Jean Delvare20ad93d2005-06-05 11:53:25 +0200864static ssize_t show_in(struct device *dev, struct device_attribute *attr,
Guenter Roeck929c6a52012-12-19 22:17:00 +0100865 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866{
Guenter Roeck929c6a52012-12-19 22:17:00 +0100867 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -0700869 int index = sattr->index;
870 int nr = sattr->nr;
871
Guenter Roeck929c6a52012-12-19 22:17:00 +0100872 return sprintf(buf, "%d\n", in_from_reg(data, nr, data->in[nr][index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873}
874
Guenter Roeck929c6a52012-12-19 22:17:00 +0100875static ssize_t set_in(struct device *dev, struct device_attribute *attr,
876 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877{
Guenter Roeck929c6a52012-12-19 22:17:00 +0100878 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200879 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -0700880 int index = sattr->index;
881 int nr = sattr->nr;
Jean Delvaref5f64502010-03-05 22:17:19 +0100882 unsigned long val;
883
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100884 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100885 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100887 mutex_lock(&data->update_lock);
Guenter Roeck929c6a52012-12-19 22:17:00 +0100888 data->in[nr][index] = in_to_reg(data, nr, val);
889 it87_write_value(data,
890 index == 1 ? IT87_REG_VIN_MIN(nr)
891 : IT87_REG_VIN_MAX(nr),
892 data->in[nr][index]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100893 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 return count;
895}
896
Guenter Roeck929c6a52012-12-19 22:17:00 +0100897static SENSOR_DEVICE_ATTR_2(in0_input, S_IRUGO, show_in, NULL, 0, 0);
898static SENSOR_DEVICE_ATTR_2(in0_min, S_IRUGO | S_IWUSR, show_in, set_in,
899 0, 1);
900static SENSOR_DEVICE_ATTR_2(in0_max, S_IRUGO | S_IWUSR, show_in, set_in,
901 0, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Guenter Roeck929c6a52012-12-19 22:17:00 +0100903static SENSOR_DEVICE_ATTR_2(in1_input, S_IRUGO, show_in, NULL, 1, 0);
904static SENSOR_DEVICE_ATTR_2(in1_min, S_IRUGO | S_IWUSR, show_in, set_in,
905 1, 1);
906static SENSOR_DEVICE_ATTR_2(in1_max, S_IRUGO | S_IWUSR, show_in, set_in,
907 1, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
Guenter Roeck929c6a52012-12-19 22:17:00 +0100909static SENSOR_DEVICE_ATTR_2(in2_input, S_IRUGO, show_in, NULL, 2, 0);
910static SENSOR_DEVICE_ATTR_2(in2_min, S_IRUGO | S_IWUSR, show_in, set_in,
911 2, 1);
912static SENSOR_DEVICE_ATTR_2(in2_max, S_IRUGO | S_IWUSR, show_in, set_in,
913 2, 2);
914
915static SENSOR_DEVICE_ATTR_2(in3_input, S_IRUGO, show_in, NULL, 3, 0);
916static SENSOR_DEVICE_ATTR_2(in3_min, S_IRUGO | S_IWUSR, show_in, set_in,
917 3, 1);
918static SENSOR_DEVICE_ATTR_2(in3_max, S_IRUGO | S_IWUSR, show_in, set_in,
919 3, 2);
920
921static SENSOR_DEVICE_ATTR_2(in4_input, S_IRUGO, show_in, NULL, 4, 0);
922static SENSOR_DEVICE_ATTR_2(in4_min, S_IRUGO | S_IWUSR, show_in, set_in,
923 4, 1);
924static SENSOR_DEVICE_ATTR_2(in4_max, S_IRUGO | S_IWUSR, show_in, set_in,
925 4, 2);
926
927static SENSOR_DEVICE_ATTR_2(in5_input, S_IRUGO, show_in, NULL, 5, 0);
928static SENSOR_DEVICE_ATTR_2(in5_min, S_IRUGO | S_IWUSR, show_in, set_in,
929 5, 1);
930static SENSOR_DEVICE_ATTR_2(in5_max, S_IRUGO | S_IWUSR, show_in, set_in,
931 5, 2);
932
933static SENSOR_DEVICE_ATTR_2(in6_input, S_IRUGO, show_in, NULL, 6, 0);
934static SENSOR_DEVICE_ATTR_2(in6_min, S_IRUGO | S_IWUSR, show_in, set_in,
935 6, 1);
936static SENSOR_DEVICE_ATTR_2(in6_max, S_IRUGO | S_IWUSR, show_in, set_in,
937 6, 2);
938
939static SENSOR_DEVICE_ATTR_2(in7_input, S_IRUGO, show_in, NULL, 7, 0);
940static SENSOR_DEVICE_ATTR_2(in7_min, S_IRUGO | S_IWUSR, show_in, set_in,
941 7, 1);
942static SENSOR_DEVICE_ATTR_2(in7_max, S_IRUGO | S_IWUSR, show_in, set_in,
943 7, 2);
944
945static SENSOR_DEVICE_ATTR_2(in8_input, S_IRUGO, show_in, NULL, 8, 0);
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100946static SENSOR_DEVICE_ATTR_2(in9_input, S_IRUGO, show_in, NULL, 9, 0);
Guenter Roeckf838aa22015-04-01 20:09:36 -0700947static SENSOR_DEVICE_ATTR_2(in10_input, S_IRUGO, show_in, NULL, 10, 0);
948static SENSOR_DEVICE_ATTR_2(in11_input, S_IRUGO, show_in, NULL, 11, 0);
949static SENSOR_DEVICE_ATTR_2(in12_input, S_IRUGO, show_in, NULL, 12, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Guenter Roeckcc18da72015-04-01 10:03:01 -0700951/* Up to 6 temperatures */
Jean Delvare20ad93d2005-06-05 11:53:25 +0200952static ssize_t show_temp(struct device *dev, struct device_attribute *attr,
Guenter Roeck60ca3852012-12-19 22:17:00 +0100953 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
Guenter Roeck60ca3852012-12-19 22:17:00 +0100955 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
956 int nr = sattr->nr;
957 int index = sattr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +0200959
Guenter Roeck60ca3852012-12-19 22:17:00 +0100960 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[nr][index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200962
Guenter Roeck60ca3852012-12-19 22:17:00 +0100963static ssize_t set_temp(struct device *dev, struct device_attribute *attr,
964 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
Guenter Roeck60ca3852012-12-19 22:17:00 +0100966 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
967 int nr = sattr->nr;
968 int index = sattr->index;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200969 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100970 long val;
Guenter Roeck161d8982012-12-19 22:17:01 +0100971 u8 reg, regval;
Jean Delvaref5f64502010-03-05 22:17:19 +0100972
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100973 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100974 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100976 mutex_lock(&data->update_lock);
Guenter Roeck161d8982012-12-19 22:17:01 +0100977
978 switch (index) {
979 default:
980 case 1:
981 reg = IT87_REG_TEMP_LOW(nr);
982 break;
983 case 2:
984 reg = IT87_REG_TEMP_HIGH(nr);
985 break;
986 case 3:
987 regval = it87_read_value(data, IT87_REG_BEEP_ENABLE);
988 if (!(regval & 0x80)) {
989 regval |= 0x80;
990 it87_write_value(data, IT87_REG_BEEP_ENABLE, regval);
991 }
992 data->valid = 0;
993 reg = IT87_REG_TEMP_OFFSET[nr];
994 break;
995 }
996
Guenter Roeck60ca3852012-12-19 22:17:00 +0100997 data->temp[nr][index] = TEMP_TO_REG(val);
Guenter Roeck161d8982012-12-19 22:17:01 +0100998 it87_write_value(data, reg, data->temp[nr][index]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100999 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 return count;
1001}
Jean Delvare20ad93d2005-06-05 11:53:25 +02001002
Guenter Roeck60ca3852012-12-19 22:17:00 +01001003static SENSOR_DEVICE_ATTR_2(temp1_input, S_IRUGO, show_temp, NULL, 0, 0);
1004static SENSOR_DEVICE_ATTR_2(temp1_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
1005 0, 1);
1006static SENSOR_DEVICE_ATTR_2(temp1_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
1007 0, 2);
Guenter Roeck161d8982012-12-19 22:17:01 +01001008static SENSOR_DEVICE_ATTR_2(temp1_offset, S_IRUGO | S_IWUSR, show_temp,
1009 set_temp, 0, 3);
Guenter Roeck60ca3852012-12-19 22:17:00 +01001010static SENSOR_DEVICE_ATTR_2(temp2_input, S_IRUGO, show_temp, NULL, 1, 0);
1011static SENSOR_DEVICE_ATTR_2(temp2_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
1012 1, 1);
1013static SENSOR_DEVICE_ATTR_2(temp2_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
1014 1, 2);
Guenter Roeck161d8982012-12-19 22:17:01 +01001015static SENSOR_DEVICE_ATTR_2(temp2_offset, S_IRUGO | S_IWUSR, show_temp,
1016 set_temp, 1, 3);
Guenter Roeck60ca3852012-12-19 22:17:00 +01001017static SENSOR_DEVICE_ATTR_2(temp3_input, S_IRUGO, show_temp, NULL, 2, 0);
1018static SENSOR_DEVICE_ATTR_2(temp3_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
1019 2, 1);
1020static SENSOR_DEVICE_ATTR_2(temp3_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
1021 2, 2);
Guenter Roeck161d8982012-12-19 22:17:01 +01001022static SENSOR_DEVICE_ATTR_2(temp3_offset, S_IRUGO | S_IWUSR, show_temp,
1023 set_temp, 2, 3);
Guenter Roeckcc18da72015-04-01 10:03:01 -07001024static SENSOR_DEVICE_ATTR_2(temp4_input, S_IRUGO, show_temp, NULL, 3, 0);
1025static SENSOR_DEVICE_ATTR_2(temp5_input, S_IRUGO, show_temp, NULL, 4, 0);
1026static SENSOR_DEVICE_ATTR_2(temp6_input, S_IRUGO, show_temp, NULL, 5, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Guenter Roeck2cece012012-12-19 22:17:01 +01001028static ssize_t show_temp_type(struct device *dev, struct device_attribute *attr,
1029 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001031 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1032 int nr = sensor_attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 struct it87_data *data = it87_update_device(dev);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001034 u8 reg = data->sensor; /* In case value is updated while used */
Guenter Roeck19529782012-12-19 22:17:02 +01001035 u8 extra = data->extra;
Jean Delvare5f2dc792010-03-05 22:17:18 +01001036
Guenter Roeckc9620242015-04-04 09:05:57 -07001037 if ((has_temp_peci(data, nr) && (reg >> 6 == nr + 1)) ||
1038 (has_temp_old_peci(data, nr) && (extra & 0x80)))
Guenter Roeck5d8d2f22012-12-19 22:17:02 +01001039 return sprintf(buf, "6\n"); /* Intel PECI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 if (reg & (1 << nr))
1041 return sprintf(buf, "3\n"); /* thermal diode */
1042 if (reg & (8 << nr))
Jean Delvare4ed10772008-10-17 17:51:16 +02001043 return sprintf(buf, "4\n"); /* thermistor */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 return sprintf(buf, "0\n"); /* disabled */
1045}
Guenter Roeck2cece012012-12-19 22:17:01 +01001046
1047static ssize_t set_temp_type(struct device *dev, struct device_attribute *attr,
1048 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001050 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1051 int nr = sensor_attr->index;
1052
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001053 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001054 long val;
Guenter Roeck19529782012-12-19 22:17:02 +01001055 u8 reg, extra;
Jean Delvaref5f64502010-03-05 22:17:19 +01001056
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001057 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001058 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Jean Delvare8acf07c2010-04-14 16:14:09 +02001060 reg = it87_read_value(data, IT87_REG_TEMP_ENABLE);
1061 reg &= ~(1 << nr);
1062 reg &= ~(8 << nr);
Guenter Roeck5d8d2f22012-12-19 22:17:02 +01001063 if (has_temp_peci(data, nr) && (reg >> 6 == nr + 1 || val == 6))
1064 reg &= 0x3f;
Guenter Roeck19529782012-12-19 22:17:02 +01001065 extra = it87_read_value(data, IT87_REG_TEMP_EXTRA);
1066 if (has_temp_old_peci(data, nr) && ((extra & 0x80) || val == 6))
1067 extra &= 0x7f;
Jean Delvare4ed10772008-10-17 17:51:16 +02001068 if (val == 2) { /* backwards compatibility */
Guenter Roeck1d9bcf62012-12-19 22:17:01 +01001069 dev_warn(dev,
1070 "Sensor type 2 is deprecated, please use 4 instead\n");
Jean Delvare4ed10772008-10-17 17:51:16 +02001071 val = 4;
1072 }
Guenter Roeck5d8d2f22012-12-19 22:17:02 +01001073 /* 3 = thermal diode; 4 = thermistor; 6 = Intel PECI; 0 = disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 if (val == 3)
Jean Delvare8acf07c2010-04-14 16:14:09 +02001075 reg |= 1 << nr;
Jean Delvare4ed10772008-10-17 17:51:16 +02001076 else if (val == 4)
Jean Delvare8acf07c2010-04-14 16:14:09 +02001077 reg |= 8 << nr;
Guenter Roeck5d8d2f22012-12-19 22:17:02 +01001078 else if (has_temp_peci(data, nr) && val == 6)
1079 reg |= (nr + 1) << 6;
Guenter Roeck19529782012-12-19 22:17:02 +01001080 else if (has_temp_old_peci(data, nr) && val == 6)
1081 extra |= 0x80;
Jean Delvare8acf07c2010-04-14 16:14:09 +02001082 else if (val != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 return -EINVAL;
Jean Delvare8acf07c2010-04-14 16:14:09 +02001084
1085 mutex_lock(&data->update_lock);
1086 data->sensor = reg;
Guenter Roeck19529782012-12-19 22:17:02 +01001087 data->extra = extra;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001088 it87_write_value(data, IT87_REG_TEMP_ENABLE, data->sensor);
Guenter Roeck19529782012-12-19 22:17:02 +01001089 if (has_temp_old_peci(data, nr))
1090 it87_write_value(data, IT87_REG_TEMP_EXTRA, data->extra);
Jean Delvare2b3d1d82010-04-14 16:14:10 +02001091 data->valid = 0; /* Force cache refresh */
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001092 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 return count;
1094}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Guenter Roeck2cece012012-12-19 22:17:01 +01001096static SENSOR_DEVICE_ATTR(temp1_type, S_IRUGO | S_IWUSR, show_temp_type,
1097 set_temp_type, 0);
1098static SENSOR_DEVICE_ATTR(temp2_type, S_IRUGO | S_IWUSR, show_temp_type,
1099 set_temp_type, 1);
1100static SENSOR_DEVICE_ATTR(temp3_type, S_IRUGO | S_IWUSR, show_temp_type,
1101 set_temp_type, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001103/* 6 Fans */
Jean Delvareb99883d2010-03-05 22:17:15 +01001104
1105static int pwm_mode(const struct it87_data *data, int nr)
1106{
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001107 if (data->type != it8603 && nr < 3 && !(data->fan_main_ctrl & BIT(nr)))
1108 return 0; /* Full speed */
1109 if (data->pwm_ctrl[nr] & 0x80)
1110 return 2; /* Automatic mode */
1111 if ((data->type == it8603 || nr >= 3) &&
1112 data->pwm_duty[nr] == pwm_to_reg(data, 0xff))
1113 return 0; /* Full speed */
Jean Delvareb99883d2010-03-05 22:17:15 +01001114
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001115 return 1; /* Manual mode */
Jean Delvareb99883d2010-03-05 22:17:15 +01001116}
1117
Jean Delvare20ad93d2005-06-05 11:53:25 +02001118static ssize_t show_fan(struct device *dev, struct device_attribute *attr,
Guenter Roecke1169ba2012-12-19 22:17:01 +01001119 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120{
Guenter Roecke1169ba2012-12-19 22:17:01 +01001121 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
1122 int nr = sattr->nr;
1123 int index = sattr->index;
1124 int speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +02001126
Guenter Roecke1169ba2012-12-19 22:17:01 +01001127 speed = has_16bit_fans(data) ?
1128 FAN16_FROM_REG(data->fan[nr][index]) :
1129 FAN_FROM_REG(data->fan[nr][index],
1130 DIV_FROM_REG(data->fan_div[nr]));
1131 return sprintf(buf, "%d\n", speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132}
Guenter Roecke1169ba2012-12-19 22:17:01 +01001133
Jean Delvare20ad93d2005-06-05 11:53:25 +02001134static ssize_t show_fan_div(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001135 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001137 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
Guenter Roeckc9620242015-04-04 09:05:57 -07001138 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +02001139 int nr = sensor_attr->index;
1140
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001141 return sprintf(buf, "%lu\n", DIV_FROM_REG(data->fan_div[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142}
Guenter Roeckc9620242015-04-04 09:05:57 -07001143
Jean Delvare5f2dc792010-03-05 22:17:18 +01001144static ssize_t show_pwm_enable(struct device *dev,
Guenter Roeckc9620242015-04-04 09:05:57 -07001145 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001147 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
Guenter Roeckc9620242015-04-04 09:05:57 -07001148 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +02001149 int nr = sensor_attr->index;
1150
Jean Delvareb99883d2010-03-05 22:17:15 +01001151 return sprintf(buf, "%d\n", pwm_mode(data, nr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152}
Guenter Roeckc9620242015-04-04 09:05:57 -07001153
Jean Delvare20ad93d2005-06-05 11:53:25 +02001154static ssize_t show_pwm(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001155 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001157 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
Guenter Roeckc9620242015-04-04 09:05:57 -07001158 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +02001159 int nr = sensor_attr->index;
1160
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001161 return sprintf(buf, "%d\n",
1162 pwm_from_reg(data, data->pwm_duty[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163}
Guenter Roeckc9620242015-04-04 09:05:57 -07001164
Jean Delvaref8d0c192007-02-14 21:15:02 +01001165static ssize_t show_pwm_freq(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001166 char *buf)
Jean Delvaref8d0c192007-02-14 21:15:02 +01001167{
Guenter Roeck60878bc2015-03-26 19:57:42 -07001168 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
Jean Delvaref8d0c192007-02-14 21:15:02 +01001169 struct it87_data *data = it87_update_device(dev);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001170 int nr = sensor_attr->index;
Guenter Roeckf56c9c02015-03-26 20:01:24 -07001171 unsigned int freq;
Guenter Roeck60878bc2015-03-26 19:57:42 -07001172 int index;
1173
1174 if (has_pwm_freq2(data) && nr == 1)
1175 index = (data->extra >> 4) & 0x07;
1176 else
1177 index = (data->fan_ctl >> 4) & 0x07;
Jean Delvaref8d0c192007-02-14 21:15:02 +01001178
Guenter Roeckf56c9c02015-03-26 20:01:24 -07001179 freq = pwm_freq[index] / (has_newer_autopwm(data) ? 256 : 128);
1180
1181 return sprintf(buf, "%u\n", freq);
Jean Delvaref8d0c192007-02-14 21:15:02 +01001182}
Guenter Roecke1169ba2012-12-19 22:17:01 +01001183
1184static ssize_t set_fan(struct device *dev, struct device_attribute *attr,
1185 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186{
Guenter Roecke1169ba2012-12-19 22:17:01 +01001187 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
1188 int nr = sattr->nr;
1189 int index = sattr->index;
Jean Delvare20ad93d2005-06-05 11:53:25 +02001190
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001191 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001192 long val;
Jean Delvare7f999aa2007-02-14 21:15:03 +01001193 u8 reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001195 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001196 return -EINVAL;
1197
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001198 mutex_lock(&data->update_lock);
Guenter Roecke1169ba2012-12-19 22:17:01 +01001199
1200 if (has_16bit_fans(data)) {
1201 data->fan[nr][index] = FAN16_TO_REG(val);
1202 it87_write_value(data, IT87_REG_FAN_MIN[nr],
1203 data->fan[nr][index] & 0xff);
1204 it87_write_value(data, IT87_REG_FANX_MIN[nr],
1205 data->fan[nr][index] >> 8);
1206 } else {
1207 reg = it87_read_value(data, IT87_REG_FAN_DIV);
1208 switch (nr) {
1209 case 0:
1210 data->fan_div[nr] = reg & 0x07;
1211 break;
1212 case 1:
1213 data->fan_div[nr] = (reg >> 3) & 0x07;
1214 break;
1215 case 2:
1216 data->fan_div[nr] = (reg & 0x40) ? 3 : 1;
1217 break;
1218 }
1219 data->fan[nr][index] =
1220 FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
1221 it87_write_value(data, IT87_REG_FAN_MIN[nr],
1222 data->fan[nr][index]);
Jean Delvare07eab462005-11-23 15:44:31 -08001223 }
1224
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001225 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 return count;
1227}
Guenter Roecke1169ba2012-12-19 22:17:01 +01001228
Jean Delvare20ad93d2005-06-05 11:53:25 +02001229static ssize_t set_fan_div(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001230 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001232 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001233 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001234 int nr = sensor_attr->index;
Jean Delvaref5f64502010-03-05 22:17:19 +01001235 unsigned long val;
Jean Delvare8ab4ec32006-08-28 14:35:46 +02001236 int min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 u8 old;
1238
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001239 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001240 return -EINVAL;
1241
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001242 mutex_lock(&data->update_lock);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001243 old = it87_read_value(data, IT87_REG_FAN_DIV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
Jean Delvare8ab4ec32006-08-28 14:35:46 +02001245 /* Save fan min limit */
Guenter Roecke1169ba2012-12-19 22:17:01 +01001246 min = FAN_FROM_REG(data->fan[nr][1], DIV_FROM_REG(data->fan_div[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
1248 switch (nr) {
1249 case 0:
1250 case 1:
1251 data->fan_div[nr] = DIV_TO_REG(val);
1252 break;
1253 case 2:
1254 if (val < 8)
1255 data->fan_div[nr] = 1;
1256 else
1257 data->fan_div[nr] = 3;
1258 }
1259 val = old & 0x80;
1260 val |= (data->fan_div[0] & 0x07);
1261 val |= (data->fan_div[1] & 0x07) << 3;
1262 if (data->fan_div[2] == 3)
1263 val |= 0x1 << 6;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001264 it87_write_value(data, IT87_REG_FAN_DIV, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Jean Delvare8ab4ec32006-08-28 14:35:46 +02001266 /* Restore fan min limit */
Guenter Roecke1169ba2012-12-19 22:17:01 +01001267 data->fan[nr][1] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
1268 it87_write_value(data, IT87_REG_FAN_MIN[nr], data->fan[nr][1]);
Jean Delvare8ab4ec32006-08-28 14:35:46 +02001269
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001270 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 return count;
1272}
Jean Delvarecccfc9c2010-03-05 22:17:21 +01001273
1274/* Returns 0 if OK, -EINVAL otherwise */
1275static int check_trip_points(struct device *dev, int nr)
1276{
1277 const struct it87_data *data = dev_get_drvdata(dev);
1278 int i, err = 0;
1279
1280 if (has_old_autopwm(data)) {
1281 for (i = 0; i < 3; i++) {
1282 if (data->auto_temp[nr][i] > data->auto_temp[nr][i + 1])
1283 err = -EINVAL;
1284 }
1285 for (i = 0; i < 2; i++) {
1286 if (data->auto_pwm[nr][i] > data->auto_pwm[nr][i + 1])
1287 err = -EINVAL;
1288 }
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001289 } else if (has_newer_autopwm(data)) {
1290 for (i = 1; i < 3; i++) {
1291 if (data->auto_temp[nr][i] > data->auto_temp[nr][i + 1])
1292 err = -EINVAL;
1293 }
Jean Delvarecccfc9c2010-03-05 22:17:21 +01001294 }
1295
1296 if (err) {
Guenter Roeck1d9bcf62012-12-19 22:17:01 +01001297 dev_err(dev,
1298 "Inconsistent trip points, not switching to automatic mode\n");
Jean Delvarecccfc9c2010-03-05 22:17:21 +01001299 dev_err(dev, "Adjust the trip points and try again\n");
1300 }
1301 return err;
1302}
1303
Guenter Roeckc9620242015-04-04 09:05:57 -07001304static ssize_t set_pwm_enable(struct device *dev, struct device_attribute *attr,
1305 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001307 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001308 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001309 int nr = sensor_attr->index;
Jean Delvaref5f64502010-03-05 22:17:19 +01001310 long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001312 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 2)
Jean Delvareb99883d2010-03-05 22:17:15 +01001313 return -EINVAL;
1314
Jean Delvarecccfc9c2010-03-05 22:17:21 +01001315 /* Check trip points before switching to automatic mode */
1316 if (val == 2) {
1317 if (check_trip_points(dev, nr) < 0)
1318 return -EINVAL;
1319 }
1320
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001321 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 if (val == 0) {
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001324 if (nr < 3 && data->type != it8603) {
1325 int tmp;
1326 /* make sure the fan is on when in on/off mode */
1327 tmp = it87_read_value(data, IT87_REG_FAN_CTL);
1328 it87_write_value(data, IT87_REG_FAN_CTL, tmp | BIT(nr));
1329 /* set on/off mode */
1330 data->fan_main_ctrl &= ~BIT(nr);
1331 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
1332 data->fan_main_ctrl);
1333 } else {
Guenter Roeck4c7b8ca2017-02-08 14:07:42 -08001334 u8 ctrl;
1335
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001336 /* No on/off mode, set maximum pwm value */
1337 data->pwm_duty[nr] = pwm_to_reg(data, 0xff);
1338 it87_write_value(data, IT87_REG_PWM_DUTY[nr],
1339 data->pwm_duty[nr]);
1340 /* and set manual mode */
Guenter Roeck4c7b8ca2017-02-08 14:07:42 -08001341 if (has_newer_autopwm(data)) {
1342 ctrl = (data->pwm_ctrl[nr] & 0x7c) |
1343 data->pwm_temp_map[nr];
1344 } else {
1345 ctrl = data->pwm_duty[nr];
1346 }
1347 data->pwm_ctrl[nr] = ctrl;
1348 it87_write_value(data, IT87_REG_PWM[nr], ctrl);
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001349 }
Jean Delvareb99883d2010-03-05 22:17:15 +01001350 } else {
Guenter Roeck4c7b8ca2017-02-08 14:07:42 -08001351 u8 ctrl;
1352
1353 if (has_newer_autopwm(data)) {
1354 ctrl = (data->pwm_ctrl[nr] & 0x7c) |
1355 data->pwm_temp_map[nr];
1356 if (val != 1)
1357 ctrl |= 0x80;
1358 } else {
1359 ctrl = (val == 1 ? data->pwm_duty[nr] : 0x80);
1360 }
1361 data->pwm_ctrl[nr] = ctrl;
1362 it87_write_value(data, IT87_REG_PWM[nr], ctrl);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001363
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001364 if (data->type != it8603 && nr < 3) {
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001365 /* set SmartGuardian mode */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001366 data->fan_main_ctrl |= BIT(nr);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001367 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
1368 data->fan_main_ctrl);
1369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 }
1371
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001372 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 return count;
1374}
Guenter Roeckc9620242015-04-04 09:05:57 -07001375
Jean Delvare20ad93d2005-06-05 11:53:25 +02001376static ssize_t set_pwm(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001377 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001379 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001380 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001381 int nr = sensor_attr->index;
Jean Delvaref5f64502010-03-05 22:17:19 +01001382 long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001384 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 return -EINVAL;
1386
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001387 mutex_lock(&data->update_lock);
Guenter Roeck82dbe982017-02-08 14:02:59 -08001388 it87_update_pwm_ctrl(data, nr);
Jean Delvare16b5dda2012-01-16 22:51:48 +01001389 if (has_newer_autopwm(data)) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001390 /*
1391 * If we are in automatic mode, the PWM duty cycle register
1392 * is read-only so we can't write the value.
1393 */
Jean Delvare6229cdb2010-12-08 16:27:22 +01001394 if (data->pwm_ctrl[nr] & 0x80) {
1395 mutex_unlock(&data->update_lock);
1396 return -EBUSY;
1397 }
1398 data->pwm_duty[nr] = pwm_to_reg(data, val);
Guenter Roeck36c4d982015-03-26 18:18:19 -07001399 it87_write_value(data, IT87_REG_PWM_DUTY[nr],
Jean Delvare6229cdb2010-12-08 16:27:22 +01001400 data->pwm_duty[nr]);
1401 } else {
1402 data->pwm_duty[nr] = pwm_to_reg(data, val);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001403 /*
1404 * If we are in manual mode, write the duty cycle immediately;
1405 * otherwise, just store it for later use.
1406 */
Jean Delvare6229cdb2010-12-08 16:27:22 +01001407 if (!(data->pwm_ctrl[nr] & 0x80)) {
1408 data->pwm_ctrl[nr] = data->pwm_duty[nr];
Guenter Roeck36c4d982015-03-26 18:18:19 -07001409 it87_write_value(data, IT87_REG_PWM[nr],
Jean Delvare6229cdb2010-12-08 16:27:22 +01001410 data->pwm_ctrl[nr]);
1411 }
Jean Delvareb99883d2010-03-05 22:17:15 +01001412 }
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001413 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 return count;
1415}
Guenter Roeckc9620242015-04-04 09:05:57 -07001416
1417static ssize_t set_pwm_freq(struct device *dev, struct device_attribute *attr,
1418 const char *buf, size_t count)
Jean Delvaref8d0c192007-02-14 21:15:02 +01001419{
Guenter Roeck60878bc2015-03-26 19:57:42 -07001420 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001421 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001422 int nr = sensor_attr->index;
Jean Delvaref5f64502010-03-05 22:17:19 +01001423 unsigned long val;
Jean Delvaref8d0c192007-02-14 21:15:02 +01001424 int i;
1425
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001426 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001427 return -EINVAL;
1428
Guenter Roeckf56c9c02015-03-26 20:01:24 -07001429 val = clamp_val(val, 0, 1000000);
1430 val *= has_newer_autopwm(data) ? 256 : 128;
1431
Jean Delvaref8d0c192007-02-14 21:15:02 +01001432 /* Search for the nearest available frequency */
1433 for (i = 0; i < 7; i++) {
Guenter Roeckc9620242015-04-04 09:05:57 -07001434 if (val > (pwm_freq[i] + pwm_freq[i + 1]) / 2)
Jean Delvaref8d0c192007-02-14 21:15:02 +01001435 break;
1436 }
1437
1438 mutex_lock(&data->update_lock);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001439 if (nr == 0) {
1440 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL) & 0x8f;
1441 data->fan_ctl |= i << 4;
1442 it87_write_value(data, IT87_REG_FAN_CTL, data->fan_ctl);
1443 } else {
1444 data->extra = it87_read_value(data, IT87_REG_TEMP_EXTRA) & 0x8f;
1445 data->extra |= i << 4;
1446 it87_write_value(data, IT87_REG_TEMP_EXTRA, data->extra);
1447 }
Jean Delvaref8d0c192007-02-14 21:15:02 +01001448 mutex_unlock(&data->update_lock);
1449
1450 return count;
1451}
Guenter Roeckc9620242015-04-04 09:05:57 -07001452
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001453static ssize_t show_pwm_temp_map(struct device *dev,
Guenter Roeckc9620242015-04-04 09:05:57 -07001454 struct device_attribute *attr, char *buf)
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001455{
1456 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001457 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001458 int nr = sensor_attr->index;
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001459 int map;
1460
Guenter Roeck0624d862015-04-06 21:04:18 -07001461 map = data->pwm_temp_map[nr];
1462 if (map >= 3)
1463 map = 0; /* Should never happen */
1464 if (nr >= 3) /* pwm channels 3..6 map to temp4..6 */
1465 map += 3;
1466
1467 return sprintf(buf, "%d\n", (int)BIT(map));
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001468}
Guenter Roeckc9620242015-04-04 09:05:57 -07001469
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001470static ssize_t set_pwm_temp_map(struct device *dev,
Guenter Roeckc9620242015-04-04 09:05:57 -07001471 struct device_attribute *attr, const char *buf,
1472 size_t count)
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001473{
1474 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001475 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001476 int nr = sensor_attr->index;
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001477 long val;
1478 u8 reg;
1479
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001480 if (kstrtol(buf, 10, &val) < 0)
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001481 return -EINVAL;
1482
Guenter Roeck0624d862015-04-06 21:04:18 -07001483 if (nr >= 3)
1484 val -= 3;
1485
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001486 switch (val) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001487 case BIT(0):
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001488 reg = 0x00;
1489 break;
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001490 case BIT(1):
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001491 reg = 0x01;
1492 break;
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001493 case BIT(2):
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001494 reg = 0x02;
1495 break;
1496 default:
1497 return -EINVAL;
1498 }
1499
1500 mutex_lock(&data->update_lock);
Guenter Roeck82dbe982017-02-08 14:02:59 -08001501 it87_update_pwm_ctrl(data, nr);
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001502 data->pwm_temp_map[nr] = reg;
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001503 /*
1504 * If we are in automatic mode, write the temp mapping immediately;
1505 * otherwise, just store it for later use.
1506 */
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001507 if (data->pwm_ctrl[nr] & 0x80) {
Guenter Roeck4c7b8ca2017-02-08 14:07:42 -08001508 data->pwm_ctrl[nr] = (data->pwm_ctrl[nr] & 0xfc) |
1509 data->pwm_temp_map[nr];
Guenter Roeck36c4d982015-03-26 18:18:19 -07001510 it87_write_value(data, IT87_REG_PWM[nr], data->pwm_ctrl[nr]);
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001511 }
1512 mutex_unlock(&data->update_lock);
1513 return count;
1514}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Guenter Roeckc9620242015-04-04 09:05:57 -07001516static ssize_t show_auto_pwm(struct device *dev, struct device_attribute *attr,
1517 char *buf)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001518{
1519 struct it87_data *data = it87_update_device(dev);
1520 struct sensor_device_attribute_2 *sensor_attr =
1521 to_sensor_dev_attr_2(attr);
1522 int nr = sensor_attr->nr;
1523 int point = sensor_attr->index;
1524
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001525 return sprintf(buf, "%d\n",
1526 pwm_from_reg(data, data->auto_pwm[nr][point]));
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001527}
1528
Guenter Roeckc9620242015-04-04 09:05:57 -07001529static ssize_t set_auto_pwm(struct device *dev, struct device_attribute *attr,
1530 const char *buf, size_t count)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001531{
1532 struct it87_data *data = dev_get_drvdata(dev);
1533 struct sensor_device_attribute_2 *sensor_attr =
1534 to_sensor_dev_attr_2(attr);
1535 int nr = sensor_attr->nr;
1536 int point = sensor_attr->index;
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001537 int regaddr;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001538 long val;
1539
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001540 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001541 return -EINVAL;
1542
1543 mutex_lock(&data->update_lock);
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001544 data->auto_pwm[nr][point] = pwm_to_reg(data, val);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001545 if (has_newer_autopwm(data))
1546 regaddr = IT87_REG_AUTO_TEMP(nr, 3);
1547 else
1548 regaddr = IT87_REG_AUTO_PWM(nr, point);
1549 it87_write_value(data, regaddr, data->auto_pwm[nr][point]);
1550 mutex_unlock(&data->update_lock);
1551 return count;
1552}
1553
1554static ssize_t show_auto_pwm_slope(struct device *dev,
1555 struct device_attribute *attr, char *buf)
1556{
1557 struct it87_data *data = it87_update_device(dev);
1558 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1559 int nr = sensor_attr->index;
1560
1561 return sprintf(buf, "%d\n", data->auto_pwm[nr][1] & 0x7f);
1562}
1563
1564static ssize_t set_auto_pwm_slope(struct device *dev,
1565 struct device_attribute *attr,
1566 const char *buf, size_t count)
1567{
1568 struct it87_data *data = dev_get_drvdata(dev);
1569 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1570 int nr = sensor_attr->index;
1571 unsigned long val;
1572
1573 if (kstrtoul(buf, 10, &val) < 0 || val > 127)
1574 return -EINVAL;
1575
1576 mutex_lock(&data->update_lock);
1577 data->auto_pwm[nr][1] = (data->auto_pwm[nr][1] & 0x80) | val;
1578 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, 4),
1579 data->auto_pwm[nr][1]);
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001580 mutex_unlock(&data->update_lock);
1581 return count;
1582}
1583
Guenter Roeckc9620242015-04-04 09:05:57 -07001584static ssize_t show_auto_temp(struct device *dev, struct device_attribute *attr,
1585 char *buf)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001586{
1587 struct it87_data *data = it87_update_device(dev);
1588 struct sensor_device_attribute_2 *sensor_attr =
1589 to_sensor_dev_attr_2(attr);
1590 int nr = sensor_attr->nr;
1591 int point = sensor_attr->index;
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001592 int reg;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001593
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001594 if (has_old_autopwm(data) || point)
1595 reg = data->auto_temp[nr][point];
1596 else
1597 reg = data->auto_temp[nr][1] - (data->auto_temp[nr][0] & 0x1f);
1598
1599 return sprintf(buf, "%d\n", TEMP_FROM_REG(reg));
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001600}
1601
Guenter Roeckc9620242015-04-04 09:05:57 -07001602static ssize_t set_auto_temp(struct device *dev, struct device_attribute *attr,
1603 const char *buf, size_t count)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001604{
1605 struct it87_data *data = dev_get_drvdata(dev);
1606 struct sensor_device_attribute_2 *sensor_attr =
1607 to_sensor_dev_attr_2(attr);
1608 int nr = sensor_attr->nr;
1609 int point = sensor_attr->index;
1610 long val;
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001611 int reg;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001612
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001613 if (kstrtol(buf, 10, &val) < 0 || val < -128000 || val > 127000)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001614 return -EINVAL;
1615
1616 mutex_lock(&data->update_lock);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001617 if (has_newer_autopwm(data) && !point) {
1618 reg = data->auto_temp[nr][1] - TEMP_TO_REG(val);
1619 reg = clamp_val(reg, 0, 0x1f) | (data->auto_temp[nr][0] & 0xe0);
1620 data->auto_temp[nr][0] = reg;
1621 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, 5), reg);
1622 } else {
1623 reg = TEMP_TO_REG(val);
1624 data->auto_temp[nr][point] = reg;
1625 if (has_newer_autopwm(data))
1626 point--;
1627 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, point), reg);
1628 }
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001629 mutex_unlock(&data->update_lock);
1630 return count;
1631}
1632
Guenter Roecke1169ba2012-12-19 22:17:01 +01001633static SENSOR_DEVICE_ATTR_2(fan1_input, S_IRUGO, show_fan, NULL, 0, 0);
1634static SENSOR_DEVICE_ATTR_2(fan1_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1635 0, 1);
1636static SENSOR_DEVICE_ATTR(fan1_div, S_IRUGO | S_IWUSR, show_fan_div,
1637 set_fan_div, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
Guenter Roecke1169ba2012-12-19 22:17:01 +01001639static SENSOR_DEVICE_ATTR_2(fan2_input, S_IRUGO, show_fan, NULL, 1, 0);
1640static SENSOR_DEVICE_ATTR_2(fan2_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1641 1, 1);
1642static SENSOR_DEVICE_ATTR(fan2_div, S_IRUGO | S_IWUSR, show_fan_div,
1643 set_fan_div, 1);
1644
1645static SENSOR_DEVICE_ATTR_2(fan3_input, S_IRUGO, show_fan, NULL, 2, 0);
1646static SENSOR_DEVICE_ATTR_2(fan3_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1647 2, 1);
1648static SENSOR_DEVICE_ATTR(fan3_div, S_IRUGO | S_IWUSR, show_fan_div,
1649 set_fan_div, 2);
1650
1651static SENSOR_DEVICE_ATTR_2(fan4_input, S_IRUGO, show_fan, NULL, 3, 0);
1652static SENSOR_DEVICE_ATTR_2(fan4_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1653 3, 1);
1654
1655static SENSOR_DEVICE_ATTR_2(fan5_input, S_IRUGO, show_fan, NULL, 4, 0);
1656static SENSOR_DEVICE_ATTR_2(fan5_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1657 4, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07001659static SENSOR_DEVICE_ATTR_2(fan6_input, S_IRUGO, show_fan, NULL, 5, 0);
1660static SENSOR_DEVICE_ATTR_2(fan6_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1661 5, 1);
1662
Guenter Roeckc4458db2012-12-19 22:17:02 +01001663static SENSOR_DEVICE_ATTR(pwm1_enable, S_IRUGO | S_IWUSR,
1664 show_pwm_enable, set_pwm_enable, 0);
1665static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 0);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001666static SENSOR_DEVICE_ATTR(pwm1_freq, S_IRUGO | S_IWUSR, show_pwm_freq,
1667 set_pwm_freq, 0);
Guenter Roeck5c391262013-03-30 15:02:12 -07001668static SENSOR_DEVICE_ATTR(pwm1_auto_channels_temp, S_IRUGO,
Guenter Roeckc4458db2012-12-19 22:17:02 +01001669 show_pwm_temp_map, set_pwm_temp_map, 0);
1670static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_pwm, S_IRUGO | S_IWUSR,
1671 show_auto_pwm, set_auto_pwm, 0, 0);
1672static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_pwm, S_IRUGO | S_IWUSR,
1673 show_auto_pwm, set_auto_pwm, 0, 1);
1674static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_pwm, S_IRUGO | S_IWUSR,
1675 show_auto_pwm, set_auto_pwm, 0, 2);
1676static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_pwm, S_IRUGO,
1677 show_auto_pwm, NULL, 0, 3);
1678static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp, S_IRUGO | S_IWUSR,
1679 show_auto_temp, set_auto_temp, 0, 1);
1680static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1681 show_auto_temp, set_auto_temp, 0, 0);
1682static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_temp, S_IRUGO | S_IWUSR,
1683 show_auto_temp, set_auto_temp, 0, 2);
1684static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_temp, S_IRUGO | S_IWUSR,
1685 show_auto_temp, set_auto_temp, 0, 3);
1686static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_temp, S_IRUGO | S_IWUSR,
1687 show_auto_temp, set_auto_temp, 0, 4);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001688static SENSOR_DEVICE_ATTR_2(pwm1_auto_start, S_IRUGO | S_IWUSR,
1689 show_auto_pwm, set_auto_pwm, 0, 0);
1690static SENSOR_DEVICE_ATTR(pwm1_auto_slope, S_IRUGO | S_IWUSR,
1691 show_auto_pwm_slope, set_auto_pwm_slope, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
Guenter Roeckc4458db2012-12-19 22:17:02 +01001693static SENSOR_DEVICE_ATTR(pwm2_enable, S_IRUGO | S_IWUSR,
1694 show_pwm_enable, set_pwm_enable, 1);
1695static SENSOR_DEVICE_ATTR(pwm2, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 1);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001696static SENSOR_DEVICE_ATTR(pwm2_freq, S_IRUGO, show_pwm_freq, set_pwm_freq, 1);
Guenter Roeck5c391262013-03-30 15:02:12 -07001697static SENSOR_DEVICE_ATTR(pwm2_auto_channels_temp, S_IRUGO,
Guenter Roeckc4458db2012-12-19 22:17:02 +01001698 show_pwm_temp_map, set_pwm_temp_map, 1);
1699static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_pwm, S_IRUGO | S_IWUSR,
1700 show_auto_pwm, set_auto_pwm, 1, 0);
1701static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_pwm, S_IRUGO | S_IWUSR,
1702 show_auto_pwm, set_auto_pwm, 1, 1);
1703static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_pwm, S_IRUGO | S_IWUSR,
1704 show_auto_pwm, set_auto_pwm, 1, 2);
1705static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_pwm, S_IRUGO,
1706 show_auto_pwm, NULL, 1, 3);
1707static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp, S_IRUGO | S_IWUSR,
1708 show_auto_temp, set_auto_temp, 1, 1);
1709static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1710 show_auto_temp, set_auto_temp, 1, 0);
1711static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_temp, S_IRUGO | S_IWUSR,
1712 show_auto_temp, set_auto_temp, 1, 2);
1713static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_temp, S_IRUGO | S_IWUSR,
1714 show_auto_temp, set_auto_temp, 1, 3);
1715static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_temp, S_IRUGO | S_IWUSR,
1716 show_auto_temp, set_auto_temp, 1, 4);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001717static SENSOR_DEVICE_ATTR_2(pwm2_auto_start, S_IRUGO | S_IWUSR,
1718 show_auto_pwm, set_auto_pwm, 1, 0);
1719static SENSOR_DEVICE_ATTR(pwm2_auto_slope, S_IRUGO | S_IWUSR,
1720 show_auto_pwm_slope, set_auto_pwm_slope, 1);
Guenter Roeckc4458db2012-12-19 22:17:02 +01001721
1722static SENSOR_DEVICE_ATTR(pwm3_enable, S_IRUGO | S_IWUSR,
1723 show_pwm_enable, set_pwm_enable, 2);
1724static SENSOR_DEVICE_ATTR(pwm3, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 2);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001725static SENSOR_DEVICE_ATTR(pwm3_freq, S_IRUGO, show_pwm_freq, NULL, 2);
Guenter Roeck5c391262013-03-30 15:02:12 -07001726static SENSOR_DEVICE_ATTR(pwm3_auto_channels_temp, S_IRUGO,
Guenter Roeckc4458db2012-12-19 22:17:02 +01001727 show_pwm_temp_map, set_pwm_temp_map, 2);
1728static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_pwm, S_IRUGO | S_IWUSR,
1729 show_auto_pwm, set_auto_pwm, 2, 0);
1730static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_pwm, S_IRUGO | S_IWUSR,
1731 show_auto_pwm, set_auto_pwm, 2, 1);
1732static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_pwm, S_IRUGO | S_IWUSR,
1733 show_auto_pwm, set_auto_pwm, 2, 2);
1734static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_pwm, S_IRUGO,
1735 show_auto_pwm, NULL, 2, 3);
1736static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp, S_IRUGO | S_IWUSR,
1737 show_auto_temp, set_auto_temp, 2, 1);
1738static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1739 show_auto_temp, set_auto_temp, 2, 0);
1740static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_temp, S_IRUGO | S_IWUSR,
1741 show_auto_temp, set_auto_temp, 2, 2);
1742static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_temp, S_IRUGO | S_IWUSR,
1743 show_auto_temp, set_auto_temp, 2, 3);
1744static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_temp, S_IRUGO | S_IWUSR,
1745 show_auto_temp, set_auto_temp, 2, 4);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001746static SENSOR_DEVICE_ATTR_2(pwm3_auto_start, S_IRUGO | S_IWUSR,
1747 show_auto_pwm, set_auto_pwm, 2, 0);
1748static SENSOR_DEVICE_ATTR(pwm3_auto_slope, S_IRUGO | S_IWUSR,
1749 show_auto_pwm_slope, set_auto_pwm_slope, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
Guenter Roeck36c4d982015-03-26 18:18:19 -07001751static SENSOR_DEVICE_ATTR(pwm4_enable, S_IRUGO | S_IWUSR,
1752 show_pwm_enable, set_pwm_enable, 3);
1753static SENSOR_DEVICE_ATTR(pwm4, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 3);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001754static SENSOR_DEVICE_ATTR(pwm4_freq, S_IRUGO, show_pwm_freq, NULL, 3);
Guenter Roeck5c391262013-03-30 15:02:12 -07001755static SENSOR_DEVICE_ATTR(pwm4_auto_channels_temp, S_IRUGO,
Guenter Roeck36c4d982015-03-26 18:18:19 -07001756 show_pwm_temp_map, set_pwm_temp_map, 3);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001757static SENSOR_DEVICE_ATTR_2(pwm4_auto_point1_temp, S_IRUGO | S_IWUSR,
1758 show_auto_temp, set_auto_temp, 2, 1);
1759static SENSOR_DEVICE_ATTR_2(pwm4_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1760 show_auto_temp, set_auto_temp, 2, 0);
1761static SENSOR_DEVICE_ATTR_2(pwm4_auto_point2_temp, S_IRUGO | S_IWUSR,
1762 show_auto_temp, set_auto_temp, 2, 2);
1763static SENSOR_DEVICE_ATTR_2(pwm4_auto_point3_temp, S_IRUGO | S_IWUSR,
1764 show_auto_temp, set_auto_temp, 2, 3);
1765static SENSOR_DEVICE_ATTR_2(pwm4_auto_start, S_IRUGO | S_IWUSR,
1766 show_auto_pwm, set_auto_pwm, 3, 0);
1767static SENSOR_DEVICE_ATTR(pwm4_auto_slope, S_IRUGO | S_IWUSR,
1768 show_auto_pwm_slope, set_auto_pwm_slope, 3);
Guenter Roeck36c4d982015-03-26 18:18:19 -07001769
1770static SENSOR_DEVICE_ATTR(pwm5_enable, S_IRUGO | S_IWUSR,
1771 show_pwm_enable, set_pwm_enable, 4);
1772static SENSOR_DEVICE_ATTR(pwm5, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 4);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001773static SENSOR_DEVICE_ATTR(pwm5_freq, S_IRUGO, show_pwm_freq, NULL, 4);
Guenter Roeck5c391262013-03-30 15:02:12 -07001774static SENSOR_DEVICE_ATTR(pwm5_auto_channels_temp, S_IRUGO,
Guenter Roeck36c4d982015-03-26 18:18:19 -07001775 show_pwm_temp_map, set_pwm_temp_map, 4);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001776static SENSOR_DEVICE_ATTR_2(pwm5_auto_point1_temp, S_IRUGO | S_IWUSR,
1777 show_auto_temp, set_auto_temp, 2, 1);
1778static SENSOR_DEVICE_ATTR_2(pwm5_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1779 show_auto_temp, set_auto_temp, 2, 0);
1780static SENSOR_DEVICE_ATTR_2(pwm5_auto_point2_temp, S_IRUGO | S_IWUSR,
1781 show_auto_temp, set_auto_temp, 2, 2);
1782static SENSOR_DEVICE_ATTR_2(pwm5_auto_point3_temp, S_IRUGO | S_IWUSR,
1783 show_auto_temp, set_auto_temp, 2, 3);
1784static SENSOR_DEVICE_ATTR_2(pwm5_auto_start, S_IRUGO | S_IWUSR,
1785 show_auto_pwm, set_auto_pwm, 4, 0);
1786static SENSOR_DEVICE_ATTR(pwm5_auto_slope, S_IRUGO | S_IWUSR,
1787 show_auto_pwm_slope, set_auto_pwm_slope, 4);
Guenter Roeck36c4d982015-03-26 18:18:19 -07001788
1789static SENSOR_DEVICE_ATTR(pwm6_enable, S_IRUGO | S_IWUSR,
1790 show_pwm_enable, set_pwm_enable, 5);
1791static SENSOR_DEVICE_ATTR(pwm6, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 5);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001792static SENSOR_DEVICE_ATTR(pwm6_freq, S_IRUGO, show_pwm_freq, NULL, 5);
Guenter Roeck5c391262013-03-30 15:02:12 -07001793static SENSOR_DEVICE_ATTR(pwm6_auto_channels_temp, S_IRUGO,
Guenter Roeck36c4d982015-03-26 18:18:19 -07001794 show_pwm_temp_map, set_pwm_temp_map, 5);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001795static SENSOR_DEVICE_ATTR_2(pwm6_auto_point1_temp, S_IRUGO | S_IWUSR,
1796 show_auto_temp, set_auto_temp, 2, 1);
1797static SENSOR_DEVICE_ATTR_2(pwm6_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1798 show_auto_temp, set_auto_temp, 2, 0);
1799static SENSOR_DEVICE_ATTR_2(pwm6_auto_point2_temp, S_IRUGO | S_IWUSR,
1800 show_auto_temp, set_auto_temp, 2, 2);
1801static SENSOR_DEVICE_ATTR_2(pwm6_auto_point3_temp, S_IRUGO | S_IWUSR,
1802 show_auto_temp, set_auto_temp, 2, 3);
1803static SENSOR_DEVICE_ATTR_2(pwm6_auto_start, S_IRUGO | S_IWUSR,
1804 show_auto_pwm, set_auto_pwm, 5, 0);
1805static SENSOR_DEVICE_ATTR(pwm6_auto_slope, S_IRUGO | S_IWUSR,
1806 show_auto_pwm_slope, set_auto_pwm_slope, 5);
Guenter Roeck36c4d982015-03-26 18:18:19 -07001807
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808/* Alarms */
Julia Lawallddc64ae2016-12-22 13:05:21 +01001809static ssize_t alarms_show(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001810 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811{
1812 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001813
Jean Delvare68188ba2005-05-16 18:52:38 +02001814 return sprintf(buf, "%u\n", data->alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815}
Julia Lawallddc64ae2016-12-22 13:05:21 +01001816static DEVICE_ATTR_RO(alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
Jean Delvare0124dd72007-11-25 16:16:41 +01001818static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001819 char *buf)
Jean Delvare0124dd72007-11-25 16:16:41 +01001820{
Jean Delvare0124dd72007-11-25 16:16:41 +01001821 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001822 int bitnr = to_sensor_dev_attr(attr)->index;
1823
Jean Delvare0124dd72007-11-25 16:16:41 +01001824 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
1825}
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001826
Guenter Roeckc9620242015-04-04 09:05:57 -07001827static ssize_t clear_intrusion(struct device *dev,
1828 struct device_attribute *attr, const char *buf,
1829 size_t count)
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001830{
1831 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001832 int config;
Guenter Roeckc9620242015-04-04 09:05:57 -07001833 long val;
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001834
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001835 if (kstrtol(buf, 10, &val) < 0 || val != 0)
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001836 return -EINVAL;
1837
1838 mutex_lock(&data->update_lock);
1839 config = it87_read_value(data, IT87_REG_CONFIG);
1840 if (config < 0) {
1841 count = config;
1842 } else {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001843 config |= BIT(5);
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001844 it87_write_value(data, IT87_REG_CONFIG, config);
1845 /* Invalidate cache to force re-read */
1846 data->valid = 0;
1847 }
1848 mutex_unlock(&data->update_lock);
1849
1850 return count;
1851}
1852
Jean Delvare0124dd72007-11-25 16:16:41 +01001853static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 8);
1854static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 9);
1855static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 10);
1856static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 11);
1857static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 12);
1858static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 13);
1859static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 14);
1860static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 15);
1861static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 0);
1862static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 1);
1863static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 2);
1864static SENSOR_DEVICE_ATTR(fan4_alarm, S_IRUGO, show_alarm, NULL, 3);
1865static SENSOR_DEVICE_ATTR(fan5_alarm, S_IRUGO, show_alarm, NULL, 6);
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07001866static SENSOR_DEVICE_ATTR(fan6_alarm, S_IRUGO, show_alarm, NULL, 7);
Jean Delvare0124dd72007-11-25 16:16:41 +01001867static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 16);
1868static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 17);
1869static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 18);
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001870static SENSOR_DEVICE_ATTR(intrusion0_alarm, S_IRUGO | S_IWUSR,
1871 show_alarm, clear_intrusion, 4);
Jean Delvare0124dd72007-11-25 16:16:41 +01001872
Jean Delvared9b327c2010-03-05 22:17:17 +01001873static ssize_t show_beep(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001874 char *buf)
Jean Delvared9b327c2010-03-05 22:17:17 +01001875{
Jean Delvared9b327c2010-03-05 22:17:17 +01001876 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001877 int bitnr = to_sensor_dev_attr(attr)->index;
1878
Jean Delvared9b327c2010-03-05 22:17:17 +01001879 return sprintf(buf, "%u\n", (data->beeps >> bitnr) & 1);
1880}
Guenter Roeckc9620242015-04-04 09:05:57 -07001881
Jean Delvared9b327c2010-03-05 22:17:17 +01001882static ssize_t set_beep(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001883 const char *buf, size_t count)
Jean Delvared9b327c2010-03-05 22:17:17 +01001884{
1885 int bitnr = to_sensor_dev_attr(attr)->index;
1886 struct it87_data *data = dev_get_drvdata(dev);
1887 long val;
1888
Guenter Roeckc9620242015-04-04 09:05:57 -07001889 if (kstrtol(buf, 10, &val) < 0 || (val != 0 && val != 1))
Jean Delvared9b327c2010-03-05 22:17:17 +01001890 return -EINVAL;
1891
1892 mutex_lock(&data->update_lock);
1893 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
1894 if (val)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001895 data->beeps |= BIT(bitnr);
Jean Delvared9b327c2010-03-05 22:17:17 +01001896 else
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001897 data->beeps &= ~BIT(bitnr);
Jean Delvared9b327c2010-03-05 22:17:17 +01001898 it87_write_value(data, IT87_REG_BEEP_ENABLE, data->beeps);
1899 mutex_unlock(&data->update_lock);
1900 return count;
1901}
1902
1903static SENSOR_DEVICE_ATTR(in0_beep, S_IRUGO | S_IWUSR,
1904 show_beep, set_beep, 1);
1905static SENSOR_DEVICE_ATTR(in1_beep, S_IRUGO, show_beep, NULL, 1);
1906static SENSOR_DEVICE_ATTR(in2_beep, S_IRUGO, show_beep, NULL, 1);
1907static SENSOR_DEVICE_ATTR(in3_beep, S_IRUGO, show_beep, NULL, 1);
1908static SENSOR_DEVICE_ATTR(in4_beep, S_IRUGO, show_beep, NULL, 1);
1909static SENSOR_DEVICE_ATTR(in5_beep, S_IRUGO, show_beep, NULL, 1);
1910static SENSOR_DEVICE_ATTR(in6_beep, S_IRUGO, show_beep, NULL, 1);
1911static SENSOR_DEVICE_ATTR(in7_beep, S_IRUGO, show_beep, NULL, 1);
1912/* fanX_beep writability is set later */
1913static SENSOR_DEVICE_ATTR(fan1_beep, S_IRUGO, show_beep, set_beep, 0);
1914static SENSOR_DEVICE_ATTR(fan2_beep, S_IRUGO, show_beep, set_beep, 0);
1915static SENSOR_DEVICE_ATTR(fan3_beep, S_IRUGO, show_beep, set_beep, 0);
1916static SENSOR_DEVICE_ATTR(fan4_beep, S_IRUGO, show_beep, set_beep, 0);
1917static SENSOR_DEVICE_ATTR(fan5_beep, S_IRUGO, show_beep, set_beep, 0);
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07001918static SENSOR_DEVICE_ATTR(fan6_beep, S_IRUGO, show_beep, set_beep, 0);
Jean Delvared9b327c2010-03-05 22:17:17 +01001919static SENSOR_DEVICE_ATTR(temp1_beep, S_IRUGO | S_IWUSR,
1920 show_beep, set_beep, 2);
1921static SENSOR_DEVICE_ATTR(temp2_beep, S_IRUGO, show_beep, NULL, 2);
1922static SENSOR_DEVICE_ATTR(temp3_beep, S_IRUGO, show_beep, NULL, 2);
1923
Julia Lawallddc64ae2016-12-22 13:05:21 +01001924static ssize_t vrm_show(struct device *dev, struct device_attribute *attr,
1925 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926{
Jean Delvare90d66192007-10-08 18:24:35 +02001927 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001928
Jean Delvarea7be58a2005-12-18 16:40:14 +01001929 return sprintf(buf, "%u\n", data->vrm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930}
Guenter Roeckc9620242015-04-04 09:05:57 -07001931
Julia Lawallddc64ae2016-12-22 13:05:21 +01001932static ssize_t vrm_store(struct device *dev, struct device_attribute *attr,
1933 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001935 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001936 unsigned long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001938 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001939 return -EINVAL;
1940
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 data->vrm = val;
1942
1943 return count;
1944}
Julia Lawallddc64ae2016-12-22 13:05:21 +01001945static DEVICE_ATTR_RW(vrm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
Julia Lawallddc64ae2016-12-22 13:05:21 +01001947static ssize_t cpu0_vid_show(struct device *dev,
1948 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949{
1950 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001951
1952 return sprintf(buf, "%ld\n", (long)vid_from_reg(data->vid, data->vrm));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953}
Julia Lawallddc64ae2016-12-22 13:05:21 +01001954static DEVICE_ATTR_RO(cpu0_vid);
Jean Delvare87808be2006-09-24 21:17:13 +02001955
Jean Delvare738e5e02010-08-14 21:08:50 +02001956static ssize_t show_label(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001957 char *buf)
Jean Delvare738e5e02010-08-14 21:08:50 +02001958{
Guenter Roeck3c4c4972012-01-20 09:29:44 -08001959 static const char * const labels[] = {
Jean Delvare738e5e02010-08-14 21:08:50 +02001960 "+5V",
1961 "5VSB",
1962 "Vbat",
Guenter Roeck638c1c02017-02-08 14:00:21 -08001963 "AVCC",
Jean Delvare738e5e02010-08-14 21:08:50 +02001964 };
Guenter Roeck3c4c4972012-01-20 09:29:44 -08001965 static const char * const labels_it8721[] = {
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001966 "+3.3V",
1967 "3VSB",
1968 "Vbat",
Guenter Roeck638c1c02017-02-08 14:00:21 -08001969 "+3.3V",
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001970 };
1971 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvare738e5e02010-08-14 21:08:50 +02001972 int nr = to_sensor_dev_attr(attr)->index;
Justin Maggardead80802015-08-05 12:53:08 -07001973 const char *label;
Jean Delvare738e5e02010-08-14 21:08:50 +02001974
Guenter Roecka9eebd42017-02-08 13:51:16 -08001975 if (has_vin3_5v(data) && nr == 0)
1976 label = labels[0];
1977 else if (has_12mv_adc(data) || has_10_9mv_adc(data))
Justin Maggardead80802015-08-05 12:53:08 -07001978 label = labels_it8721[nr];
1979 else
1980 label = labels[nr];
1981
1982 return sprintf(buf, "%s\n", label);
Jean Delvare738e5e02010-08-14 21:08:50 +02001983}
1984static SENSOR_DEVICE_ATTR(in3_label, S_IRUGO, show_label, NULL, 0);
1985static SENSOR_DEVICE_ATTR(in7_label, S_IRUGO, show_label, NULL, 1);
1986static SENSOR_DEVICE_ATTR(in8_label, S_IRUGO, show_label, NULL, 2);
Guenter Roeck73055402015-03-26 09:16:32 -07001987/* AVCC3 */
Guenter Roeck638c1c02017-02-08 14:00:21 -08001988static SENSOR_DEVICE_ATTR(in9_label, S_IRUGO, show_label, NULL, 3);
Jean Delvare738e5e02010-08-14 21:08:50 +02001989
Guenter Roeck52929712013-03-30 14:00:08 -07001990static umode_t it87_in_is_visible(struct kobject *kobj,
1991 struct attribute *attr, int index)
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001992{
Guenter Roeck52929712013-03-30 14:00:08 -07001993 struct device *dev = container_of(kobj, struct device, kobj);
1994 struct it87_data *data = dev_get_drvdata(dev);
1995 int i = index / 5; /* voltage index */
1996 int a = index % 5; /* attribute index */
1997
Guenter Roeckf838aa22015-04-01 20:09:36 -07001998 if (index >= 40) { /* in8 and higher only have input attributes */
Guenter Roeck52929712013-03-30 14:00:08 -07001999 i = index - 40 + 8;
2000 a = 0;
2001 }
2002
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002003 if (!(data->has_in & BIT(i)))
Guenter Roeck52929712013-03-30 14:00:08 -07002004 return 0;
2005
2006 if (a == 4 && !data->has_beep)
2007 return 0;
2008
2009 return attr->mode;
2010}
2011
2012static struct attribute *it87_attributes_in[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02002013 &sensor_dev_attr_in0_input.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002014 &sensor_dev_attr_in0_min.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002015 &sensor_dev_attr_in0_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002016 &sensor_dev_attr_in0_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002017 &sensor_dev_attr_in0_beep.dev_attr.attr, /* 4 */
2018
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002019 &sensor_dev_attr_in1_input.dev_attr.attr,
2020 &sensor_dev_attr_in1_min.dev_attr.attr,
2021 &sensor_dev_attr_in1_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002022 &sensor_dev_attr_in1_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002023 &sensor_dev_attr_in1_beep.dev_attr.attr, /* 9 */
2024
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002025 &sensor_dev_attr_in2_input.dev_attr.attr,
2026 &sensor_dev_attr_in2_min.dev_attr.attr,
2027 &sensor_dev_attr_in2_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002028 &sensor_dev_attr_in2_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002029 &sensor_dev_attr_in2_beep.dev_attr.attr, /* 14 */
2030
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002031 &sensor_dev_attr_in3_input.dev_attr.attr,
2032 &sensor_dev_attr_in3_min.dev_attr.attr,
2033 &sensor_dev_attr_in3_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002034 &sensor_dev_attr_in3_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002035 &sensor_dev_attr_in3_beep.dev_attr.attr, /* 19 */
2036
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002037 &sensor_dev_attr_in4_input.dev_attr.attr,
2038 &sensor_dev_attr_in4_min.dev_attr.attr,
2039 &sensor_dev_attr_in4_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002040 &sensor_dev_attr_in4_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002041 &sensor_dev_attr_in4_beep.dev_attr.attr, /* 24 */
2042
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002043 &sensor_dev_attr_in5_input.dev_attr.attr,
2044 &sensor_dev_attr_in5_min.dev_attr.attr,
2045 &sensor_dev_attr_in5_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002046 &sensor_dev_attr_in5_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002047 &sensor_dev_attr_in5_beep.dev_attr.attr, /* 29 */
2048
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002049 &sensor_dev_attr_in6_input.dev_attr.attr,
2050 &sensor_dev_attr_in6_min.dev_attr.attr,
2051 &sensor_dev_attr_in6_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002052 &sensor_dev_attr_in6_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002053 &sensor_dev_attr_in6_beep.dev_attr.attr, /* 34 */
2054
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002055 &sensor_dev_attr_in7_input.dev_attr.attr,
2056 &sensor_dev_attr_in7_min.dev_attr.attr,
2057 &sensor_dev_attr_in7_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002058 &sensor_dev_attr_in7_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002059 &sensor_dev_attr_in7_beep.dev_attr.attr, /* 39 */
Jean Delvare87808be2006-09-24 21:17:13 +02002060
Guenter Roeck52929712013-03-30 14:00:08 -07002061 &sensor_dev_attr_in8_input.dev_attr.attr, /* 40 */
Jean Delvared5f3f6c2016-08-29 13:33:29 +02002062 &sensor_dev_attr_in9_input.dev_attr.attr,
2063 &sensor_dev_attr_in10_input.dev_attr.attr,
2064 &sensor_dev_attr_in11_input.dev_attr.attr,
2065 &sensor_dev_attr_in12_input.dev_attr.attr,
Jean Delvare3c329262016-08-29 13:18:23 +02002066 NULL
Guenter Roeck52929712013-03-30 14:00:08 -07002067};
2068
2069static const struct attribute_group it87_group_in = {
2070 .attrs = it87_attributes_in,
2071 .is_visible = it87_in_is_visible,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002072};
2073
Guenter Roeck87533772013-03-30 14:23:20 -07002074static umode_t it87_temp_is_visible(struct kobject *kobj,
2075 struct attribute *attr, int index)
Guenter Roeck4573acb2012-03-26 16:17:41 -07002076{
Guenter Roeck87533772013-03-30 14:23:20 -07002077 struct device *dev = container_of(kobj, struct device, kobj);
2078 struct it87_data *data = dev_get_drvdata(dev);
2079 int i = index / 7; /* temperature index */
2080 int a = index % 7; /* attribute index */
2081
Guenter Roeckcc18da72015-04-01 10:03:01 -07002082 if (index >= 21) {
2083 i = index - 21 + 3;
2084 a = 0;
2085 }
2086
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002087 if (!(data->has_temp & BIT(i)))
Guenter Roeck87533772013-03-30 14:23:20 -07002088 return 0;
2089
2090 if (a == 5 && !has_temp_offset(data))
2091 return 0;
2092
2093 if (a == 6 && !data->has_beep)
2094 return 0;
2095
2096 return attr->mode;
2097}
2098
2099static struct attribute *it87_attributes_temp[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02002100 &sensor_dev_attr_temp1_input.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002101 &sensor_dev_attr_temp1_max.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002102 &sensor_dev_attr_temp1_min.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002103 &sensor_dev_attr_temp1_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002104 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
Guenter Roeck87533772013-03-30 14:23:20 -07002105 &sensor_dev_attr_temp1_offset.dev_attr.attr, /* 5 */
2106 &sensor_dev_attr_temp1_beep.dev_attr.attr, /* 6 */
2107
Guenter Roeckcc18da72015-04-01 10:03:01 -07002108 &sensor_dev_attr_temp2_input.dev_attr.attr, /* 7 */
Guenter Roeck4573acb2012-03-26 16:17:41 -07002109 &sensor_dev_attr_temp2_max.dev_attr.attr,
2110 &sensor_dev_attr_temp2_min.dev_attr.attr,
2111 &sensor_dev_attr_temp2_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002112 &sensor_dev_attr_temp2_alarm.dev_attr.attr,
Guenter Roeck87533772013-03-30 14:23:20 -07002113 &sensor_dev_attr_temp2_offset.dev_attr.attr,
2114 &sensor_dev_attr_temp2_beep.dev_attr.attr,
2115
Guenter Roeckcc18da72015-04-01 10:03:01 -07002116 &sensor_dev_attr_temp3_input.dev_attr.attr, /* 14 */
Guenter Roeck4573acb2012-03-26 16:17:41 -07002117 &sensor_dev_attr_temp3_max.dev_attr.attr,
2118 &sensor_dev_attr_temp3_min.dev_attr.attr,
2119 &sensor_dev_attr_temp3_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002120 &sensor_dev_attr_temp3_alarm.dev_attr.attr,
Guenter Roeck87533772013-03-30 14:23:20 -07002121 &sensor_dev_attr_temp3_offset.dev_attr.attr,
2122 &sensor_dev_attr_temp3_beep.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002123
Guenter Roeckcc18da72015-04-01 10:03:01 -07002124 &sensor_dev_attr_temp4_input.dev_attr.attr, /* 21 */
2125 &sensor_dev_attr_temp5_input.dev_attr.attr,
2126 &sensor_dev_attr_temp6_input.dev_attr.attr,
Guenter Roeck87533772013-03-30 14:23:20 -07002127 NULL
Guenter Roeck4573acb2012-03-26 16:17:41 -07002128};
2129
Guenter Roeck87533772013-03-30 14:23:20 -07002130static const struct attribute_group it87_group_temp = {
2131 .attrs = it87_attributes_temp,
2132 .is_visible = it87_temp_is_visible,
Guenter Roeck161d8982012-12-19 22:17:01 +01002133};
2134
Guenter Roeckd3766842013-03-30 15:47:21 -07002135static umode_t it87_is_visible(struct kobject *kobj,
2136 struct attribute *attr, int index)
2137{
2138 struct device *dev = container_of(kobj, struct device, kobj);
2139 struct it87_data *data = dev_get_drvdata(dev);
2140
Guenter Roeck8638d0a2015-03-30 11:13:49 -07002141 if ((index == 2 || index == 3) && !data->has_vid)
Guenter Roeckd3766842013-03-30 15:47:21 -07002142 return 0;
2143
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002144 if (index > 3 && !(data->in_internal & BIT(index - 4)))
Guenter Roeckd3766842013-03-30 15:47:21 -07002145 return 0;
2146
2147 return attr->mode;
2148}
2149
Guenter Roeck4573acb2012-03-26 16:17:41 -07002150static struct attribute *it87_attributes[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02002151 &dev_attr_alarms.attr,
Jean Delvare3d30f9e2011-07-25 21:46:10 +02002152 &sensor_dev_attr_intrusion0_alarm.dev_attr.attr,
Guenter Roeck8638d0a2015-03-30 11:13:49 -07002153 &dev_attr_vrm.attr, /* 2 */
2154 &dev_attr_cpu0_vid.attr, /* 3 */
2155 &sensor_dev_attr_in3_label.dev_attr.attr, /* 4 .. 7 */
Guenter Roeckd3766842013-03-30 15:47:21 -07002156 &sensor_dev_attr_in7_label.dev_attr.attr,
2157 &sensor_dev_attr_in8_label.dev_attr.attr,
2158 &sensor_dev_attr_in9_label.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002159 NULL
2160};
2161
2162static const struct attribute_group it87_group = {
2163 .attrs = it87_attributes,
Guenter Roeckd3766842013-03-30 15:47:21 -07002164 .is_visible = it87_is_visible,
Jean Delvare87808be2006-09-24 21:17:13 +02002165};
2166
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002167static umode_t it87_fan_is_visible(struct kobject *kobj,
2168 struct attribute *attr, int index)
2169{
2170 struct device *dev = container_of(kobj, struct device, kobj);
2171 struct it87_data *data = dev_get_drvdata(dev);
2172 int i = index / 5; /* fan index */
2173 int a = index % 5; /* attribute index */
2174
2175 if (index >= 15) { /* fan 4..6 don't have divisor attributes */
2176 i = (index - 15) / 4 + 3;
2177 a = (index - 15) % 4;
2178 }
2179
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002180 if (!(data->has_fan & BIT(i)))
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002181 return 0;
2182
2183 if (a == 3) { /* beep */
2184 if (!data->has_beep)
2185 return 0;
2186 /* first fan beep attribute is writable */
2187 if (i == __ffs(data->has_fan))
2188 return attr->mode | S_IWUSR;
2189 }
2190
2191 if (a == 4 && has_16bit_fans(data)) /* divisor */
2192 return 0;
2193
2194 return attr->mode;
2195}
2196
2197static struct attribute *it87_attributes_fan[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02002198 &sensor_dev_attr_fan1_input.dev_attr.attr,
2199 &sensor_dev_attr_fan1_min.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01002200 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002201 &sensor_dev_attr_fan1_beep.dev_attr.attr, /* 3 */
2202 &sensor_dev_attr_fan1_div.dev_attr.attr, /* 4 */
2203
Jean Delvare87808be2006-09-24 21:17:13 +02002204 &sensor_dev_attr_fan2_input.dev_attr.attr,
2205 &sensor_dev_attr_fan2_min.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01002206 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002207 &sensor_dev_attr_fan2_beep.dev_attr.attr,
2208 &sensor_dev_attr_fan2_div.dev_attr.attr, /* 9 */
2209
Jean Delvare87808be2006-09-24 21:17:13 +02002210 &sensor_dev_attr_fan3_input.dev_attr.attr,
2211 &sensor_dev_attr_fan3_min.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002212 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002213 &sensor_dev_attr_fan3_beep.dev_attr.attr,
2214 &sensor_dev_attr_fan3_div.dev_attr.attr, /* 14 */
2215
2216 &sensor_dev_attr_fan4_input.dev_attr.attr, /* 15 */
Guenter Roecke1169ba2012-12-19 22:17:01 +01002217 &sensor_dev_attr_fan4_min.dev_attr.attr,
2218 &sensor_dev_attr_fan4_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002219 &sensor_dev_attr_fan4_beep.dev_attr.attr,
2220
2221 &sensor_dev_attr_fan5_input.dev_attr.attr, /* 19 */
Guenter Roecke1169ba2012-12-19 22:17:01 +01002222 &sensor_dev_attr_fan5_min.dev_attr.attr,
2223 &sensor_dev_attr_fan5_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002224 &sensor_dev_attr_fan5_beep.dev_attr.attr,
2225
2226 &sensor_dev_attr_fan6_input.dev_attr.attr, /* 23 */
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07002227 &sensor_dev_attr_fan6_min.dev_attr.attr,
2228 &sensor_dev_attr_fan6_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002229 &sensor_dev_attr_fan6_beep.dev_attr.attr,
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07002230 NULL
Jean Delvare723a0aa2010-03-05 22:17:16 +01002231};
2232
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002233static const struct attribute_group it87_group_fan = {
2234 .attrs = it87_attributes_fan,
2235 .is_visible = it87_fan_is_visible,
Guenter Roecke1169ba2012-12-19 22:17:01 +01002236};
Jean Delvare723a0aa2010-03-05 22:17:16 +01002237
Guenter Roeck5c391262013-03-30 15:02:12 -07002238static umode_t it87_pwm_is_visible(struct kobject *kobj,
2239 struct attribute *attr, int index)
Guenter Roeck60878bc2015-03-26 19:57:42 -07002240{
2241 struct device *dev = container_of(kobj, struct device, kobj);
2242 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeck5c391262013-03-30 15:02:12 -07002243 int i = index / 4; /* pwm index */
2244 int a = index % 4; /* attribute index */
Guenter Roeck60878bc2015-03-26 19:57:42 -07002245
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002246 if (!(data->has_pwm & BIT(i)))
Guenter Roeck5c391262013-03-30 15:02:12 -07002247 return 0;
2248
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002249 /* pwmX_auto_channels_temp is only writable if auto pwm is supported */
2250 if (a == 3 && (has_old_autopwm(data) || has_newer_autopwm(data)))
Guenter Roeck5c391262013-03-30 15:02:12 -07002251 return attr->mode | S_IWUSR;
2252
2253 /* pwm2_freq is writable if there are two pwm frequency selects */
2254 if (has_pwm_freq2(data) && i == 1 && a == 2)
Guenter Roeck60878bc2015-03-26 19:57:42 -07002255 return attr->mode | S_IWUSR;
2256
2257 return attr->mode;
2258}
2259
Guenter Roeck5c391262013-03-30 15:02:12 -07002260static struct attribute *it87_attributes_pwm[] = {
2261 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
2262 &sensor_dev_attr_pwm1.dev_attr.attr,
2263 &sensor_dev_attr_pwm1_freq.dev_attr.attr,
2264 &sensor_dev_attr_pwm1_auto_channels_temp.dev_attr.attr,
2265
2266 &sensor_dev_attr_pwm2_enable.dev_attr.attr,
2267 &sensor_dev_attr_pwm2.dev_attr.attr,
2268 &sensor_dev_attr_pwm2_freq.dev_attr.attr,
2269 &sensor_dev_attr_pwm2_auto_channels_temp.dev_attr.attr,
2270
2271 &sensor_dev_attr_pwm3_enable.dev_attr.attr,
2272 &sensor_dev_attr_pwm3.dev_attr.attr,
2273 &sensor_dev_attr_pwm3_freq.dev_attr.attr,
2274 &sensor_dev_attr_pwm3_auto_channels_temp.dev_attr.attr,
2275
2276 &sensor_dev_attr_pwm4_enable.dev_attr.attr,
2277 &sensor_dev_attr_pwm4.dev_attr.attr,
2278 &sensor_dev_attr_pwm4_freq.dev_attr.attr,
2279 &sensor_dev_attr_pwm4_auto_channels_temp.dev_attr.attr,
2280
2281 &sensor_dev_attr_pwm5_enable.dev_attr.attr,
2282 &sensor_dev_attr_pwm5.dev_attr.attr,
2283 &sensor_dev_attr_pwm5_freq.dev_attr.attr,
2284 &sensor_dev_attr_pwm5_auto_channels_temp.dev_attr.attr,
2285
2286 &sensor_dev_attr_pwm6_enable.dev_attr.attr,
2287 &sensor_dev_attr_pwm6.dev_attr.attr,
2288 &sensor_dev_attr_pwm6_freq.dev_attr.attr,
2289 &sensor_dev_attr_pwm6_auto_channels_temp.dev_attr.attr,
2290
2291 NULL
Jean Delvare723a0aa2010-03-05 22:17:16 +01002292};
2293
Guenter Roeck5c391262013-03-30 15:02:12 -07002294static const struct attribute_group it87_group_pwm = {
2295 .attrs = it87_attributes_pwm,
2296 .is_visible = it87_pwm_is_visible,
2297};
2298
2299static umode_t it87_auto_pwm_is_visible(struct kobject *kobj,
2300 struct attribute *attr, int index)
2301{
2302 struct device *dev = container_of(kobj, struct device, kobj);
2303 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002304 int i = index / 11; /* pwm index */
2305 int a = index % 11; /* attribute index */
2306
2307 if (index >= 33) { /* pwm 4..6 */
2308 i = (index - 33) / 6 + 3;
2309 a = (index - 33) % 6 + 4;
2310 }
Guenter Roeck5c391262013-03-30 15:02:12 -07002311
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002312 if (!(data->has_pwm & BIT(i)))
Guenter Roeck5c391262013-03-30 15:02:12 -07002313 return 0;
2314
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002315 if (has_newer_autopwm(data)) {
2316 if (a < 4) /* no auto point pwm */
2317 return 0;
2318 if (a == 8) /* no auto_point4 */
2319 return 0;
2320 }
2321 if (has_old_autopwm(data)) {
2322 if (a >= 9) /* no pwm_auto_start, pwm_auto_slope */
2323 return 0;
2324 }
2325
Guenter Roeck5c391262013-03-30 15:02:12 -07002326 return attr->mode;
2327}
2328
2329static struct attribute *it87_attributes_auto_pwm[] = {
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002330 &sensor_dev_attr_pwm1_auto_point1_pwm.dev_attr.attr,
2331 &sensor_dev_attr_pwm1_auto_point2_pwm.dev_attr.attr,
2332 &sensor_dev_attr_pwm1_auto_point3_pwm.dev_attr.attr,
2333 &sensor_dev_attr_pwm1_auto_point4_pwm.dev_attr.attr,
2334 &sensor_dev_attr_pwm1_auto_point1_temp.dev_attr.attr,
2335 &sensor_dev_attr_pwm1_auto_point1_temp_hyst.dev_attr.attr,
2336 &sensor_dev_attr_pwm1_auto_point2_temp.dev_attr.attr,
2337 &sensor_dev_attr_pwm1_auto_point3_temp.dev_attr.attr,
2338 &sensor_dev_attr_pwm1_auto_point4_temp.dev_attr.attr,
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002339 &sensor_dev_attr_pwm1_auto_start.dev_attr.attr,
2340 &sensor_dev_attr_pwm1_auto_slope.dev_attr.attr,
Guenter Roeck5c391262013-03-30 15:02:12 -07002341
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002342 &sensor_dev_attr_pwm2_auto_point1_pwm.dev_attr.attr, /* 11 */
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002343 &sensor_dev_attr_pwm2_auto_point2_pwm.dev_attr.attr,
2344 &sensor_dev_attr_pwm2_auto_point3_pwm.dev_attr.attr,
2345 &sensor_dev_attr_pwm2_auto_point4_pwm.dev_attr.attr,
2346 &sensor_dev_attr_pwm2_auto_point1_temp.dev_attr.attr,
2347 &sensor_dev_attr_pwm2_auto_point1_temp_hyst.dev_attr.attr,
2348 &sensor_dev_attr_pwm2_auto_point2_temp.dev_attr.attr,
2349 &sensor_dev_attr_pwm2_auto_point3_temp.dev_attr.attr,
2350 &sensor_dev_attr_pwm2_auto_point4_temp.dev_attr.attr,
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002351 &sensor_dev_attr_pwm2_auto_start.dev_attr.attr,
2352 &sensor_dev_attr_pwm2_auto_slope.dev_attr.attr,
Guenter Roeck5c391262013-03-30 15:02:12 -07002353
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002354 &sensor_dev_attr_pwm3_auto_point1_pwm.dev_attr.attr, /* 22 */
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002355 &sensor_dev_attr_pwm3_auto_point2_pwm.dev_attr.attr,
2356 &sensor_dev_attr_pwm3_auto_point3_pwm.dev_attr.attr,
2357 &sensor_dev_attr_pwm3_auto_point4_pwm.dev_attr.attr,
2358 &sensor_dev_attr_pwm3_auto_point1_temp.dev_attr.attr,
2359 &sensor_dev_attr_pwm3_auto_point1_temp_hyst.dev_attr.attr,
2360 &sensor_dev_attr_pwm3_auto_point2_temp.dev_attr.attr,
2361 &sensor_dev_attr_pwm3_auto_point3_temp.dev_attr.attr,
2362 &sensor_dev_attr_pwm3_auto_point4_temp.dev_attr.attr,
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002363 &sensor_dev_attr_pwm3_auto_start.dev_attr.attr,
2364 &sensor_dev_attr_pwm3_auto_slope.dev_attr.attr,
2365
2366 &sensor_dev_attr_pwm4_auto_point1_temp.dev_attr.attr, /* 33 */
2367 &sensor_dev_attr_pwm4_auto_point1_temp_hyst.dev_attr.attr,
2368 &sensor_dev_attr_pwm4_auto_point2_temp.dev_attr.attr,
2369 &sensor_dev_attr_pwm4_auto_point3_temp.dev_attr.attr,
2370 &sensor_dev_attr_pwm4_auto_start.dev_attr.attr,
2371 &sensor_dev_attr_pwm4_auto_slope.dev_attr.attr,
2372
2373 &sensor_dev_attr_pwm5_auto_point1_temp.dev_attr.attr,
2374 &sensor_dev_attr_pwm5_auto_point1_temp_hyst.dev_attr.attr,
2375 &sensor_dev_attr_pwm5_auto_point2_temp.dev_attr.attr,
2376 &sensor_dev_attr_pwm5_auto_point3_temp.dev_attr.attr,
2377 &sensor_dev_attr_pwm5_auto_start.dev_attr.attr,
2378 &sensor_dev_attr_pwm5_auto_slope.dev_attr.attr,
2379
2380 &sensor_dev_attr_pwm6_auto_point1_temp.dev_attr.attr,
2381 &sensor_dev_attr_pwm6_auto_point1_temp_hyst.dev_attr.attr,
2382 &sensor_dev_attr_pwm6_auto_point2_temp.dev_attr.attr,
2383 &sensor_dev_attr_pwm6_auto_point3_temp.dev_attr.attr,
2384 &sensor_dev_attr_pwm6_auto_start.dev_attr.attr,
2385 &sensor_dev_attr_pwm6_auto_slope.dev_attr.attr,
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002386
Guenter Roeck5c391262013-03-30 15:02:12 -07002387 NULL,
2388};
2389
2390static const struct attribute_group it87_group_auto_pwm = {
2391 .attrs = it87_attributes_auto_pwm,
2392 .is_visible = it87_auto_pwm_is_visible,
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002393};
2394
Jean Delvare2d8672c2005-07-19 23:56:35 +02002395/* SuperIO detection - will change isa_address if a chip is found */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002396static int __init it87_find(int sioaddr, unsigned short *address,
2397 struct it87_sio_data *sio_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398{
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +02002399 int err;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002400 u16 chip_type;
Jean Delvare98dd22c2008-10-09 15:33:58 +02002401 const char *board_vendor, *board_name;
Guenter Roeckf83a9cb2015-03-31 09:31:34 -07002402 const struct it87_devices *config;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002404 err = superio_enter(sioaddr);
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +02002405 if (err)
2406 return err;
2407
2408 err = -ENODEV;
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002409 chip_type = force_id ? force_id : superio_inw(sioaddr, DEVID);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002410
2411 switch (chip_type) {
2412 case IT8705F_DEVID:
2413 sio_data->type = it87;
2414 break;
2415 case IT8712F_DEVID:
2416 sio_data->type = it8712;
2417 break;
2418 case IT8716F_DEVID:
2419 case IT8726F_DEVID:
2420 sio_data->type = it8716;
2421 break;
2422 case IT8718F_DEVID:
2423 sio_data->type = it8718;
2424 break;
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +01002425 case IT8720F_DEVID:
2426 sio_data->type = it8720;
2427 break;
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002428 case IT8721F_DEVID:
2429 sio_data->type = it8721;
2430 break;
Jean Delvare16b5dda2012-01-16 22:51:48 +01002431 case IT8728F_DEVID:
2432 sio_data->type = it8728;
2433 break;
Justin Maggardead80802015-08-05 12:53:08 -07002434 case IT8732F_DEVID:
2435 sio_data->type = it8732;
2436 break;
Guenter Roecke531ffc2017-02-08 15:10:27 -08002437 case IT8792E_DEVID:
2438 sio_data->type = it8792;
2439 break;
Guenter Roeckb0636702012-09-07 17:34:41 -06002440 case IT8771E_DEVID:
2441 sio_data->type = it8771;
2442 break;
2443 case IT8772E_DEVID:
2444 sio_data->type = it8772;
2445 break;
Guenter Roeck7bc32d22015-01-17 14:10:24 -08002446 case IT8781F_DEVID:
2447 sio_data->type = it8781;
2448 break;
Guenter Roeck0531d982012-03-02 11:46:44 -08002449 case IT8782F_DEVID:
2450 sio_data->type = it8782;
2451 break;
2452 case IT8783E_DEVID:
2453 sio_data->type = it8783;
2454 break;
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +01002455 case IT8786E_DEVID:
2456 sio_data->type = it8786;
2457 break;
Guenter Roeck4ee07152015-03-25 23:26:28 -07002458 case IT8790E_DEVID:
2459 sio_data->type = it8790;
2460 break;
Rudolf Marek7183ae82014-04-04 18:01:35 +02002461 case IT8603E_DEVID:
Rudolf Marek574e9bd2014-04-04 18:01:35 +02002462 case IT8623E_DEVID:
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002463 sio_data->type = it8603;
2464 break;
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002465 case IT8620E_DEVID:
2466 sio_data->type = it8620;
2467 break;
Guenter Roeck8af1aba2017-02-08 13:52:57 -08002468 case IT8622E_DEVID:
2469 sio_data->type = it8622;
2470 break;
Guenter Roeck71a9c232016-01-18 00:35:58 -08002471 case IT8628E_DEVID:
2472 sio_data->type = it8628;
2473 break;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002474 case 0xffff: /* No device at all */
2475 goto exit;
2476 default:
Joe Perchesa8ca1032011-01-12 21:55:10 +01002477 pr_debug("Unsupported chip (DEVID=0x%x)\n", chip_type);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002478 goto exit;
2479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002481 superio_select(sioaddr, PME);
2482 if (!(superio_inb(sioaddr, IT87_ACT_REG) & 0x01)) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002483 pr_info("Device not activated, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 goto exit;
2485 }
2486
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002487 *address = superio_inw(sioaddr, IT87_BASE_REG) & ~(IT87_EXTENT - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 if (*address == 0) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002489 pr_info("Base address not set, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 goto exit;
2491 }
2492
2493 err = 0;
Maciej S. Szmigiero384548e2017-08-09 17:15:46 +02002494 sio_data->sioaddr = sioaddr;
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002495 sio_data->revision = superio_inb(sioaddr, DEVREV) & 0x0f;
Guenter Roeckfaf392f2015-03-26 08:36:18 -07002496 pr_info("Found IT%04x%s chip at 0x%x, revision %d\n", chip_type,
2497 it87_devices[sio_data->type].suffix,
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +01002498 *address, sio_data->revision);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499
Guenter Roeckf83a9cb2015-03-31 09:31:34 -07002500 config = &it87_devices[sio_data->type];
2501
Guenter Roeck7f5726c2015-03-26 08:49:18 -07002502 /* in7 (VSB or VCCH5V) is always internal on some chips */
Guenter Roeckf83a9cb2015-03-31 09:31:34 -07002503 if (has_in7_internal(config))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002504 sio_data->internal |= BIT(1);
Guenter Roeck7f5726c2015-03-26 08:49:18 -07002505
Jean Delvare738e5e02010-08-14 21:08:50 +02002506 /* in8 (Vbat) is always internal */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002507 sio_data->internal |= BIT(2);
Guenter Roeck7f5726c2015-03-26 08:49:18 -07002508
Guenter Roeck73055402015-03-26 09:16:32 -07002509 /* in9 (AVCC3), always internal if supported */
2510 if (has_avcc3(config))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002511 sio_data->internal |= BIT(3); /* in9 is AVCC */
Guenter Roeck73055402015-03-26 09:16:32 -07002512 else
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002513 sio_data->skip_in |= BIT(9);
Jean Delvare738e5e02010-08-14 21:08:50 +02002514
Guenter Roeck638c1c02017-02-08 14:00:21 -08002515 if (!has_five_pwm(config))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002516 sio_data->skip_pwm |= BIT(3) | BIT(4) | BIT(5);
Guenter Roeck638c1c02017-02-08 14:00:21 -08002517 else if (!has_six_pwm(config))
2518 sio_data->skip_pwm |= BIT(5);
Guenter Roeck36c4d982015-03-26 18:18:19 -07002519
Guenter Roeckf83a9cb2015-03-31 09:31:34 -07002520 if (!has_vid(config))
Jean Delvare895ff262009-12-09 20:35:47 +01002521 sio_data->skip_vid = 1;
Jean Delvared9b327c2010-03-05 22:17:17 +01002522
Guenter Roeck32dd7c42015-02-12 07:40:23 -08002523 /* Read GPIO config and VID value from LDN 7 (GPIO) */
2524 if (sio_data->type == it87) {
Jean Delvared9b327c2010-03-05 22:17:17 +01002525 /* The IT8705F has a different LD number for GPIO */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002526 superio_select(sioaddr, 5);
2527 sio_data->beep_pin = superio_inb(sioaddr,
2528 IT87_SIO_BEEP_PIN_REG) & 0x3f;
Guenter Roeck0531d982012-03-02 11:46:44 -08002529 } else if (sio_data->type == it8783) {
Guenter Roeck088ce2a2013-03-13 16:40:39 -07002530 int reg25, reg27, reg2a, reg2c, regef;
Guenter Roeck0531d982012-03-02 11:46:44 -08002531
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002532 superio_select(sioaddr, GPIO);
Guenter Roeck0531d982012-03-02 11:46:44 -08002533
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002534 reg25 = superio_inb(sioaddr, IT87_SIO_GPIO1_REG);
2535 reg27 = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
2536 reg2a = superio_inb(sioaddr, IT87_SIO_PINX1_REG);
2537 reg2c = superio_inb(sioaddr, IT87_SIO_PINX2_REG);
2538 regef = superio_inb(sioaddr, IT87_SIO_SPI_REG);
Guenter Roeck0531d982012-03-02 11:46:44 -08002539
Guenter Roeck0531d982012-03-02 11:46:44 -08002540 /* Check if fan3 is there or not */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002541 if ((reg27 & BIT(0)) || !(reg2c & BIT(2)))
2542 sio_data->skip_fan |= BIT(2);
Guenter Roeckc9620242015-04-04 09:05:57 -07002543 if ((reg25 & BIT(4)) ||
2544 (!(reg2a & BIT(1)) && (regef & BIT(0))))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002545 sio_data->skip_pwm |= BIT(2);
Guenter Roeck0531d982012-03-02 11:46:44 -08002546
2547 /* Check if fan2 is there or not */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002548 if (reg27 & BIT(7))
2549 sio_data->skip_fan |= BIT(1);
2550 if (reg27 & BIT(3))
2551 sio_data->skip_pwm |= BIT(1);
Guenter Roeck0531d982012-03-02 11:46:44 -08002552
2553 /* VIN5 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002554 if ((reg27 & BIT(0)) || (reg2c & BIT(2)))
2555 sio_data->skip_in |= BIT(5); /* No VIN5 */
Guenter Roeck0531d982012-03-02 11:46:44 -08002556
2557 /* VIN6 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002558 if (reg27 & BIT(1))
2559 sio_data->skip_in |= BIT(6); /* No VIN6 */
Guenter Roeck0531d982012-03-02 11:46:44 -08002560
2561 /*
2562 * VIN7
2563 * Does not depend on bit 2 of Reg2C, contrary to datasheet.
2564 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002565 if (reg27 & BIT(2)) {
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002566 /*
2567 * The data sheet is a bit unclear regarding the
2568 * internal voltage divider for VCCH5V. It says
2569 * "This bit enables and switches VIN7 (pin 91) to the
2570 * internal voltage divider for VCCH5V".
2571 * This is different to other chips, where the internal
2572 * voltage divider would connect VIN7 to an internal
2573 * voltage source. Maybe that is the case here as well.
2574 *
2575 * Since we don't know for sure, re-route it if that is
2576 * not the case, and ask the user to report if the
2577 * resulting voltage is sane.
2578 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002579 if (!(reg2c & BIT(1))) {
2580 reg2c |= BIT(1);
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002581 superio_outb(sioaddr, IT87_SIO_PINX2_REG,
2582 reg2c);
Maciej S. Szmigiero384548e2017-08-09 17:15:46 +02002583 sio_data->need_in7_reroute = true;
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002584 pr_notice("Routing internal VCCH5V to in7.\n");
2585 }
2586 pr_notice("in7 routed to internal voltage divider, with external pin disabled.\n");
2587 pr_notice("Please report if it displays a reasonable voltage.\n");
2588 }
Guenter Roeck0531d982012-03-02 11:46:44 -08002589
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002590 if (reg2c & BIT(0))
2591 sio_data->internal |= BIT(0);
2592 if (reg2c & BIT(1))
2593 sio_data->internal |= BIT(1);
Guenter Roeck0531d982012-03-02 11:46:44 -08002594
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002595 sio_data->beep_pin = superio_inb(sioaddr,
2596 IT87_SIO_BEEP_PIN_REG) & 0x3f;
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002597 } else if (sio_data->type == it8603) {
2598 int reg27, reg29;
Guenter Roeck0531d982012-03-02 11:46:44 -08002599
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002600 superio_select(sioaddr, GPIO);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002601
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002602 reg27 = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002603
2604 /* Check if fan3 is there or not */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002605 if (reg27 & BIT(6))
2606 sio_data->skip_pwm |= BIT(2);
2607 if (reg27 & BIT(7))
2608 sio_data->skip_fan |= BIT(2);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002609
2610 /* Check if fan2 is there or not */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002611 reg29 = superio_inb(sioaddr, IT87_SIO_GPIO5_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002612 if (reg29 & BIT(1))
2613 sio_data->skip_pwm |= BIT(1);
2614 if (reg29 & BIT(2))
2615 sio_data->skip_fan |= BIT(1);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002616
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002617 sio_data->skip_in |= BIT(5); /* No VIN5 */
2618 sio_data->skip_in |= BIT(6); /* No VIN6 */
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002619
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002620 sio_data->beep_pin = superio_inb(sioaddr,
2621 IT87_SIO_BEEP_PIN_REG) & 0x3f;
Guenter Roeck71a9c232016-01-18 00:35:58 -08002622 } else if (sio_data->type == it8620 || sio_data->type == it8628) {
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002623 int reg;
2624
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002625 superio_select(sioaddr, GPIO);
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002626
Guenter Roeck36c4d982015-03-26 18:18:19 -07002627 /* Check for pwm5 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002628 reg = superio_inb(sioaddr, IT87_SIO_GPIO1_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002629 if (reg & BIT(6))
2630 sio_data->skip_pwm |= BIT(4);
Guenter Roeck36c4d982015-03-26 18:18:19 -07002631
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002632 /* Check for fan4, fan5 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002633 reg = superio_inb(sioaddr, IT87_SIO_GPIO2_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002634 if (!(reg & BIT(5)))
2635 sio_data->skip_fan |= BIT(3);
2636 if (!(reg & BIT(4)))
2637 sio_data->skip_fan |= BIT(4);
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002638
2639 /* Check for pwm3, fan3 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002640 reg = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002641 if (reg & BIT(6))
2642 sio_data->skip_pwm |= BIT(2);
2643 if (reg & BIT(7))
2644 sio_data->skip_fan |= BIT(2);
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002645
Guenter Roeck36c4d982015-03-26 18:18:19 -07002646 /* Check for pwm4 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002647 reg = superio_inb(sioaddr, IT87_SIO_GPIO4_REG);
Guenter Roeckd66777c2017-02-08 14:05:56 -08002648 if (reg & BIT(2))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002649 sio_data->skip_pwm |= BIT(3);
Guenter Roeck36c4d982015-03-26 18:18:19 -07002650
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002651 /* Check for pwm2, fan2 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002652 reg = superio_inb(sioaddr, IT87_SIO_GPIO5_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002653 if (reg & BIT(1))
2654 sio_data->skip_pwm |= BIT(1);
2655 if (reg & BIT(2))
2656 sio_data->skip_fan |= BIT(1);
Guenter Roeck36c4d982015-03-26 18:18:19 -07002657 /* Check for pwm6, fan6 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002658 if (!(reg & BIT(7))) {
2659 sio_data->skip_pwm |= BIT(5);
2660 sio_data->skip_fan |= BIT(5);
Guenter Roeck36c4d982015-03-26 18:18:19 -07002661 }
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002662
Guenter Roeck638c1c02017-02-08 14:00:21 -08002663 /* Check if AVCC is on VIN3 */
2664 reg = superio_inb(sioaddr, IT87_SIO_PINX2_REG);
2665 if (reg & BIT(0))
2666 sio_data->internal |= BIT(0);
2667 else
2668 sio_data->skip_in |= BIT(9);
2669
2670 sio_data->beep_pin = superio_inb(sioaddr,
2671 IT87_SIO_BEEP_PIN_REG) & 0x3f;
2672 } else if (sio_data->type == it8622) {
2673 int reg;
2674
2675 superio_select(sioaddr, GPIO);
2676
2677 /* Check for pwm4, fan4 */
2678 reg = superio_inb(sioaddr, IT87_SIO_GPIO1_REG);
2679 if (reg & BIT(6))
2680 sio_data->skip_fan |= BIT(3);
2681 if (reg & BIT(5))
2682 sio_data->skip_pwm |= BIT(3);
2683
2684 /* Check for pwm3, fan3, pwm5, fan5 */
2685 reg = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
2686 if (reg & BIT(6))
2687 sio_data->skip_pwm |= BIT(2);
2688 if (reg & BIT(7))
2689 sio_data->skip_fan |= BIT(2);
2690 if (reg & BIT(3))
2691 sio_data->skip_pwm |= BIT(4);
2692 if (reg & BIT(1))
2693 sio_data->skip_fan |= BIT(4);
2694
2695 /* Check for pwm2, fan2 */
2696 reg = superio_inb(sioaddr, IT87_SIO_GPIO5_REG);
2697 if (reg & BIT(1))
2698 sio_data->skip_pwm |= BIT(1);
2699 if (reg & BIT(2))
2700 sio_data->skip_fan |= BIT(1);
2701
2702 /* Check for AVCC */
2703 reg = superio_inb(sioaddr, IT87_SIO_PINX2_REG);
2704 if (!(reg & BIT(0)))
2705 sio_data->skip_in |= BIT(9);
2706
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002707 sio_data->beep_pin = superio_inb(sioaddr,
2708 IT87_SIO_BEEP_PIN_REG) & 0x3f;
Jean Delvare895ff262009-12-09 20:35:47 +01002709 } else {
Jean Delvare87673dd2006-08-28 14:37:19 +02002710 int reg;
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002711 bool uart6;
Jean Delvare87673dd2006-08-28 14:37:19 +02002712
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002713 superio_select(sioaddr, GPIO);
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002714
Guenter Roecka0df9262015-04-05 16:51:36 -07002715 /* Check for fan4, fan5 */
2716 if (has_five_fans(config)) {
2717 reg = superio_inb(sioaddr, IT87_SIO_GPIO2_REG);
2718 switch (sio_data->type) {
2719 case it8718:
2720 if (reg & BIT(5))
2721 sio_data->skip_fan |= BIT(3);
2722 if (reg & BIT(4))
2723 sio_data->skip_fan |= BIT(4);
2724 break;
2725 case it8720:
2726 case it8721:
2727 case it8728:
2728 if (!(reg & BIT(5)))
2729 sio_data->skip_fan |= BIT(3);
2730 if (!(reg & BIT(4)))
2731 sio_data->skip_fan |= BIT(4);
2732 break;
2733 default:
2734 break;
2735 }
2736 }
2737
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002738 reg = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
Guenter Roeck32dd7c42015-02-12 07:40:23 -08002739 if (!sio_data->skip_vid) {
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002740 /* We need at least 4 VID pins */
2741 if (reg & 0x0f) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002742 pr_info("VID is disabled (pins used for GPIO)\n");
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002743 sio_data->skip_vid = 1;
2744 }
Jean Delvare895ff262009-12-09 20:35:47 +01002745 }
2746
Jean Delvare591ec652009-12-09 20:35:48 +01002747 /* Check if fan3 is there or not */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002748 if (reg & BIT(6))
2749 sio_data->skip_pwm |= BIT(2);
2750 if (reg & BIT(7))
2751 sio_data->skip_fan |= BIT(2);
Jean Delvare591ec652009-12-09 20:35:48 +01002752
2753 /* Check if fan2 is there or not */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002754 reg = superio_inb(sioaddr, IT87_SIO_GPIO5_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002755 if (reg & BIT(1))
2756 sio_data->skip_pwm |= BIT(1);
2757 if (reg & BIT(2))
2758 sio_data->skip_fan |= BIT(1);
Jean Delvare591ec652009-12-09 20:35:48 +01002759
Guenter Roeckc9620242015-04-04 09:05:57 -07002760 if ((sio_data->type == it8718 || sio_data->type == it8720) &&
2761 !(sio_data->skip_vid))
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002762 sio_data->vid_value = superio_inb(sioaddr,
2763 IT87_SIO_VID_REG);
Jean Delvare87673dd2006-08-28 14:37:19 +02002764
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002765 reg = superio_inb(sioaddr, IT87_SIO_PINX2_REG);
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002766
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002767 uart6 = sio_data->type == it8782 && (reg & BIT(2));
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002768
Jean Delvare436cad22010-07-09 16:22:48 +02002769 /*
Maciej S. Szmigiero557cbf42017-08-09 12:05:30 +02002770 * The IT8720F has no VIN7 pin, so VCCH5V should always be
Jean Delvare436cad22010-07-09 16:22:48 +02002771 * routed internally to VIN7 with an internal divider.
2772 * Curiously, there still is a configuration bit to control
2773 * this, which means it can be set incorrectly. And even
2774 * more curiously, many boards out there are improperly
2775 * configured, even though the IT8720F datasheet claims
Maciej S. Szmigiero557cbf42017-08-09 12:05:30 +02002776 * that the internal routing of VCCH5V to VIN7 is the default
Jean Delvare436cad22010-07-09 16:22:48 +02002777 * setting. So we force the internal routing in this case.
Guenter Roeck0531d982012-03-02 11:46:44 -08002778 *
2779 * On IT8782F, VIN7 is multiplexed with one of the UART6 pins.
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002780 * If UART6 is enabled, re-route VIN7 to the internal divider
2781 * if that is not already the case.
Jean Delvare436cad22010-07-09 16:22:48 +02002782 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002783 if ((sio_data->type == it8720 || uart6) && !(reg & BIT(1))) {
2784 reg |= BIT(1);
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002785 superio_outb(sioaddr, IT87_SIO_PINX2_REG, reg);
Maciej S. Szmigiero384548e2017-08-09 17:15:46 +02002786 sio_data->need_in7_reroute = true;
Maciej S. Szmigiero557cbf42017-08-09 12:05:30 +02002787 pr_notice("Routing internal VCCH5V to in7\n");
Jean Delvare436cad22010-07-09 16:22:48 +02002788 }
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002789 if (reg & BIT(0))
2790 sio_data->internal |= BIT(0);
2791 if (reg & BIT(1))
2792 sio_data->internal |= BIT(1);
Jean Delvared9b327c2010-03-05 22:17:17 +01002793
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002794 /*
2795 * On IT8782F, UART6 pins overlap with VIN5, VIN6, and VIN7.
2796 * While VIN7 can be routed to the internal voltage divider,
2797 * VIN5 and VIN6 are not available if UART6 is enabled.
Guenter Roeck4573acb2012-03-26 16:17:41 -07002798 *
2799 * Also, temp3 is not available if UART6 is enabled and TEMPIN3
2800 * is the temperature source. Since we can not read the
2801 * temperature source here, skip_temp is preliminary.
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002802 */
Guenter Roeck4573acb2012-03-26 16:17:41 -07002803 if (uart6) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002804 sio_data->skip_in |= BIT(5) | BIT(6);
2805 sio_data->skip_temp |= BIT(2);
Guenter Roeck4573acb2012-03-26 16:17:41 -07002806 }
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002807
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002808 sio_data->beep_pin = superio_inb(sioaddr,
2809 IT87_SIO_BEEP_PIN_REG) & 0x3f;
Jean Delvare87673dd2006-08-28 14:37:19 +02002810 }
Jean Delvared9b327c2010-03-05 22:17:17 +01002811 if (sio_data->beep_pin)
Joe Perchesa8ca1032011-01-12 21:55:10 +01002812 pr_info("Beeping is supported\n");
Jean Delvare87673dd2006-08-28 14:37:19 +02002813
Jean Delvare98dd22c2008-10-09 15:33:58 +02002814 /* Disable specific features based on DMI strings */
2815 board_vendor = dmi_get_system_info(DMI_BOARD_VENDOR);
2816 board_name = dmi_get_system_info(DMI_BOARD_NAME);
2817 if (board_vendor && board_name) {
Guenter Roeckc9620242015-04-04 09:05:57 -07002818 if (strcmp(board_vendor, "nVIDIA") == 0 &&
2819 strcmp(board_name, "FN68PT") == 0) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002820 /*
2821 * On the Shuttle SN68PT, FAN_CTL2 is apparently not
2822 * connected to a fan, but to something else. One user
2823 * has reported instant system power-off when changing
2824 * the PWM2 duty cycle, so we disable it.
2825 * I use the board name string as the trigger in case
2826 * the same board is ever used in other systems.
2827 */
Joe Perchesa8ca1032011-01-12 21:55:10 +01002828 pr_info("Disabling pwm2 due to hardware constraints\n");
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002829 sio_data->skip_pwm = BIT(1);
Jean Delvare98dd22c2008-10-09 15:33:58 +02002830 }
2831 }
2832
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833exit:
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002834 superio_exit(sioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 return err;
2836}
2837
Maciej S. Szmigiero557cbf42017-08-09 12:05:30 +02002838/*
2839 * Some chips seem to have default value 0xff for all limit
2840 * registers. For low voltage limits it makes no sense and triggers
2841 * alarms, so change to 0 instead. For high temperature limits, it
2842 * means -1 degree C, which surprisingly doesn't trigger an alarm,
2843 * but is still confusing, so change to 127 degrees C.
2844 */
2845static void it87_check_limit_regs(struct it87_data *data)
2846{
2847 int i, reg;
2848
2849 for (i = 0; i < NUM_VIN_LIMIT; i++) {
2850 reg = it87_read_value(data, IT87_REG_VIN_MIN(i));
2851 if (reg == 0xff)
2852 it87_write_value(data, IT87_REG_VIN_MIN(i), 0);
2853 }
2854 for (i = 0; i < NUM_TEMP_LIMIT; i++) {
2855 reg = it87_read_value(data, IT87_REG_TEMP_HIGH(i));
2856 if (reg == 0xff)
2857 it87_write_value(data, IT87_REG_TEMP_HIGH(i), 127);
2858 }
2859}
2860
2861/* Check if voltage monitors are reset manually or by some reason */
2862static void it87_check_voltage_monitors_reset(struct it87_data *data)
2863{
2864 int reg;
2865
2866 reg = it87_read_value(data, IT87_REG_VIN_ENABLE);
2867 if ((reg & 0xff) == 0) {
2868 /* Enable all voltage monitors */
2869 it87_write_value(data, IT87_REG_VIN_ENABLE, 0xff);
2870 }
2871}
2872
2873/* Check if tachometers are reset manually or by some reason */
2874static void it87_check_tachometers_reset(struct platform_device *pdev)
2875{
2876 struct it87_sio_data *sio_data = dev_get_platdata(&pdev->dev);
2877 struct it87_data *data = platform_get_drvdata(pdev);
2878 u8 mask, fan_main_ctrl;
2879
2880 mask = 0x70 & ~(sio_data->skip_fan << 4);
2881 fan_main_ctrl = it87_read_value(data, IT87_REG_FAN_MAIN_CTRL);
2882 if ((fan_main_ctrl & mask) == 0) {
2883 /* Enable all fan tachometers */
2884 fan_main_ctrl |= mask;
2885 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
2886 fan_main_ctrl);
2887 }
2888}
2889
2890/* Set tachometers to 16-bit mode if needed */
2891static void it87_check_tachometers_16bit_mode(struct platform_device *pdev)
2892{
2893 struct it87_data *data = platform_get_drvdata(pdev);
2894 int reg;
2895
2896 if (!has_fan16_config(data))
2897 return;
2898
2899 reg = it87_read_value(data, IT87_REG_FAN_16BIT);
2900 if (~reg & 0x07 & data->has_fan) {
2901 dev_dbg(&pdev->dev,
2902 "Setting fan1-3 to 16-bit mode\n");
2903 it87_write_value(data, IT87_REG_FAN_16BIT,
2904 reg | 0x07);
2905 }
2906}
2907
2908static void it87_start_monitoring(struct it87_data *data)
2909{
2910 it87_write_value(data, IT87_REG_CONFIG,
2911 (it87_read_value(data, IT87_REG_CONFIG) & 0x3e)
2912 | (update_vbat ? 0x41 : 0x01));
2913}
2914
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002915/* Called when we have found a new IT87. */
2916static void it87_init_device(struct platform_device *pdev)
2917{
2918 struct it87_sio_data *sio_data = dev_get_platdata(&pdev->dev);
2919 struct it87_data *data = platform_get_drvdata(pdev);
2920 int tmp, i;
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002921
2922 /*
2923 * For each PWM channel:
2924 * - If it is in automatic mode, setting to manual mode should set
2925 * the fan to full speed by default.
2926 * - If it is in manual mode, we need a mapping to temperature
2927 * channels to use when later setting to automatic mode later.
2928 * Use a 1:1 mapping by default (we are clueless.)
2929 * In both cases, the value can (and should) be changed by the user
2930 * prior to switching to a different mode.
2931 * Note that this is no longer needed for the IT8721F and later, as
2932 * these have separate registers for the temperature mapping and the
2933 * manual duty cycle.
2934 */
Guenter Roeck23100482015-04-02 08:23:45 -07002935 for (i = 0; i < NUM_AUTO_PWM; i++) {
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002936 data->pwm_temp_map[i] = i;
2937 data->pwm_duty[i] = 0x7f; /* Full speed */
2938 data->auto_pwm[i][3] = 0x7f; /* Full speed, hard-coded */
2939 }
2940
Maciej S. Szmigiero557cbf42017-08-09 12:05:30 +02002941 it87_check_limit_regs(data);
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002942
2943 /*
2944 * Temperature channels are not forcibly enabled, as they can be
2945 * set to two different sensor types and we can't guess which one
2946 * is correct for a given system. These channels can be enabled at
2947 * run-time through the temp{1-3}_type sysfs accessors if needed.
2948 */
2949
Maciej S. Szmigiero557cbf42017-08-09 12:05:30 +02002950 it87_check_voltage_monitors_reset(data);
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002951
Maciej S. Szmigiero557cbf42017-08-09 12:05:30 +02002952 it87_check_tachometers_reset(pdev);
2953
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002954 data->fan_main_ctrl = it87_read_value(data, IT87_REG_FAN_MAIN_CTRL);
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002955 data->has_fan = (data->fan_main_ctrl >> 4) & 0x07;
2956
Maciej S. Szmigiero557cbf42017-08-09 12:05:30 +02002957 it87_check_tachometers_16bit_mode(pdev);
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002958
2959 /* Check for additional fans */
2960 if (has_five_fans(data)) {
Maciej S. Szmigiero557cbf42017-08-09 12:05:30 +02002961 tmp = it87_read_value(data, IT87_REG_FAN_16BIT);
2962
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002963 if (tmp & BIT(4))
2964 data->has_fan |= BIT(3); /* fan4 enabled */
2965 if (tmp & BIT(5))
2966 data->has_fan |= BIT(4); /* fan5 enabled */
2967 if (has_six_fans(data) && (tmp & BIT(2)))
2968 data->has_fan |= BIT(5); /* fan6 enabled */
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002969 }
2970
2971 /* Fan input pins may be used for alternative functions */
2972 data->has_fan &= ~sio_data->skip_fan;
2973
2974 /* Check if pwm5, pwm6 are enabled */
2975 if (has_six_pwm(data)) {
2976 /* The following code may be IT8620E specific */
2977 tmp = it87_read_value(data, IT87_REG_FAN_DIV);
2978 if ((tmp & 0xc0) == 0xc0)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002979 sio_data->skip_pwm |= BIT(4);
2980 if (!(tmp & BIT(3)))
2981 sio_data->skip_pwm |= BIT(5);
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002982 }
2983
Maciej S. Szmigiero557cbf42017-08-09 12:05:30 +02002984 it87_start_monitoring(data);
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002985}
2986
2987/* Return 1 if and only if the PWM interface is safe to use */
2988static int it87_check_pwm(struct device *dev)
2989{
2990 struct it87_data *data = dev_get_drvdata(dev);
2991 /*
2992 * Some BIOSes fail to correctly configure the IT87 fans. All fans off
2993 * and polarity set to active low is sign that this is the case so we
2994 * disable pwm control to protect the user.
2995 */
2996 int tmp = it87_read_value(data, IT87_REG_FAN_CTL);
2997
2998 if ((tmp & 0x87) == 0) {
2999 if (fix_pwm_polarity) {
3000 /*
3001 * The user asks us to attempt a chip reconfiguration.
3002 * This means switching to active high polarity and
3003 * inverting all fan speed values.
3004 */
3005 int i;
3006 u8 pwm[3];
3007
Guenter Roeck23100482015-04-02 08:23:45 -07003008 for (i = 0; i < ARRAY_SIZE(pwm); i++)
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07003009 pwm[i] = it87_read_value(data,
3010 IT87_REG_PWM[i]);
3011
3012 /*
3013 * If any fan is in automatic pwm mode, the polarity
3014 * might be correct, as suspicious as it seems, so we
3015 * better don't change anything (but still disable the
3016 * PWM interface).
3017 */
3018 if (!((pwm[0] | pwm[1] | pwm[2]) & 0x80)) {
3019 dev_info(dev,
3020 "Reconfiguring PWM to active high polarity\n");
3021 it87_write_value(data, IT87_REG_FAN_CTL,
3022 tmp | 0x87);
3023 for (i = 0; i < 3; i++)
3024 it87_write_value(data,
3025 IT87_REG_PWM[i],
3026 0x7f & ~pwm[i]);
3027 return 1;
3028 }
3029
3030 dev_info(dev,
3031 "PWM configuration is too broken to be fixed\n");
3032 }
3033
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07003034 return 0;
3035 } else if (fix_pwm_polarity) {
3036 dev_info(dev,
3037 "PWM configuration looks sane, won't touch\n");
3038 }
3039
3040 return 1;
3041}
3042
Bill Pemberton6c931ae2012-11-19 13:22:35 -05003043static int it87_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 struct it87_data *data;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003046 struct resource *res;
3047 struct device *dev = &pdev->dev;
Jingoo Hana8b3a3a2013-07-30 17:13:06 +09003048 struct it87_sio_data *sio_data = dev_get_platdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 int enable_pwm_interface;
Guenter Roeck8638d0a2015-03-30 11:13:49 -07003050 struct device *hwmon_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003052 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
Guenter Roeck62a1d052012-03-24 21:54:41 -07003053 if (!devm_request_region(&pdev->dev, res->start, IT87_EC_EXTENT,
3054 DRVNAME)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003055 dev_err(dev, "Failed to request region 0x%lx-0x%lx\n",
3056 (unsigned long)res->start,
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05003057 (unsigned long)(res->start + IT87_EC_EXTENT - 1));
Guenter Roeck62a1d052012-03-24 21:54:41 -07003058 return -EBUSY;
Jean Delvare8e9afcb2006-12-12 18:18:28 +01003059 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060
Guenter Roeck62a1d052012-03-24 21:54:41 -07003061 data = devm_kzalloc(&pdev->dev, sizeof(struct it87_data), GFP_KERNEL);
3062 if (!data)
3063 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003065 data->addr = res->start;
Maciej S. Szmigiero384548e2017-08-09 17:15:46 +02003066 data->sioaddr = sio_data->sioaddr;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003067 data->type = sio_data->type;
Guenter Roeck483db432012-12-19 22:17:02 +01003068 data->features = it87_devices[sio_data->type].features;
Guenter Roeck5d8d2f22012-12-19 22:17:02 +01003069 data->peci_mask = it87_devices[sio_data->type].peci_mask;
Guenter Roeck19529782012-12-19 22:17:02 +01003070 data->old_peci_mask = it87_devices[sio_data->type].old_peci_mask;
Guenter Roeck483db432012-12-19 22:17:02 +01003071 /*
3072 * IT8705F Datasheet 0.4.1, 3h == Version G.
3073 * IT8712F Datasheet 0.9.1, section 8.3.5 indicates 8h == Version J.
3074 * These are the first revisions with 16-bit tachometer support.
3075 */
3076 switch (data->type) {
3077 case it87:
3078 if (sio_data->revision >= 0x03) {
3079 data->features &= ~FEAT_OLD_AUTOPWM;
Guenter Roeck9faf28c2015-02-12 07:11:38 -08003080 data->features |= FEAT_FAN16_CONFIG | FEAT_16BIT_FANS;
Guenter Roeck483db432012-12-19 22:17:02 +01003081 }
3082 break;
3083 case it8712:
3084 if (sio_data->revision >= 0x08) {
3085 data->features &= ~FEAT_OLD_AUTOPWM;
Guenter Roeck9faf28c2015-02-12 07:11:38 -08003086 data->features |= FEAT_FAN16_CONFIG | FEAT_16BIT_FANS |
3087 FEAT_FIVE_FANS;
Guenter Roeck483db432012-12-19 22:17:02 +01003088 }
3089 break;
3090 default:
3091 break;
3092 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093
3094 /* Now, we do the remaining detection. */
Guenter Roeckc9620242015-04-04 09:05:57 -07003095 if ((it87_read_value(data, IT87_REG_CONFIG) & 0x80) ||
3096 it87_read_value(data, IT87_REG_CHIPID) != 0x90)
Guenter Roeck62a1d052012-03-24 21:54:41 -07003097 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003099 platform_set_drvdata(pdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100
Ingo Molnar9a61bf62006-01-18 23:19:26 +01003101 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 /* Check PWM configuration */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003104 enable_pwm_interface = it87_check_pwm(dev);
Maciej S. Szmigiero384548e2017-08-09 17:15:46 +02003105 if (!enable_pwm_interface)
3106 dev_info(dev,
3107 "Detected broken BIOS defaults, disabling PWM interface\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108
Jean Delvare44c1bcd2010-10-28 20:31:51 +02003109 /* Starting with IT8721F, we handle scaling of internal voltages */
Jean Delvare16b5dda2012-01-16 22:51:48 +01003110 if (has_12mv_adc(data)) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003111 if (sio_data->internal & BIT(0))
3112 data->in_scaled |= BIT(3); /* in3 is AVCC */
3113 if (sio_data->internal & BIT(1))
3114 data->in_scaled |= BIT(7); /* in7 is VSB */
3115 if (sio_data->internal & BIT(2))
3116 data->in_scaled |= BIT(8); /* in8 is Vbat */
3117 if (sio_data->internal & BIT(3))
3118 data->in_scaled |= BIT(9); /* in9 is AVCC */
Guenter Roeck7bc32d22015-01-17 14:10:24 -08003119 } else if (sio_data->type == it8781 || sio_data->type == it8782 ||
3120 sio_data->type == it8783) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003121 if (sio_data->internal & BIT(0))
3122 data->in_scaled |= BIT(3); /* in3 is VCC5V */
3123 if (sio_data->internal & BIT(1))
3124 data->in_scaled |= BIT(7); /* in7 is VCCH5V */
Jean Delvare44c1bcd2010-10-28 20:31:51 +02003125 }
3126
Guenter Roeck4573acb2012-03-26 16:17:41 -07003127 data->has_temp = 0x07;
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003128 if (sio_data->skip_temp & BIT(2)) {
Guenter Roeckc9620242015-04-04 09:05:57 -07003129 if (sio_data->type == it8782 &&
3130 !(it87_read_value(data, IT87_REG_TEMP_EXTRA) & 0x80))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003131 data->has_temp &= ~BIT(2);
Guenter Roeck4573acb2012-03-26 16:17:41 -07003132 }
3133
Guenter Roeckd3766842013-03-30 15:47:21 -07003134 data->in_internal = sio_data->internal;
Maciej S. Szmigiero384548e2017-08-09 17:15:46 +02003135 data->need_in7_reroute = sio_data->need_in7_reroute;
Guenter Roeck52929712013-03-30 14:00:08 -07003136 data->has_in = 0x3ff & ~sio_data->skip_in;
3137
Guenter Roeckcc18da72015-04-01 10:03:01 -07003138 if (has_six_temp(data)) {
3139 u8 reg = it87_read_value(data, IT87_REG_TEMP456_ENABLE);
3140
Guenter Roeckf838aa22015-04-01 20:09:36 -07003141 /* Check for additional temperature sensors */
Guenter Roeckcc18da72015-04-01 10:03:01 -07003142 if ((reg & 0x03) >= 0x02)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003143 data->has_temp |= BIT(3);
Guenter Roeckcc18da72015-04-01 10:03:01 -07003144 if (((reg >> 2) & 0x03) >= 0x02)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003145 data->has_temp |= BIT(4);
Guenter Roeckcc18da72015-04-01 10:03:01 -07003146 if (((reg >> 4) & 0x03) >= 0x02)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003147 data->has_temp |= BIT(5);
Guenter Roeckf838aa22015-04-01 20:09:36 -07003148
3149 /* Check for additional voltage sensors */
3150 if ((reg & 0x03) == 0x01)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003151 data->has_in |= BIT(10);
Guenter Roeckf838aa22015-04-01 20:09:36 -07003152 if (((reg >> 2) & 0x03) == 0x01)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003153 data->has_in |= BIT(11);
Guenter Roeckf838aa22015-04-01 20:09:36 -07003154 if (((reg >> 4) & 0x03) == 0x01)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003155 data->has_in |= BIT(12);
Guenter Roeckcc18da72015-04-01 10:03:01 -07003156 }
3157
Guenter Roeck52929712013-03-30 14:00:08 -07003158 data->has_beep = !!sio_data->beep_pin;
3159
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160 /* Initialize the IT87 chip */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003161 it87_init_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162
Guenter Roeckd3766842013-03-30 15:47:21 -07003163 if (!sio_data->skip_vid) {
3164 data->has_vid = true;
3165 data->vrm = vid_which_vrm();
3166 /* VID reading from Super-I/O config space if available */
3167 data->vid = sio_data->vid_value;
3168 }
3169
Guenter Roeck8638d0a2015-03-30 11:13:49 -07003170 /* Prepare for sysfs hooks */
3171 data->groups[0] = &it87_group;
3172 data->groups[1] = &it87_group_in;
3173 data->groups[2] = &it87_group_temp;
3174 data->groups[3] = &it87_group_fan;
Jean Delvare17d648b2006-08-28 14:23:46 +02003175
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 if (enable_pwm_interface) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003177 data->has_pwm = BIT(ARRAY_SIZE(IT87_REG_PWM)) - 1;
Guenter Roeck5c391262013-03-30 15:02:12 -07003178 data->has_pwm &= ~sio_data->skip_pwm;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01003179
Guenter Roeck8638d0a2015-03-30 11:13:49 -07003180 data->groups[4] = &it87_group_pwm;
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07003181 if (has_old_autopwm(data) || has_newer_autopwm(data))
Guenter Roeck8638d0a2015-03-30 11:13:49 -07003182 data->groups[5] = &it87_group_auto_pwm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 }
3184
Guenter Roeck8638d0a2015-03-30 11:13:49 -07003185 hwmon_dev = devm_hwmon_device_register_with_groups(dev,
3186 it87_devices[sio_data->type].name,
3187 data, data->groups);
3188 return PTR_ERR_OR_ZERO(hwmon_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189}
3190
Maciej S. Szmigiero384548e2017-08-09 17:15:46 +02003191static void __maybe_unused it87_resume_sio(struct platform_device *pdev)
3192{
3193 struct it87_data *data = dev_get_drvdata(&pdev->dev);
3194 int err;
3195 int reg2c;
3196
3197 if (!data->need_in7_reroute)
3198 return;
3199
3200 err = superio_enter(data->sioaddr);
3201 if (err) {
3202 dev_warn(&pdev->dev,
3203 "Unable to enter Super I/O to reroute in7 (%d)",
3204 err);
3205 return;
3206 }
3207
3208 superio_select(data->sioaddr, GPIO);
3209
3210 reg2c = superio_inb(data->sioaddr, IT87_SIO_PINX2_REG);
3211 if (!(reg2c & BIT(1))) {
3212 dev_dbg(&pdev->dev,
3213 "Routing internal VCCH5V to in7 again");
3214
3215 reg2c |= BIT(1);
3216 superio_outb(data->sioaddr, IT87_SIO_PINX2_REG,
3217 reg2c);
3218 }
3219
3220 superio_exit(data->sioaddr);
3221}
3222
3223static int __maybe_unused it87_resume(struct device *dev)
3224{
3225 struct platform_device *pdev = to_platform_device(dev);
3226 struct it87_data *data = dev_get_drvdata(dev);
3227
3228 it87_resume_sio(pdev);
3229
3230 mutex_lock(&data->update_lock);
3231
3232 it87_check_pwm(dev);
3233 it87_check_limit_regs(data);
3234 it87_check_voltage_monitors_reset(data);
3235 it87_check_tachometers_reset(pdev);
3236 it87_check_tachometers_16bit_mode(pdev);
3237
3238 it87_start_monitoring(data);
3239
3240 /* force update */
3241 data->valid = 0;
3242
3243 mutex_unlock(&data->update_lock);
3244
3245 it87_update_device(dev);
3246
3247 return 0;
3248}
3249
3250static SIMPLE_DEV_PM_OPS(it87_dev_pm_ops, NULL, it87_resume);
3251
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07003252static struct platform_driver it87_driver = {
3253 .driver = {
3254 .name = DRVNAME,
Maciej S. Szmigiero384548e2017-08-09 17:15:46 +02003255 .pm = &it87_dev_pm_ops,
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07003256 },
3257 .probe = it87_probe,
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07003258};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259
Guenter Roecke84bd952015-03-28 08:24:29 -07003260static int __init it87_device_add(int index, unsigned short address,
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003261 const struct it87_sio_data *sio_data)
3262{
Guenter Roeck8e50e3c2015-03-28 07:49:14 -07003263 struct platform_device *pdev;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003264 struct resource res = {
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05003265 .start = address + IT87_EC_OFFSET,
3266 .end = address + IT87_EC_OFFSET + IT87_EC_EXTENT - 1,
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003267 .name = DRVNAME,
3268 .flags = IORESOURCE_IO,
3269 };
3270 int err;
3271
Jean Delvareb9acb642009-01-07 16:37:35 +01003272 err = acpi_check_resource_conflict(&res);
3273 if (err)
Guenter Roeck5cae84a2015-03-28 07:44:59 -07003274 return err;
Jean Delvareb9acb642009-01-07 16:37:35 +01003275
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003276 pdev = platform_device_alloc(DRVNAME, address);
Guenter Roeck5cae84a2015-03-28 07:44:59 -07003277 if (!pdev)
3278 return -ENOMEM;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003279
3280 err = platform_device_add_resources(pdev, &res, 1);
3281 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01003282 pr_err("Device resource addition failed (%d)\n", err);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003283 goto exit_device_put;
3284 }
3285
3286 err = platform_device_add_data(pdev, sio_data,
3287 sizeof(struct it87_sio_data));
3288 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01003289 pr_err("Platform data allocation failed\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003290 goto exit_device_put;
3291 }
3292
3293 err = platform_device_add(pdev);
3294 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01003295 pr_err("Device addition failed (%d)\n", err);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003296 goto exit_device_put;
3297 }
3298
Guenter Roecke84bd952015-03-28 08:24:29 -07003299 it87_pdev[index] = pdev;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003300 return 0;
3301
3302exit_device_put:
3303 platform_device_put(pdev);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003304 return err;
3305}
3306
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307static int __init sm_it87_init(void)
3308{
Guenter Roecke84bd952015-03-28 08:24:29 -07003309 int sioaddr[2] = { REG_2E, REG_4E };
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003310 struct it87_sio_data sio_data;
Guenter Roeck83583782017-03-12 06:18:58 -07003311 unsigned short isa_address[2];
Guenter Roecke84bd952015-03-28 08:24:29 -07003312 bool found = false;
3313 int i, err;
Jean Delvarefde09502005-07-19 23:51:07 +02003314
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003315 err = platform_driver_register(&it87_driver);
3316 if (err)
3317 return err;
3318
Guenter Roecke84bd952015-03-28 08:24:29 -07003319 for (i = 0; i < ARRAY_SIZE(sioaddr); i++) {
3320 memset(&sio_data, 0, sizeof(struct it87_sio_data));
Guenter Roeck83583782017-03-12 06:18:58 -07003321 isa_address[i] = 0;
3322 err = it87_find(sioaddr[i], &isa_address[i], &sio_data);
3323 if (err || isa_address[i] == 0)
Guenter Roecke84bd952015-03-28 08:24:29 -07003324 continue;
Guenter Roeck83583782017-03-12 06:18:58 -07003325 /*
3326 * Don't register second chip if its ISA address matches
3327 * the first chip's ISA address.
3328 */
3329 if (i && isa_address[i] == isa_address[0])
3330 break;
Guenter Roecke84bd952015-03-28 08:24:29 -07003331
Guenter Roeck83583782017-03-12 06:18:58 -07003332 err = it87_device_add(i, isa_address[i], &sio_data);
Guenter Roecke84bd952015-03-28 08:24:29 -07003333 if (err)
3334 goto exit_dev_unregister;
Guenter Roeck83583782017-03-12 06:18:58 -07003335
Guenter Roecke84bd952015-03-28 08:24:29 -07003336 found = true;
Guenter Roeck83583782017-03-12 06:18:58 -07003337
3338 /*
3339 * IT8705F may respond on both SIO addresses.
3340 * Stop probing after finding one.
3341 */
3342 if (sio_data.type == it87)
3343 break;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003344 }
3345
Guenter Roecke84bd952015-03-28 08:24:29 -07003346 if (!found) {
3347 err = -ENODEV;
3348 goto exit_unregister;
3349 }
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003350 return 0;
Guenter Roecke84bd952015-03-28 08:24:29 -07003351
3352exit_dev_unregister:
3353 /* NULL check handled by platform_device_unregister */
3354 platform_device_unregister(it87_pdev[0]);
3355exit_unregister:
3356 platform_driver_unregister(&it87_driver);
3357 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358}
3359
3360static void __exit sm_it87_exit(void)
3361{
Guenter Roecke84bd952015-03-28 08:24:29 -07003362 /* NULL check handled by platform_device_unregister */
3363 platform_device_unregister(it87_pdev[1]);
3364 platform_device_unregister(it87_pdev[0]);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003365 platform_driver_unregister(&it87_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366}
3367
Jean Delvare7c81c602014-01-29 20:40:08 +01003368MODULE_AUTHOR("Chris Gauthron, Jean Delvare <jdelvare@suse.de>");
Jean Delvare44c1bcd2010-10-28 20:31:51 +02003369MODULE_DESCRIPTION("IT8705F/IT871xF/IT872xF hardware monitoring driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370module_param(update_vbat, bool, 0);
3371MODULE_PARM_DESC(update_vbat, "Update vbat if set else return powerup value");
3372module_param(fix_pwm_polarity, bool, 0);
Jean Delvare5f2dc792010-03-05 22:17:18 +01003373MODULE_PARM_DESC(fix_pwm_polarity,
3374 "Force PWM polarity to active high (DANGEROUS)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375MODULE_LICENSE("GPL");
3376
3377module_init(sm_it87_init);
3378module_exit(sm_it87_exit);