blob: 0e543dbe0a6b3ece7c81c690a405432740350cd5 [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Jean Delvare5f2dc792010-03-05 22:17:18 +01003 * it87.c - Part of lm_sensors, Linux kernel modules for hardware
4 * monitoring.
5 *
6 * The IT8705F is an LPC-based Super I/O part that contains UARTs, a
7 * parallel port, an IR port, a MIDI port, a floppy controller, etc., in
8 * addition to an Environment Controller (Enhanced Hardware Monitor and
9 * Fan Controller)
10 *
11 * This driver supports only the Environment Controller in the IT8705F and
12 * similar parts. The other devices are supported by different drivers.
13 *
Rudolf Marekc145d5c2014-01-29 20:40:08 +010014 * Supports: IT8603E Super I/O chip w/LPC interface
Guenter Roeck3ba9d972015-02-13 20:13:20 -080015 * IT8620E Super I/O chip w/LPC interface
Guenter Roeck8af1aba2017-02-08 13:52:57 -080016 * IT8622E Super I/O chip w/LPC interface
Rudolf Marek574e9bd2014-04-04 18:01:35 +020017 * IT8623E Super I/O chip w/LPC interface
Guenter Roeck71a9c232016-01-18 00:35:58 -080018 * IT8628E Super I/O chip w/LPC interface
Rudolf Marekc145d5c2014-01-29 20:40:08 +010019 * IT8705F Super I/O chip w/LPC interface
Jean Delvare5f2dc792010-03-05 22:17:18 +010020 * IT8712F Super I/O chip w/LPC interface
21 * IT8716F Super I/O chip w/LPC interface
22 * IT8718F Super I/O chip w/LPC interface
23 * IT8720F Super I/O chip w/LPC interface
Jean Delvare44c1bcd2010-10-28 20:31:51 +020024 * IT8721F Super I/O chip w/LPC interface
Jean Delvare5f2dc792010-03-05 22:17:18 +010025 * IT8726F Super I/O chip w/LPC interface
Jean Delvare16b5dda2012-01-16 22:51:48 +010026 * IT8728F Super I/O chip w/LPC interface
Justin Maggardead80802015-08-05 12:53:08 -070027 * IT8732F Super I/O chip w/LPC interface
Jean Delvare44c1bcd2010-10-28 20:31:51 +020028 * IT8758E Super I/O chip w/LPC interface
Guenter Roeckb0636702012-09-07 17:34:41 -060029 * IT8771E Super I/O chip w/LPC interface
30 * IT8772E Super I/O chip w/LPC interface
Guenter Roeck7bc32d22015-01-17 14:10:24 -080031 * IT8781F Super I/O chip w/LPC interface
Guenter Roeck0531d982012-03-02 11:46:44 -080032 * IT8782F Super I/O chip w/LPC interface
33 * IT8783E/F Super I/O chip w/LPC interface
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +010034 * IT8786E Super I/O chip w/LPC interface
Guenter Roeck4ee07152015-03-25 23:26:28 -070035 * IT8790E Super I/O chip w/LPC interface
Guenter Roecke531ffc2017-02-08 15:10:27 -080036 * IT8792E Super I/O chip w/LPC interface
Jean Delvare5f2dc792010-03-05 22:17:18 +010037 * Sis950 A clone of the IT8705F
38 *
39 * Copyright (C) 2001 Chris Gauthron
Jean Delvare7c81c60f2014-01-29 20:40:08 +010040 * Copyright (C) 2005-2010 Jean Delvare <jdelvare@suse.de>
Jean Delvare5f2dc792010-03-05 22:17:18 +010041 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Joe Perchesa8ca1032011-01-12 21:55:10 +010043#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
44
Guenter Roeck48b2ae72015-04-02 08:06:12 -070045#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/module.h>
47#include <linux/init.h>
48#include <linux/slab.h>
49#include <linux/jiffies.h>
corentin.labbeb74f3fd2007-06-13 20:27:36 +020050#include <linux/platform_device.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040051#include <linux/hwmon.h>
Jean Delvare303760b2005-07-31 21:52:01 +020052#include <linux/hwmon-sysfs.h>
53#include <linux/hwmon-vid.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040054#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010055#include <linux/mutex.h>
Jean Delvare87808be2006-09-24 21:17:13 +020056#include <linux/sysfs.h>
Jean Delvare98dd22c2008-10-09 15:33:58 +020057#include <linux/string.h>
58#include <linux/dmi.h>
Jean Delvareb9acb642009-01-07 16:37:35 +010059#include <linux/acpi.h>
H Hartley Sweeten6055fae2009-09-15 17:18:13 +020060#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
corentin.labbeb74f3fd2007-06-13 20:27:36 +020062#define DRVNAME "it87"
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Justin Maggardead80802015-08-05 12:53:08 -070064enum chips { it87, it8712, it8716, it8718, it8720, it8721, it8728, it8732,
Guenter Roecke531ffc2017-02-08 15:10:27 -080065 it8771, it8772, it8781, it8782, it8783, it8786, it8790,
66 it8792, it8603, it8620, it8622, it8628 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Jean Delvare67b671b2007-12-06 23:13:42 +010068static unsigned short force_id;
69module_param(force_id, ushort, 0);
70MODULE_PARM_DESC(force_id, "Override the detected device ID");
71
Guenter Roecke84bd952015-03-28 08:24:29 -070072static struct platform_device *it87_pdev[2];
corentin.labbeb74f3fd2007-06-13 20:27:36 +020073
Guenter Roeck3c2e3512015-03-28 08:03:10 -070074#define REG_2E 0x2e /* The register to read/write */
Guenter Roecke84bd952015-03-28 08:24:29 -070075#define REG_4E 0x4e /* Secondary register to read/write */
Guenter Roeck3c2e3512015-03-28 08:03:10 -070076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#define DEV 0x07 /* Register: Logical device select */
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#define PME 0x04 /* The device with the fan registers in it */
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +010079
80/* The device with the IT8718F/IT8720F VID value in it */
81#define GPIO 0x07
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#define DEVID 0x20 /* Register: Device ID */
84#define DEVREV 0x22 /* Register: Device Revision */
85
Guenter Roeck3c2e3512015-03-28 08:03:10 -070086static inline int superio_inb(int ioreg, int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
Guenter Roeck3c2e3512015-03-28 08:03:10 -070088 outb(reg, ioreg);
89 return inb(ioreg + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
91
Guenter Roeck3c2e3512015-03-28 08:03:10 -070092static inline void superio_outb(int ioreg, int reg, int val)
Jean Delvare436cad22010-07-09 16:22:48 +020093{
Guenter Roeck3c2e3512015-03-28 08:03:10 -070094 outb(reg, ioreg);
95 outb(val, ioreg + 1);
Jean Delvare436cad22010-07-09 16:22:48 +020096}
97
Guenter Roeck3c2e3512015-03-28 08:03:10 -070098static int superio_inw(int ioreg, int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
100 int val;
Guenter Roeckc9620242015-04-04 09:05:57 -0700101
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700102 outb(reg++, ioreg);
103 val = inb(ioreg + 1) << 8;
104 outb(reg, ioreg);
105 val |= inb(ioreg + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 return val;
107}
108
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700109static inline void superio_select(int ioreg, int ldn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700111 outb(DEV, ioreg);
112 outb(ldn, ioreg + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700115static inline int superio_enter(int ioreg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200117 /*
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700118 * Try to reserve ioreg and ioreg + 1 for exclusive access.
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200119 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700120 if (!request_muxed_region(ioreg, 2, DRVNAME))
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200121 return -EBUSY;
122
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700123 outb(0x87, ioreg);
124 outb(0x01, ioreg);
125 outb(0x55, ioreg);
Guenter Roecke84bd952015-03-28 08:24:29 -0700126 outb(ioreg == REG_4E ? 0xaa : 0x55, ioreg);
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200127 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700130static inline void superio_exit(int ioreg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700132 outb(0x02, ioreg);
133 outb(0x02, ioreg + 1);
134 release_region(ioreg, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
Jean Delvare87673dd2006-08-28 14:37:19 +0200137/* Logical device 4 registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#define IT8712F_DEVID 0x8712
139#define IT8705F_DEVID 0x8705
Jean Delvare17d648b2006-08-28 14:23:46 +0200140#define IT8716F_DEVID 0x8716
Jean Delvare87673dd2006-08-28 14:37:19 +0200141#define IT8718F_DEVID 0x8718
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +0100142#define IT8720F_DEVID 0x8720
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200143#define IT8721F_DEVID 0x8721
Rudolf Marek08a8f6e2007-06-09 10:11:16 -0400144#define IT8726F_DEVID 0x8726
Jean Delvare16b5dda2012-01-16 22:51:48 +0100145#define IT8728F_DEVID 0x8728
Justin Maggardead80802015-08-05 12:53:08 -0700146#define IT8732F_DEVID 0x8732
Guenter Roecke531ffc2017-02-08 15:10:27 -0800147#define IT8792E_DEVID 0x8733
Guenter Roeckb0636702012-09-07 17:34:41 -0600148#define IT8771E_DEVID 0x8771
149#define IT8772E_DEVID 0x8772
Guenter Roeck7bc32d22015-01-17 14:10:24 -0800150#define IT8781F_DEVID 0x8781
Guenter Roeck0531d982012-03-02 11:46:44 -0800151#define IT8782F_DEVID 0x8782
152#define IT8783E_DEVID 0x8783
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +0100153#define IT8786E_DEVID 0x8786
Guenter Roeck4ee07152015-03-25 23:26:28 -0700154#define IT8790E_DEVID 0x8790
Rudolf Marek7183ae82014-04-04 18:01:35 +0200155#define IT8603E_DEVID 0x8603
Guenter Roeck3ba9d972015-02-13 20:13:20 -0800156#define IT8620E_DEVID 0x8620
Guenter Roeck8af1aba2017-02-08 13:52:57 -0800157#define IT8622E_DEVID 0x8622
Rudolf Marek574e9bd2014-04-04 18:01:35 +0200158#define IT8623E_DEVID 0x8623
Guenter Roeck71a9c232016-01-18 00:35:58 -0800159#define IT8628E_DEVID 0x8628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160#define IT87_ACT_REG 0x30
161#define IT87_BASE_REG 0x60
162
Jean Delvare87673dd2006-08-28 14:37:19 +0200163/* Logical device 7 registers (IT8712F and later) */
Guenter Roeck0531d982012-03-02 11:46:44 -0800164#define IT87_SIO_GPIO1_REG 0x25
Guenter Roeck3ba9d972015-02-13 20:13:20 -0800165#define IT87_SIO_GPIO2_REG 0x26
Jean Delvare895ff262009-12-09 20:35:47 +0100166#define IT87_SIO_GPIO3_REG 0x27
Guenter Roeck36c4d982015-03-26 18:18:19 -0700167#define IT87_SIO_GPIO4_REG 0x28
Jean Delvare591ec652009-12-09 20:35:48 +0100168#define IT87_SIO_GPIO5_REG 0x29
Guenter Roeck0531d982012-03-02 11:46:44 -0800169#define IT87_SIO_PINX1_REG 0x2a /* Pin selection */
Jean Delvare87673dd2006-08-28 14:37:19 +0200170#define IT87_SIO_PINX2_REG 0x2c /* Pin selection */
Guenter Roeck0531d982012-03-02 11:46:44 -0800171#define IT87_SIO_SPI_REG 0xef /* SPI function pin select */
Jean Delvare87673dd2006-08-28 14:37:19 +0200172#define IT87_SIO_VID_REG 0xfc /* VID value */
Jean Delvared9b327c2010-03-05 22:17:17 +0100173#define IT87_SIO_BEEP_PIN_REG 0xf6 /* Beep pin mapping */
Jean Delvare87673dd2006-08-28 14:37:19 +0200174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175/* Update battery voltage after every reading if true */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030176static bool update_vbat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178/* Not all BIOSes properly configure the PWM registers */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030179static bool fix_pwm_polarity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181/* Many IT87 constants specified below */
182
183/* Length of ISA address segment */
184#define IT87_EXTENT 8
185
Bjorn Helgaas87b4b662008-01-22 07:21:03 -0500186/* Length of ISA address segment for Environmental Controller */
187#define IT87_EC_EXTENT 2
188
189/* Offset of EC registers from ISA base address */
190#define IT87_EC_OFFSET 5
191
192/* Where are the ISA address/data registers relative to the EC base address */
193#define IT87_ADDR_REG_OFFSET 0
194#define IT87_DATA_REG_OFFSET 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196/*----- The IT87 registers -----*/
197
198#define IT87_REG_CONFIG 0x00
199
200#define IT87_REG_ALARM1 0x01
201#define IT87_REG_ALARM2 0x02
202#define IT87_REG_ALARM3 0x03
203
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800204/*
205 * The IT8718F and IT8720F have the VID value in a different register, in
206 * Super-I/O configuration space.
207 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208#define IT87_REG_VID 0x0a
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800209/*
210 * The IT8705F and IT8712F earlier than revision 0x08 use register 0x0b
211 * for fan divisors. Later IT8712F revisions must use 16-bit tachometer
212 * mode.
213 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214#define IT87_REG_FAN_DIV 0x0b
Jean Delvare17d648b2006-08-28 14:23:46 +0200215#define IT87_REG_FAN_16BIT 0x0c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Guenter Roeckf838aa22015-04-01 20:09:36 -0700217/*
218 * Monitors:
219 * - up to 13 voltage (0 to 7, battery, avcc, 10 to 12)
220 * - up to 6 temp (1 to 6)
221 * - up to 6 fan (1 to 6)
222 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Guenter Roeckfa3f70d2015-03-25 23:15:32 -0700224static const u8 IT87_REG_FAN[] = { 0x0d, 0x0e, 0x0f, 0x80, 0x82, 0x4c };
225static const u8 IT87_REG_FAN_MIN[] = { 0x10, 0x11, 0x12, 0x84, 0x86, 0x4e };
226static const u8 IT87_REG_FANX[] = { 0x18, 0x19, 0x1a, 0x81, 0x83, 0x4d };
227static const u8 IT87_REG_FANX_MIN[] = { 0x1b, 0x1c, 0x1d, 0x85, 0x87, 0x4f };
228static const u8 IT87_REG_TEMP_OFFSET[] = { 0x56, 0x57, 0x59 };
Guenter Roeck161d8982012-12-19 22:17:01 +0100229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230#define IT87_REG_FAN_MAIN_CTRL 0x13
231#define IT87_REG_FAN_CTL 0x14
Guenter Roeck36c4d982015-03-26 18:18:19 -0700232static const u8 IT87_REG_PWM[] = { 0x15, 0x16, 0x17, 0x7f, 0xa7, 0xaf };
233static const u8 IT87_REG_PWM_DUTY[] = { 0x63, 0x6b, 0x73, 0x7b, 0xa3, 0xab };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Guenter Roeck559313c2015-04-01 10:15:38 -0700235static const u8 IT87_REG_VIN[] = { 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26,
Guenter Roeckf838aa22015-04-01 20:09:36 -0700236 0x27, 0x28, 0x2f, 0x2c, 0x2d, 0x2e };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Guenter Roeck559313c2015-04-01 10:15:38 -0700238#define IT87_REG_TEMP(nr) (0x29 + (nr))
Guenter Roeck73055402015-03-26 09:16:32 -0700239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240#define IT87_REG_VIN_MAX(nr) (0x30 + (nr) * 2)
241#define IT87_REG_VIN_MIN(nr) (0x31 + (nr) * 2)
242#define IT87_REG_TEMP_HIGH(nr) (0x40 + (nr) * 2)
243#define IT87_REG_TEMP_LOW(nr) (0x41 + (nr) * 2)
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245#define IT87_REG_VIN_ENABLE 0x50
246#define IT87_REG_TEMP_ENABLE 0x51
Guenter Roeck4573acb2012-03-26 16:17:41 -0700247#define IT87_REG_TEMP_EXTRA 0x55
Jean Delvared9b327c2010-03-05 22:17:17 +0100248#define IT87_REG_BEEP_ENABLE 0x5c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250#define IT87_REG_CHIPID 0x58
251
Guenter Roeck2cbb9c32015-04-05 11:53:29 -0700252static const u8 IT87_REG_AUTO_BASE[] = { 0x60, 0x68, 0x70, 0x78, 0xa0, 0xa8 };
253
254#define IT87_REG_AUTO_TEMP(nr, i) (IT87_REG_AUTO_BASE[nr] + (i))
255#define IT87_REG_AUTO_PWM(nr, i) (IT87_REG_AUTO_BASE[nr] + 5 + (i))
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100256
Guenter Roeckcc18da72015-04-01 10:03:01 -0700257#define IT87_REG_TEMP456_ENABLE 0x77
258
Guenter Roeck23100482015-04-02 08:23:45 -0700259#define NUM_VIN ARRAY_SIZE(IT87_REG_VIN)
260#define NUM_VIN_LIMIT 8
261#define NUM_TEMP 6
262#define NUM_TEMP_OFFSET ARRAY_SIZE(IT87_REG_TEMP_OFFSET)
263#define NUM_TEMP_LIMIT 3
264#define NUM_FAN ARRAY_SIZE(IT87_REG_FAN)
265#define NUM_FAN_DIV 3
266#define NUM_PWM ARRAY_SIZE(IT87_REG_PWM)
267#define NUM_AUTO_PWM ARRAY_SIZE(IT87_REG_PWM)
268
Guenter Roeck483db432012-12-19 22:17:02 +0100269struct it87_devices {
270 const char *name;
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700271 const char * const suffix;
Guenter Roeckcc18da72015-04-01 10:03:01 -0700272 u32 features;
Guenter Roeck19529782012-12-19 22:17:02 +0100273 u8 peci_mask;
274 u8 old_peci_mask;
Guenter Roeck483db432012-12-19 22:17:02 +0100275};
276
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700277#define FEAT_12MV_ADC BIT(0)
278#define FEAT_NEWER_AUTOPWM BIT(1)
279#define FEAT_OLD_AUTOPWM BIT(2)
280#define FEAT_16BIT_FANS BIT(3)
281#define FEAT_TEMP_OFFSET BIT(4)
282#define FEAT_TEMP_PECI BIT(5)
283#define FEAT_TEMP_OLD_PECI BIT(6)
284#define FEAT_FAN16_CONFIG BIT(7) /* Need to enable 16-bit fans */
285#define FEAT_FIVE_FANS BIT(8) /* Supports five fans */
286#define FEAT_VID BIT(9) /* Set if chip supports VID */
287#define FEAT_IN7_INTERNAL BIT(10) /* Set if in7 is internal */
288#define FEAT_SIX_FANS BIT(11) /* Supports six fans */
289#define FEAT_10_9MV_ADC BIT(12)
290#define FEAT_AVCC3 BIT(13) /* Chip supports in9/AVCC3 */
Guenter Roeck638c1c02017-02-08 14:00:21 -0800291#define FEAT_FIVE_PWM BIT(14) /* Chip supports 5 pwm chn */
292#define FEAT_SIX_PWM BIT(15) /* Chip supports 6 pwm chn */
293#define FEAT_PWM_FREQ2 BIT(16) /* Separate pwm freq 2 */
294#define FEAT_SIX_TEMP BIT(17) /* Up to 6 temp sensors */
295#define FEAT_VIN3_5V BIT(18) /* VIN3 connected to +5V */
Guenter Roeck483db432012-12-19 22:17:02 +0100296
297static const struct it87_devices it87_devices[] = {
298 [it87] = {
299 .name = "it87",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700300 .suffix = "F",
Guenter Roeck483db432012-12-19 22:17:02 +0100301 .features = FEAT_OLD_AUTOPWM, /* may need to overwrite */
302 },
303 [it8712] = {
304 .name = "it8712",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700305 .suffix = "F",
Guenter Roeck32dd7c402015-02-12 07:40:23 -0800306 .features = FEAT_OLD_AUTOPWM | FEAT_VID,
307 /* may need to overwrite */
Guenter Roeck483db432012-12-19 22:17:02 +0100308 },
309 [it8716] = {
310 .name = "it8716",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700311 .suffix = "F",
Guenter Roeck32dd7c402015-02-12 07:40:23 -0800312 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET | FEAT_VID
Guenter Roeck60878bc2015-03-26 19:57:42 -0700313 | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS | FEAT_PWM_FREQ2,
Guenter Roeck483db432012-12-19 22:17:02 +0100314 },
315 [it8718] = {
316 .name = "it8718",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700317 .suffix = "F",
Guenter Roeck32dd7c402015-02-12 07:40:23 -0800318 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET | FEAT_VID
Guenter Roeck60878bc2015-03-26 19:57:42 -0700319 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS
320 | FEAT_PWM_FREQ2,
Guenter Roeck19529782012-12-19 22:17:02 +0100321 .old_peci_mask = 0x4,
Guenter Roeck483db432012-12-19 22:17:02 +0100322 },
323 [it8720] = {
324 .name = "it8720",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700325 .suffix = "F",
Guenter Roeck32dd7c402015-02-12 07:40:23 -0800326 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET | FEAT_VID
Guenter Roeck60878bc2015-03-26 19:57:42 -0700327 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS
328 | FEAT_PWM_FREQ2,
Guenter Roeck19529782012-12-19 22:17:02 +0100329 .old_peci_mask = 0x4,
Guenter Roeck483db432012-12-19 22:17:02 +0100330 },
331 [it8721] = {
332 .name = "it8721",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700333 .suffix = "F",
Guenter Roeck483db432012-12-19 22:17:02 +0100334 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800335 | FEAT_TEMP_OFFSET | FEAT_TEMP_OLD_PECI | FEAT_TEMP_PECI
Guenter Roeck60878bc2015-03-26 19:57:42 -0700336 | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS | FEAT_IN7_INTERNAL
337 | FEAT_PWM_FREQ2,
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100338 .peci_mask = 0x05,
Guenter Roeck19529782012-12-19 22:17:02 +0100339 .old_peci_mask = 0x02, /* Actually reports PCH */
Guenter Roeck483db432012-12-19 22:17:02 +0100340 },
341 [it8728] = {
342 .name = "it8728",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700343 .suffix = "F",
Guenter Roeck483db432012-12-19 22:17:02 +0100344 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck7f5726c2015-03-26 08:49:18 -0700345 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_FIVE_FANS
Guenter Roeck60878bc2015-03-26 19:57:42 -0700346 | FEAT_IN7_INTERNAL | FEAT_PWM_FREQ2,
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100347 .peci_mask = 0x07,
Guenter Roeck483db432012-12-19 22:17:02 +0100348 },
Justin Maggardead80802015-08-05 12:53:08 -0700349 [it8732] = {
350 .name = "it8732",
351 .suffix = "F",
352 .features = FEAT_NEWER_AUTOPWM | FEAT_16BIT_FANS
353 | FEAT_TEMP_OFFSET | FEAT_TEMP_OLD_PECI | FEAT_TEMP_PECI
354 | FEAT_10_9MV_ADC | FEAT_IN7_INTERNAL,
355 .peci_mask = 0x07,
356 .old_peci_mask = 0x02, /* Actually reports PCH */
357 },
Guenter Roeckb0636702012-09-07 17:34:41 -0600358 [it8771] = {
359 .name = "it8771",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700360 .suffix = "E",
Guenter Roeckb0636702012-09-07 17:34:41 -0600361 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck60878bc2015-03-26 19:57:42 -0700362 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL
363 | FEAT_PWM_FREQ2,
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800364 /* PECI: guesswork */
365 /* 12mV ADC (OHM) */
366 /* 16 bit fans (OHM) */
367 /* three fans, always 16 bit (guesswork) */
Guenter Roeckb0636702012-09-07 17:34:41 -0600368 .peci_mask = 0x07,
369 },
370 [it8772] = {
371 .name = "it8772",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700372 .suffix = "E",
Guenter Roeckb0636702012-09-07 17:34:41 -0600373 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck60878bc2015-03-26 19:57:42 -0700374 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL
375 | FEAT_PWM_FREQ2,
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800376 /* PECI (coreboot) */
377 /* 12mV ADC (HWSensors4, OHM) */
378 /* 16 bit fans (HWSensors4, OHM) */
379 /* three fans, always 16 bit (datasheet) */
Guenter Roeckb0636702012-09-07 17:34:41 -0600380 .peci_mask = 0x07,
381 },
Guenter Roeck7bc32d22015-01-17 14:10:24 -0800382 [it8781] = {
383 .name = "it8781",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700384 .suffix = "F",
Guenter Roeck7bc32d22015-01-17 14:10:24 -0800385 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET
Guenter Roeck60878bc2015-03-26 19:57:42 -0700386 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_PWM_FREQ2,
Guenter Roeck7bc32d22015-01-17 14:10:24 -0800387 .old_peci_mask = 0x4,
388 },
Guenter Roeck483db432012-12-19 22:17:02 +0100389 [it8782] = {
390 .name = "it8782",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700391 .suffix = "F",
Guenter Roeck19529782012-12-19 22:17:02 +0100392 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET
Guenter Roeck60878bc2015-03-26 19:57:42 -0700393 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_PWM_FREQ2,
Guenter Roeck19529782012-12-19 22:17:02 +0100394 .old_peci_mask = 0x4,
Guenter Roeck483db432012-12-19 22:17:02 +0100395 },
396 [it8783] = {
397 .name = "it8783",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700398 .suffix = "E/F",
Guenter Roeck19529782012-12-19 22:17:02 +0100399 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET
Guenter Roeck60878bc2015-03-26 19:57:42 -0700400 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_PWM_FREQ2,
Guenter Roeck19529782012-12-19 22:17:02 +0100401 .old_peci_mask = 0x4,
Guenter Roeck483db432012-12-19 22:17:02 +0100402 },
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +0100403 [it8786] = {
404 .name = "it8786",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700405 .suffix = "E",
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +0100406 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck60878bc2015-03-26 19:57:42 -0700407 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL
408 | FEAT_PWM_FREQ2,
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +0100409 .peci_mask = 0x07,
410 },
Guenter Roeck4ee07152015-03-25 23:26:28 -0700411 [it8790] = {
412 .name = "it8790",
413 .suffix = "E",
414 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck60878bc2015-03-26 19:57:42 -0700415 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL
416 | FEAT_PWM_FREQ2,
Guenter Roeck4ee07152015-03-25 23:26:28 -0700417 .peci_mask = 0x07,
418 },
Guenter Roecke531ffc2017-02-08 15:10:27 -0800419 [it8792] = {
420 .name = "it8792",
421 .suffix = "E",
422 .features = FEAT_NEWER_AUTOPWM | FEAT_16BIT_FANS
423 | FEAT_TEMP_OFFSET | FEAT_TEMP_OLD_PECI | FEAT_TEMP_PECI
424 | FEAT_10_9MV_ADC | FEAT_IN7_INTERNAL,
425 .peci_mask = 0x07,
426 .old_peci_mask = 0x02, /* Actually reports PCH */
427 },
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100428 [it8603] = {
429 .name = "it8603",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700430 .suffix = "E",
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100431 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck73055402015-03-26 09:16:32 -0700432 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL
Guenter Roeck60878bc2015-03-26 19:57:42 -0700433 | FEAT_AVCC3 | FEAT_PWM_FREQ2,
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100434 .peci_mask = 0x07,
435 },
Guenter Roeck3ba9d972015-02-13 20:13:20 -0800436 [it8620] = {
437 .name = "it8620",
438 .suffix = "E",
439 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeckfa3f70d2015-03-25 23:15:32 -0700440 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_SIX_FANS
Guenter Roeckcc18da72015-04-01 10:03:01 -0700441 | FEAT_IN7_INTERNAL | FEAT_SIX_PWM | FEAT_PWM_FREQ2
Guenter Roecka9eebd42017-02-08 13:51:16 -0800442 | FEAT_SIX_TEMP | FEAT_VIN3_5V,
Guenter Roeck3ba9d972015-02-13 20:13:20 -0800443 .peci_mask = 0x07,
444 },
Guenter Roeck8af1aba2017-02-08 13:52:57 -0800445 [it8622] = {
446 .name = "it8622",
447 .suffix = "E",
448 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
449 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_FIVE_FANS
Guenter Roeck638c1c02017-02-08 14:00:21 -0800450 | FEAT_FIVE_PWM | FEAT_IN7_INTERNAL | FEAT_PWM_FREQ2
451 | FEAT_AVCC3 | FEAT_VIN3_5V,
Guenter Roeck8af1aba2017-02-08 13:52:57 -0800452 .peci_mask = 0x07,
453 },
Guenter Roeck71a9c232016-01-18 00:35:58 -0800454 [it8628] = {
455 .name = "it8628",
456 .suffix = "E",
457 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
458 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_SIX_FANS
459 | FEAT_IN7_INTERNAL | FEAT_SIX_PWM | FEAT_PWM_FREQ2
Guenter Roecka9eebd42017-02-08 13:51:16 -0800460 | FEAT_SIX_TEMP | FEAT_VIN3_5V,
Guenter Roeck71a9c232016-01-18 00:35:58 -0800461 .peci_mask = 0x07,
462 },
Guenter Roeck483db432012-12-19 22:17:02 +0100463};
464
465#define has_16bit_fans(data) ((data)->features & FEAT_16BIT_FANS)
466#define has_12mv_adc(data) ((data)->features & FEAT_12MV_ADC)
Justin Maggardead80802015-08-05 12:53:08 -0700467#define has_10_9mv_adc(data) ((data)->features & FEAT_10_9MV_ADC)
Guenter Roeck483db432012-12-19 22:17:02 +0100468#define has_newer_autopwm(data) ((data)->features & FEAT_NEWER_AUTOPWM)
469#define has_old_autopwm(data) ((data)->features & FEAT_OLD_AUTOPWM)
470#define has_temp_offset(data) ((data)->features & FEAT_TEMP_OFFSET)
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100471#define has_temp_peci(data, nr) (((data)->features & FEAT_TEMP_PECI) && \
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700472 ((data)->peci_mask & BIT(nr)))
Guenter Roeck19529782012-12-19 22:17:02 +0100473#define has_temp_old_peci(data, nr) \
474 (((data)->features & FEAT_TEMP_OLD_PECI) && \
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700475 ((data)->old_peci_mask & BIT(nr)))
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800476#define has_fan16_config(data) ((data)->features & FEAT_FAN16_CONFIG)
Guenter Roeckfa3f70d2015-03-25 23:15:32 -0700477#define has_five_fans(data) ((data)->features & (FEAT_FIVE_FANS | \
478 FEAT_SIX_FANS))
Guenter Roeck32dd7c402015-02-12 07:40:23 -0800479#define has_vid(data) ((data)->features & FEAT_VID)
Guenter Roeck7f5726c2015-03-26 08:49:18 -0700480#define has_in7_internal(data) ((data)->features & FEAT_IN7_INTERNAL)
Guenter Roeckfa3f70d2015-03-25 23:15:32 -0700481#define has_six_fans(data) ((data)->features & FEAT_SIX_FANS)
Guenter Roeck73055402015-03-26 09:16:32 -0700482#define has_avcc3(data) ((data)->features & FEAT_AVCC3)
Guenter Roeck638c1c02017-02-08 14:00:21 -0800483#define has_five_pwm(data) ((data)->features & (FEAT_FIVE_PWM \
484 | FEAT_SIX_PWM))
Guenter Roeck36c4d982015-03-26 18:18:19 -0700485#define has_six_pwm(data) ((data)->features & FEAT_SIX_PWM)
Guenter Roeck60878bc2015-03-26 19:57:42 -0700486#define has_pwm_freq2(data) ((data)->features & FEAT_PWM_FREQ2)
Guenter Roeckcc18da72015-04-01 10:03:01 -0700487#define has_six_temp(data) ((data)->features & FEAT_SIX_TEMP)
Guenter Roecka9eebd42017-02-08 13:51:16 -0800488#define has_vin3_5v(data) ((data)->features & FEAT_VIN3_5V)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200490struct it87_sio_data {
Maciej S. Szmigiero384548e2017-08-09 17:15:46 +0200491 int sioaddr;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200492 enum chips type;
493 /* Values read from Super-I/O config space */
Andrew Paprocki04751692008-08-06 22:41:06 +0200494 u8 revision;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200495 u8 vid_value;
Jean Delvared9b327c2010-03-05 22:17:17 +0100496 u8 beep_pin;
Jean Delvare738e5e02010-08-14 21:08:50 +0200497 u8 internal; /* Internal sensors can be labeled */
Maciej S. Szmigiero384548e2017-08-09 17:15:46 +0200498 bool need_in7_reroute;
Jean Delvare591ec652009-12-09 20:35:48 +0100499 /* Features skipped based on config or DMI */
Guenter Roeck9172b5d2012-03-24 21:49:54 -0700500 u16 skip_in;
Jean Delvare895ff262009-12-09 20:35:47 +0100501 u8 skip_vid;
Jean Delvare591ec652009-12-09 20:35:48 +0100502 u8 skip_fan;
Jean Delvare98dd22c2008-10-09 15:33:58 +0200503 u8 skip_pwm;
Guenter Roeck4573acb2012-03-26 16:17:41 -0700504 u8 skip_temp;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200505};
506
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800507/*
508 * For each registered chip, we need to keep some data in memory.
509 * The structure is dynamically allocated.
510 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511struct it87_data {
Guenter Roeck8638d0a2015-03-30 11:13:49 -0700512 const struct attribute_group *groups[7];
Maciej S. Szmigiero384548e2017-08-09 17:15:46 +0200513 int sioaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 enum chips type;
Guenter Roeckaa8b1872016-08-09 22:09:19 -0700515 u32 features;
Guenter Roeck19529782012-12-19 22:17:02 +0100516 u8 peci_mask;
517 u8 old_peci_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200519 unsigned short addr;
520 const char *name;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100521 struct mutex update_lock;
Paul Fertser952a11c2021-09-24 22:52:02 +0300522 bool valid; /* true if following fields are valid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 unsigned long last_updated; /* In jiffies */
524
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200525 u16 in_scaled; /* Internal voltage sensors are scaled */
Guenter Roeckd3766842013-03-30 15:47:21 -0700526 u16 in_internal; /* Bitfield, internal sensors (for labels) */
Guenter Roeck52929712013-03-30 14:00:08 -0700527 u16 has_in; /* Bitfield, voltage sensors enabled */
Guenter Roeck23100482015-04-02 08:23:45 -0700528 u8 in[NUM_VIN][3]; /* [nr][0]=in, [1]=min, [2]=max */
Maciej S. Szmigiero384548e2017-08-09 17:15:46 +0200529 bool need_in7_reroute;
Jean Delvare9060f8b2006-08-28 14:24:17 +0200530 u8 has_fan; /* Bitfield, fans enabled */
Guenter Roeck23100482015-04-02 08:23:45 -0700531 u16 fan[NUM_FAN][2]; /* Register values, [nr][0]=fan, [1]=min */
Guenter Roeck4573acb2012-03-26 16:17:41 -0700532 u8 has_temp; /* Bitfield, temp sensors enabled */
Guenter Roeck23100482015-04-02 08:23:45 -0700533 s8 temp[NUM_TEMP][4]; /* [nr][0]=temp, [1]=min, [2]=max, [3]=offset */
Guenter Roeck19529782012-12-19 22:17:02 +0100534 u8 sensor; /* Register value (IT87_REG_TEMP_ENABLE) */
535 u8 extra; /* Register value (IT87_REG_TEMP_EXTRA) */
Guenter Roeck23100482015-04-02 08:23:45 -0700536 u8 fan_div[NUM_FAN_DIV];/* Register encoding, shifted right */
Guenter Roeckd3766842013-03-30 15:47:21 -0700537 bool has_vid; /* True if VID supported */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 u8 vid; /* Register encoding, combined */
Jean Delvarea7be58a2005-12-18 16:40:14 +0100539 u8 vrm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 u32 alarms; /* Register encoding, combined */
Guenter Roeck52929712013-03-30 14:00:08 -0700541 bool has_beep; /* true if beep supported */
Jean Delvared9b327c2010-03-05 22:17:17 +0100542 u8 beeps; /* Register encoding */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 u8 fan_main_ctrl; /* Register value */
Jean Delvaref8d0c192007-02-14 21:15:02 +0100544 u8 fan_ctl; /* Register value */
Jean Delvareb99883d2010-03-05 22:17:15 +0100545
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800546 /*
547 * The following 3 arrays correspond to the same registers up to
Jean Delvare6229cdb2010-12-08 16:27:22 +0100548 * the IT8720F. The meaning of bits 6-0 depends on the value of bit
549 * 7, and we want to preserve settings on mode changes, so we have
550 * to track all values separately.
551 * Starting with the IT8721F, the manual PWM duty cycles are stored
552 * in separate registers (8-bit values), so the separate tracking
553 * is no longer needed, but it is still done to keep the driver
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800554 * simple.
555 */
Guenter Roeck5c391262013-03-30 15:02:12 -0700556 u8 has_pwm; /* Bitfield, pwm control enabled */
Guenter Roeck23100482015-04-02 08:23:45 -0700557 u8 pwm_ctrl[NUM_PWM]; /* Register value */
558 u8 pwm_duty[NUM_PWM]; /* Manual PWM value set by user */
559 u8 pwm_temp_map[NUM_PWM];/* PWM to temp. chan. mapping (bits 1-0) */
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100560
561 /* Automatic fan speed control registers */
Guenter Roeck23100482015-04-02 08:23:45 -0700562 u8 auto_pwm[NUM_AUTO_PWM][4]; /* [nr][3] is hard-coded */
563 s8 auto_temp[NUM_AUTO_PWM][5]; /* [nr][0] is point1_temp_hyst */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564};
565
Guenter Roeck0531d982012-03-02 11:46:44 -0800566static int adc_lsb(const struct it87_data *data, int nr)
567{
Justin Maggardead80802015-08-05 12:53:08 -0700568 int lsb;
569
570 if (has_12mv_adc(data))
571 lsb = 120;
572 else if (has_10_9mv_adc(data))
573 lsb = 109;
574 else
575 lsb = 160;
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700576 if (data->in_scaled & BIT(nr))
Guenter Roeck0531d982012-03-02 11:46:44 -0800577 lsb <<= 1;
578 return lsb;
579}
580
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200581static u8 in_to_reg(const struct it87_data *data, int nr, long val)
582{
Justin Maggardead80802015-08-05 12:53:08 -0700583 val = DIV_ROUND_CLOSEST(val * 10, adc_lsb(data, nr));
Guenter Roeck2a844c12013-01-09 08:09:34 -0800584 return clamp_val(val, 0, 255);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200585}
586
587static int in_from_reg(const struct it87_data *data, int nr, int val)
588{
Justin Maggardead80802015-08-05 12:53:08 -0700589 return DIV_ROUND_CLOSEST(val * adc_lsb(data, nr), 10);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200590}
Jean Delvare0df6454d2010-10-28 20:31:51 +0200591
592static inline u8 FAN_TO_REG(long rpm, int div)
593{
594 if (rpm == 0)
595 return 255;
Guenter Roeck2a844c12013-01-09 08:09:34 -0800596 rpm = clamp_val(rpm, 1, 1000000);
597 return clamp_val((1350000 + rpm * div / 2) / (rpm * div), 1, 254);
Jean Delvare0df6454d2010-10-28 20:31:51 +0200598}
599
600static inline u16 FAN16_TO_REG(long rpm)
601{
602 if (rpm == 0)
603 return 0xffff;
Guenter Roeck2a844c12013-01-09 08:09:34 -0800604 return clamp_val((1350000 + rpm) / (rpm * 2), 1, 0xfffe);
Jean Delvare0df6454d2010-10-28 20:31:51 +0200605}
606
607#define FAN_FROM_REG(val, div) ((val) == 0 ? -1 : (val) == 255 ? 0 : \
608 1350000 / ((val) * (div)))
609/* The divider is fixed to 2 in 16-bit mode */
610#define FAN16_FROM_REG(val) ((val) == 0 ? -1 : (val) == 0xffff ? 0 : \
611 1350000 / ((val) * 2))
612
Guenter Roeck2a844c12013-01-09 08:09:34 -0800613#define TEMP_TO_REG(val) (clamp_val(((val) < 0 ? (((val) - 500) / 1000) : \
614 ((val) + 500) / 1000), -128, 127))
Jean Delvare0df6454d2010-10-28 20:31:51 +0200615#define TEMP_FROM_REG(val) ((val) * 1000)
616
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200617static u8 pwm_to_reg(const struct it87_data *data, long val)
618{
Jean Delvare16b5dda2012-01-16 22:51:48 +0100619 if (has_newer_autopwm(data))
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200620 return val;
621 else
622 return val >> 1;
623}
624
625static int pwm_from_reg(const struct it87_data *data, u8 reg)
626{
Jean Delvare16b5dda2012-01-16 22:51:48 +0100627 if (has_newer_autopwm(data))
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200628 return reg;
629 else
630 return (reg & 0x7f) << 1;
631}
632
Jean Delvare0df6454d2010-10-28 20:31:51 +0200633static int DIV_TO_REG(int val)
634{
635 int answer = 0;
Guenter Roeckc9620242015-04-04 09:05:57 -0700636
Jean Delvare0df6454d2010-10-28 20:31:51 +0200637 while (answer < 7 && (val >>= 1))
638 answer++;
639 return answer;
640}
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700641
642#define DIV_FROM_REG(val) BIT(val)
Jean Delvare0df6454d2010-10-28 20:31:51 +0200643
Guenter Roeckf56c9c02015-03-26 20:01:24 -0700644/*
645 * PWM base frequencies. The frequency has to be divided by either 128 or 256,
646 * depending on the chip type, to calculate the actual PWM frequency.
647 *
648 * Some of the chip datasheets suggest a base frequency of 51 kHz instead
649 * of 750 kHz for the slowest base frequency, resulting in a PWM frequency
650 * of 200 Hz. Sometimes both PWM frequency select registers are affected,
651 * sometimes just one. It is unknown if this is a datasheet error or real,
652 * so this is ignored for now.
653 */
Jean Delvare0df6454d2010-10-28 20:31:51 +0200654static const unsigned int pwm_freq[8] = {
Guenter Roeckf56c9c02015-03-26 20:01:24 -0700655 48000000,
656 24000000,
657 12000000,
658 8000000,
659 6000000,
660 3000000,
661 1500000,
662 750000,
Jean Delvare0df6454d2010-10-28 20:31:51 +0200663};
664
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700665/*
666 * Must be called with data->update_lock held, except during initialization.
667 * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
668 * would slow down the IT87 access and should not be necessary.
669 */
670static int it87_read_value(struct it87_data *data, u8 reg)
671{
672 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
673 return inb_p(data->addr + IT87_DATA_REG_OFFSET);
674}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700676/*
677 * Must be called with data->update_lock held, except during initialization.
678 * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
679 * would slow down the IT87 access and should not be necessary.
680 */
681static void it87_write_value(struct it87_data *data, u8 reg, u8 value)
682{
683 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
684 outb_p(value, data->addr + IT87_DATA_REG_OFFSET);
685}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700687static void it87_update_pwm_ctrl(struct it87_data *data, int nr)
688{
689 data->pwm_ctrl[nr] = it87_read_value(data, IT87_REG_PWM[nr]);
690 if (has_newer_autopwm(data)) {
Guenter Roeck0624d862015-04-06 21:04:18 -0700691 data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03;
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700692 data->pwm_duty[nr] = it87_read_value(data,
693 IT87_REG_PWM_DUTY[nr]);
694 } else {
695 if (data->pwm_ctrl[nr] & 0x80) /* Automatic mode */
696 data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03;
697 else /* Manual mode */
698 data->pwm_duty[nr] = data->pwm_ctrl[nr] & 0x7f;
699 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700701 if (has_old_autopwm(data)) {
702 int i;
703
704 for (i = 0; i < 5 ; i++)
705 data->auto_temp[nr][i] = it87_read_value(data,
706 IT87_REG_AUTO_TEMP(nr, i));
707 for (i = 0; i < 3 ; i++)
708 data->auto_pwm[nr][i] = it87_read_value(data,
709 IT87_REG_AUTO_PWM(nr, i));
Guenter Roeck2cbb9c32015-04-05 11:53:29 -0700710 } else if (has_newer_autopwm(data)) {
711 int i;
712
713 /*
714 * 0: temperature hysteresis (base + 5)
715 * 1: fan off temperature (base + 0)
716 * 2: fan start temperature (base + 1)
717 * 3: fan max temperature (base + 2)
718 */
719 data->auto_temp[nr][0] =
720 it87_read_value(data, IT87_REG_AUTO_TEMP(nr, 5));
721
722 for (i = 0; i < 3 ; i++)
723 data->auto_temp[nr][i + 1] =
724 it87_read_value(data,
725 IT87_REG_AUTO_TEMP(nr, i));
726 /*
727 * 0: start pwm value (base + 3)
728 * 1: pwm slope (base + 4, 1/8th pwm)
729 */
730 data->auto_pwm[nr][0] =
731 it87_read_value(data, IT87_REG_AUTO_TEMP(nr, 3));
732 data->auto_pwm[nr][1] =
733 it87_read_value(data, IT87_REG_AUTO_TEMP(nr, 4));
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700734 }
735}
736
737static struct it87_data *it87_update_device(struct device *dev)
738{
739 struct it87_data *data = dev_get_drvdata(dev);
740 int i;
741
742 mutex_lock(&data->update_lock);
743
Guenter Roeckc9620242015-04-04 09:05:57 -0700744 if (time_after(jiffies, data->last_updated + HZ + HZ / 2) ||
745 !data->valid) {
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700746 if (update_vbat) {
747 /*
748 * Cleared after each update, so reenable. Value
749 * returned by this read will be previous value
750 */
751 it87_write_value(data, IT87_REG_CONFIG,
752 it87_read_value(data, IT87_REG_CONFIG) | 0x40);
753 }
Guenter Roeck23100482015-04-02 08:23:45 -0700754 for (i = 0; i < NUM_VIN; i++) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700755 if (!(data->has_in & BIT(i)))
Guenter Roeck559313c2015-04-01 10:15:38 -0700756 continue;
757
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700758 data->in[i][0] =
Guenter Roeck559313c2015-04-01 10:15:38 -0700759 it87_read_value(data, IT87_REG_VIN[i]);
760
761 /* VBAT and AVCC don't have limit registers */
Guenter Roeck23100482015-04-02 08:23:45 -0700762 if (i >= NUM_VIN_LIMIT)
Guenter Roeck559313c2015-04-01 10:15:38 -0700763 continue;
764
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700765 data->in[i][1] =
766 it87_read_value(data, IT87_REG_VIN_MIN(i));
767 data->in[i][2] =
768 it87_read_value(data, IT87_REG_VIN_MAX(i));
769 }
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700770
Guenter Roeck23100482015-04-02 08:23:45 -0700771 for (i = 0; i < NUM_FAN; i++) {
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700772 /* Skip disabled fans */
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700773 if (!(data->has_fan & BIT(i)))
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700774 continue;
775
776 data->fan[i][1] =
777 it87_read_value(data, IT87_REG_FAN_MIN[i]);
778 data->fan[i][0] = it87_read_value(data,
779 IT87_REG_FAN[i]);
780 /* Add high byte if in 16-bit mode */
781 if (has_16bit_fans(data)) {
782 data->fan[i][0] |= it87_read_value(data,
783 IT87_REG_FANX[i]) << 8;
784 data->fan[i][1] |= it87_read_value(data,
785 IT87_REG_FANX_MIN[i]) << 8;
786 }
787 }
Guenter Roeck23100482015-04-02 08:23:45 -0700788 for (i = 0; i < NUM_TEMP; i++) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700789 if (!(data->has_temp & BIT(i)))
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700790 continue;
791 data->temp[i][0] =
792 it87_read_value(data, IT87_REG_TEMP(i));
Guenter Roeckcc18da72015-04-01 10:03:01 -0700793
Guenter Roeck23100482015-04-02 08:23:45 -0700794 if (has_temp_offset(data) && i < NUM_TEMP_OFFSET)
795 data->temp[i][3] =
796 it87_read_value(data,
797 IT87_REG_TEMP_OFFSET[i]);
798
799 if (i >= NUM_TEMP_LIMIT)
Guenter Roeckcc18da72015-04-01 10:03:01 -0700800 continue;
801
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700802 data->temp[i][1] =
803 it87_read_value(data, IT87_REG_TEMP_LOW(i));
804 data->temp[i][2] =
805 it87_read_value(data, IT87_REG_TEMP_HIGH(i));
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700806 }
807
808 /* Newer chips don't have clock dividers */
809 if ((data->has_fan & 0x07) && !has_16bit_fans(data)) {
810 i = it87_read_value(data, IT87_REG_FAN_DIV);
811 data->fan_div[0] = i & 0x07;
812 data->fan_div[1] = (i >> 3) & 0x07;
813 data->fan_div[2] = (i & 0x40) ? 3 : 1;
814 }
815
816 data->alarms =
817 it87_read_value(data, IT87_REG_ALARM1) |
818 (it87_read_value(data, IT87_REG_ALARM2) << 8) |
819 (it87_read_value(data, IT87_REG_ALARM3) << 16);
820 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
821
822 data->fan_main_ctrl = it87_read_value(data,
823 IT87_REG_FAN_MAIN_CTRL);
824 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL);
Guenter Roeck0624d862015-04-06 21:04:18 -0700825 for (i = 0; i < NUM_PWM; i++) {
826 if (!(data->has_pwm & BIT(i)))
827 continue;
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700828 it87_update_pwm_ctrl(data, i);
Guenter Roeck0624d862015-04-06 21:04:18 -0700829 }
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700830
831 data->sensor = it87_read_value(data, IT87_REG_TEMP_ENABLE);
832 data->extra = it87_read_value(data, IT87_REG_TEMP_EXTRA);
833 /*
834 * The IT8705F does not have VID capability.
835 * The IT8718F and later don't use IT87_REG_VID for the
836 * same purpose.
837 */
838 if (data->type == it8712 || data->type == it8716) {
839 data->vid = it87_read_value(data, IT87_REG_VID);
840 /*
841 * The older IT8712F revisions had only 5 VID pins,
842 * but we assume it is always safe to read 6 bits.
843 */
844 data->vid &= 0x3f;
845 }
846 data->last_updated = jiffies;
Paul Fertser952a11c2021-09-24 22:52:02 +0300847 data->valid = true;
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700848 }
849
850 mutex_unlock(&data->update_lock);
851
852 return data;
853}
Jean Delvarefde09502005-07-19 23:51:07 +0200854
Jean Delvare20ad93d2005-06-05 11:53:25 +0200855static ssize_t show_in(struct device *dev, struct device_attribute *attr,
Guenter Roeck929c6a52012-12-19 22:17:00 +0100856 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857{
Guenter Roeck929c6a52012-12-19 22:17:00 +0100858 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -0700860 int index = sattr->index;
861 int nr = sattr->nr;
862
Guenter Roeck929c6a52012-12-19 22:17:00 +0100863 return sprintf(buf, "%d\n", in_from_reg(data, nr, data->in[nr][index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864}
865
Guenter Roeck929c6a52012-12-19 22:17:00 +0100866static ssize_t set_in(struct device *dev, struct device_attribute *attr,
867 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
Guenter Roeck929c6a52012-12-19 22:17:00 +0100869 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200870 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -0700871 int index = sattr->index;
872 int nr = sattr->nr;
Jean Delvaref5f64502010-03-05 22:17:19 +0100873 unsigned long val;
874
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100875 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100876 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100878 mutex_lock(&data->update_lock);
Guenter Roeck929c6a52012-12-19 22:17:00 +0100879 data->in[nr][index] = in_to_reg(data, nr, val);
880 it87_write_value(data,
881 index == 1 ? IT87_REG_VIN_MIN(nr)
882 : IT87_REG_VIN_MAX(nr),
883 data->in[nr][index]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100884 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 return count;
886}
887
Guenter Roeck929c6a52012-12-19 22:17:00 +0100888static SENSOR_DEVICE_ATTR_2(in0_input, S_IRUGO, show_in, NULL, 0, 0);
889static SENSOR_DEVICE_ATTR_2(in0_min, S_IRUGO | S_IWUSR, show_in, set_in,
890 0, 1);
891static SENSOR_DEVICE_ATTR_2(in0_max, S_IRUGO | S_IWUSR, show_in, set_in,
892 0, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Guenter Roeck929c6a52012-12-19 22:17:00 +0100894static SENSOR_DEVICE_ATTR_2(in1_input, S_IRUGO, show_in, NULL, 1, 0);
895static SENSOR_DEVICE_ATTR_2(in1_min, S_IRUGO | S_IWUSR, show_in, set_in,
896 1, 1);
897static SENSOR_DEVICE_ATTR_2(in1_max, S_IRUGO | S_IWUSR, show_in, set_in,
898 1, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Guenter Roeck929c6a52012-12-19 22:17:00 +0100900static SENSOR_DEVICE_ATTR_2(in2_input, S_IRUGO, show_in, NULL, 2, 0);
901static SENSOR_DEVICE_ATTR_2(in2_min, S_IRUGO | S_IWUSR, show_in, set_in,
902 2, 1);
903static SENSOR_DEVICE_ATTR_2(in2_max, S_IRUGO | S_IWUSR, show_in, set_in,
904 2, 2);
905
906static SENSOR_DEVICE_ATTR_2(in3_input, S_IRUGO, show_in, NULL, 3, 0);
907static SENSOR_DEVICE_ATTR_2(in3_min, S_IRUGO | S_IWUSR, show_in, set_in,
908 3, 1);
909static SENSOR_DEVICE_ATTR_2(in3_max, S_IRUGO | S_IWUSR, show_in, set_in,
910 3, 2);
911
912static SENSOR_DEVICE_ATTR_2(in4_input, S_IRUGO, show_in, NULL, 4, 0);
913static SENSOR_DEVICE_ATTR_2(in4_min, S_IRUGO | S_IWUSR, show_in, set_in,
914 4, 1);
915static SENSOR_DEVICE_ATTR_2(in4_max, S_IRUGO | S_IWUSR, show_in, set_in,
916 4, 2);
917
918static SENSOR_DEVICE_ATTR_2(in5_input, S_IRUGO, show_in, NULL, 5, 0);
919static SENSOR_DEVICE_ATTR_2(in5_min, S_IRUGO | S_IWUSR, show_in, set_in,
920 5, 1);
921static SENSOR_DEVICE_ATTR_2(in5_max, S_IRUGO | S_IWUSR, show_in, set_in,
922 5, 2);
923
924static SENSOR_DEVICE_ATTR_2(in6_input, S_IRUGO, show_in, NULL, 6, 0);
925static SENSOR_DEVICE_ATTR_2(in6_min, S_IRUGO | S_IWUSR, show_in, set_in,
926 6, 1);
927static SENSOR_DEVICE_ATTR_2(in6_max, S_IRUGO | S_IWUSR, show_in, set_in,
928 6, 2);
929
930static SENSOR_DEVICE_ATTR_2(in7_input, S_IRUGO, show_in, NULL, 7, 0);
931static SENSOR_DEVICE_ATTR_2(in7_min, S_IRUGO | S_IWUSR, show_in, set_in,
932 7, 1);
933static SENSOR_DEVICE_ATTR_2(in7_max, S_IRUGO | S_IWUSR, show_in, set_in,
934 7, 2);
935
936static SENSOR_DEVICE_ATTR_2(in8_input, S_IRUGO, show_in, NULL, 8, 0);
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100937static SENSOR_DEVICE_ATTR_2(in9_input, S_IRUGO, show_in, NULL, 9, 0);
Guenter Roeckf838aa22015-04-01 20:09:36 -0700938static SENSOR_DEVICE_ATTR_2(in10_input, S_IRUGO, show_in, NULL, 10, 0);
939static SENSOR_DEVICE_ATTR_2(in11_input, S_IRUGO, show_in, NULL, 11, 0);
940static SENSOR_DEVICE_ATTR_2(in12_input, S_IRUGO, show_in, NULL, 12, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Guenter Roeckcc18da72015-04-01 10:03:01 -0700942/* Up to 6 temperatures */
Jean Delvare20ad93d2005-06-05 11:53:25 +0200943static ssize_t show_temp(struct device *dev, struct device_attribute *attr,
Guenter Roeck60ca3852012-12-19 22:17:00 +0100944 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
Guenter Roeck60ca3852012-12-19 22:17:00 +0100946 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
947 int nr = sattr->nr;
948 int index = sattr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +0200950
Guenter Roeck60ca3852012-12-19 22:17:00 +0100951 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[nr][index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200953
Guenter Roeck60ca3852012-12-19 22:17:00 +0100954static ssize_t set_temp(struct device *dev, struct device_attribute *attr,
955 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
Guenter Roeck60ca3852012-12-19 22:17:00 +0100957 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
958 int nr = sattr->nr;
959 int index = sattr->index;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200960 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100961 long val;
Guenter Roeck161d8982012-12-19 22:17:01 +0100962 u8 reg, regval;
Jean Delvaref5f64502010-03-05 22:17:19 +0100963
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100964 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100965 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100967 mutex_lock(&data->update_lock);
Guenter Roeck161d8982012-12-19 22:17:01 +0100968
969 switch (index) {
970 default:
971 case 1:
972 reg = IT87_REG_TEMP_LOW(nr);
973 break;
974 case 2:
975 reg = IT87_REG_TEMP_HIGH(nr);
976 break;
977 case 3:
978 regval = it87_read_value(data, IT87_REG_BEEP_ENABLE);
979 if (!(regval & 0x80)) {
980 regval |= 0x80;
981 it87_write_value(data, IT87_REG_BEEP_ENABLE, regval);
982 }
Paul Fertser952a11c2021-09-24 22:52:02 +0300983 data->valid = false;
Guenter Roeck161d8982012-12-19 22:17:01 +0100984 reg = IT87_REG_TEMP_OFFSET[nr];
985 break;
986 }
987
Guenter Roeck60ca3852012-12-19 22:17:00 +0100988 data->temp[nr][index] = TEMP_TO_REG(val);
Guenter Roeck161d8982012-12-19 22:17:01 +0100989 it87_write_value(data, reg, data->temp[nr][index]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100990 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 return count;
992}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200993
Guenter Roeck60ca3852012-12-19 22:17:00 +0100994static SENSOR_DEVICE_ATTR_2(temp1_input, S_IRUGO, show_temp, NULL, 0, 0);
995static SENSOR_DEVICE_ATTR_2(temp1_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
996 0, 1);
997static SENSOR_DEVICE_ATTR_2(temp1_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
998 0, 2);
Guenter Roeck161d8982012-12-19 22:17:01 +0100999static SENSOR_DEVICE_ATTR_2(temp1_offset, S_IRUGO | S_IWUSR, show_temp,
1000 set_temp, 0, 3);
Guenter Roeck60ca3852012-12-19 22:17:00 +01001001static SENSOR_DEVICE_ATTR_2(temp2_input, S_IRUGO, show_temp, NULL, 1, 0);
1002static SENSOR_DEVICE_ATTR_2(temp2_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
1003 1, 1);
1004static SENSOR_DEVICE_ATTR_2(temp2_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
1005 1, 2);
Guenter Roeck161d8982012-12-19 22:17:01 +01001006static SENSOR_DEVICE_ATTR_2(temp2_offset, S_IRUGO | S_IWUSR, show_temp,
1007 set_temp, 1, 3);
Guenter Roeck60ca3852012-12-19 22:17:00 +01001008static SENSOR_DEVICE_ATTR_2(temp3_input, S_IRUGO, show_temp, NULL, 2, 0);
1009static SENSOR_DEVICE_ATTR_2(temp3_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
1010 2, 1);
1011static SENSOR_DEVICE_ATTR_2(temp3_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
1012 2, 2);
Guenter Roeck161d8982012-12-19 22:17:01 +01001013static SENSOR_DEVICE_ATTR_2(temp3_offset, S_IRUGO | S_IWUSR, show_temp,
1014 set_temp, 2, 3);
Guenter Roeckcc18da72015-04-01 10:03:01 -07001015static SENSOR_DEVICE_ATTR_2(temp4_input, S_IRUGO, show_temp, NULL, 3, 0);
1016static SENSOR_DEVICE_ATTR_2(temp5_input, S_IRUGO, show_temp, NULL, 4, 0);
1017static SENSOR_DEVICE_ATTR_2(temp6_input, S_IRUGO, show_temp, NULL, 5, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Guenter Roeck2cece012012-12-19 22:17:01 +01001019static ssize_t show_temp_type(struct device *dev, struct device_attribute *attr,
1020 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001022 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1023 int nr = sensor_attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 struct it87_data *data = it87_update_device(dev);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001025 u8 reg = data->sensor; /* In case value is updated while used */
Guenter Roeck19529782012-12-19 22:17:02 +01001026 u8 extra = data->extra;
Jean Delvare5f2dc792010-03-05 22:17:18 +01001027
Guenter Roeckc9620242015-04-04 09:05:57 -07001028 if ((has_temp_peci(data, nr) && (reg >> 6 == nr + 1)) ||
1029 (has_temp_old_peci(data, nr) && (extra & 0x80)))
Guenter Roeck5d8d2f22012-12-19 22:17:02 +01001030 return sprintf(buf, "6\n"); /* Intel PECI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 if (reg & (1 << nr))
1032 return sprintf(buf, "3\n"); /* thermal diode */
1033 if (reg & (8 << nr))
Jean Delvare4ed10772008-10-17 17:51:16 +02001034 return sprintf(buf, "4\n"); /* thermistor */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 return sprintf(buf, "0\n"); /* disabled */
1036}
Guenter Roeck2cece012012-12-19 22:17:01 +01001037
1038static ssize_t set_temp_type(struct device *dev, struct device_attribute *attr,
1039 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001041 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1042 int nr = sensor_attr->index;
1043
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001044 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001045 long val;
Guenter Roeck19529782012-12-19 22:17:02 +01001046 u8 reg, extra;
Jean Delvaref5f64502010-03-05 22:17:19 +01001047
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001048 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001049 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Jean Delvare8acf07c2010-04-14 16:14:09 +02001051 reg = it87_read_value(data, IT87_REG_TEMP_ENABLE);
1052 reg &= ~(1 << nr);
1053 reg &= ~(8 << nr);
Guenter Roeck5d8d2f22012-12-19 22:17:02 +01001054 if (has_temp_peci(data, nr) && (reg >> 6 == nr + 1 || val == 6))
1055 reg &= 0x3f;
Guenter Roeck19529782012-12-19 22:17:02 +01001056 extra = it87_read_value(data, IT87_REG_TEMP_EXTRA);
1057 if (has_temp_old_peci(data, nr) && ((extra & 0x80) || val == 6))
1058 extra &= 0x7f;
Jean Delvare4ed10772008-10-17 17:51:16 +02001059 if (val == 2) { /* backwards compatibility */
Guenter Roeck1d9bcf62012-12-19 22:17:01 +01001060 dev_warn(dev,
1061 "Sensor type 2 is deprecated, please use 4 instead\n");
Jean Delvare4ed10772008-10-17 17:51:16 +02001062 val = 4;
1063 }
Guenter Roeck5d8d2f22012-12-19 22:17:02 +01001064 /* 3 = thermal diode; 4 = thermistor; 6 = Intel PECI; 0 = disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 if (val == 3)
Jean Delvare8acf07c2010-04-14 16:14:09 +02001066 reg |= 1 << nr;
Jean Delvare4ed10772008-10-17 17:51:16 +02001067 else if (val == 4)
Jean Delvare8acf07c2010-04-14 16:14:09 +02001068 reg |= 8 << nr;
Guenter Roeck5d8d2f22012-12-19 22:17:02 +01001069 else if (has_temp_peci(data, nr) && val == 6)
1070 reg |= (nr + 1) << 6;
Guenter Roeck19529782012-12-19 22:17:02 +01001071 else if (has_temp_old_peci(data, nr) && val == 6)
1072 extra |= 0x80;
Jean Delvare8acf07c2010-04-14 16:14:09 +02001073 else if (val != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 return -EINVAL;
Jean Delvare8acf07c2010-04-14 16:14:09 +02001075
1076 mutex_lock(&data->update_lock);
1077 data->sensor = reg;
Guenter Roeck19529782012-12-19 22:17:02 +01001078 data->extra = extra;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001079 it87_write_value(data, IT87_REG_TEMP_ENABLE, data->sensor);
Guenter Roeck19529782012-12-19 22:17:02 +01001080 if (has_temp_old_peci(data, nr))
1081 it87_write_value(data, IT87_REG_TEMP_EXTRA, data->extra);
Paul Fertser952a11c2021-09-24 22:52:02 +03001082 data->valid = false; /* Force cache refresh */
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001083 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 return count;
1085}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
Guenter Roeck2cece012012-12-19 22:17:01 +01001087static SENSOR_DEVICE_ATTR(temp1_type, S_IRUGO | S_IWUSR, show_temp_type,
1088 set_temp_type, 0);
1089static SENSOR_DEVICE_ATTR(temp2_type, S_IRUGO | S_IWUSR, show_temp_type,
1090 set_temp_type, 1);
1091static SENSOR_DEVICE_ATTR(temp3_type, S_IRUGO | S_IWUSR, show_temp_type,
1092 set_temp_type, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001094/* 6 Fans */
Jean Delvareb99883d2010-03-05 22:17:15 +01001095
1096static int pwm_mode(const struct it87_data *data, int nr)
1097{
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001098 if (data->type != it8603 && nr < 3 && !(data->fan_main_ctrl & BIT(nr)))
1099 return 0; /* Full speed */
1100 if (data->pwm_ctrl[nr] & 0x80)
1101 return 2; /* Automatic mode */
1102 if ((data->type == it8603 || nr >= 3) &&
1103 data->pwm_duty[nr] == pwm_to_reg(data, 0xff))
1104 return 0; /* Full speed */
Jean Delvareb99883d2010-03-05 22:17:15 +01001105
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001106 return 1; /* Manual mode */
Jean Delvareb99883d2010-03-05 22:17:15 +01001107}
1108
Jean Delvare20ad93d2005-06-05 11:53:25 +02001109static ssize_t show_fan(struct device *dev, struct device_attribute *attr,
Guenter Roecke1169ba2012-12-19 22:17:01 +01001110 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
Guenter Roecke1169ba2012-12-19 22:17:01 +01001112 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
1113 int nr = sattr->nr;
1114 int index = sattr->index;
1115 int speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +02001117
Guenter Roecke1169ba2012-12-19 22:17:01 +01001118 speed = has_16bit_fans(data) ?
1119 FAN16_FROM_REG(data->fan[nr][index]) :
1120 FAN_FROM_REG(data->fan[nr][index],
1121 DIV_FROM_REG(data->fan_div[nr]));
1122 return sprintf(buf, "%d\n", speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123}
Guenter Roecke1169ba2012-12-19 22:17:01 +01001124
Jean Delvare20ad93d2005-06-05 11:53:25 +02001125static ssize_t show_fan_div(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001126 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001128 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
Guenter Roeckc9620242015-04-04 09:05:57 -07001129 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +02001130 int nr = sensor_attr->index;
1131
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001132 return sprintf(buf, "%lu\n", DIV_FROM_REG(data->fan_div[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133}
Guenter Roeckc9620242015-04-04 09:05:57 -07001134
Jean Delvare5f2dc792010-03-05 22:17:18 +01001135static ssize_t show_pwm_enable(struct device *dev,
Guenter Roeckc9620242015-04-04 09:05:57 -07001136 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001138 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
Guenter Roeckc9620242015-04-04 09:05:57 -07001139 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +02001140 int nr = sensor_attr->index;
1141
Jean Delvareb99883d2010-03-05 22:17:15 +01001142 return sprintf(buf, "%d\n", pwm_mode(data, nr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143}
Guenter Roeckc9620242015-04-04 09:05:57 -07001144
Jean Delvare20ad93d2005-06-05 11:53:25 +02001145static ssize_t show_pwm(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001146 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001148 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
Guenter Roeckc9620242015-04-04 09:05:57 -07001149 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +02001150 int nr = sensor_attr->index;
1151
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001152 return sprintf(buf, "%d\n",
1153 pwm_from_reg(data, data->pwm_duty[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154}
Guenter Roeckc9620242015-04-04 09:05:57 -07001155
Jean Delvaref8d0c192007-02-14 21:15:02 +01001156static ssize_t show_pwm_freq(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001157 char *buf)
Jean Delvaref8d0c192007-02-14 21:15:02 +01001158{
Guenter Roeck60878bc2015-03-26 19:57:42 -07001159 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
Jean Delvaref8d0c192007-02-14 21:15:02 +01001160 struct it87_data *data = it87_update_device(dev);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001161 int nr = sensor_attr->index;
Guenter Roeckf56c9c02015-03-26 20:01:24 -07001162 unsigned int freq;
Guenter Roeck60878bc2015-03-26 19:57:42 -07001163 int index;
1164
1165 if (has_pwm_freq2(data) && nr == 1)
1166 index = (data->extra >> 4) & 0x07;
1167 else
1168 index = (data->fan_ctl >> 4) & 0x07;
Jean Delvaref8d0c192007-02-14 21:15:02 +01001169
Guenter Roeckf56c9c02015-03-26 20:01:24 -07001170 freq = pwm_freq[index] / (has_newer_autopwm(data) ? 256 : 128);
1171
1172 return sprintf(buf, "%u\n", freq);
Jean Delvaref8d0c192007-02-14 21:15:02 +01001173}
Guenter Roecke1169ba2012-12-19 22:17:01 +01001174
1175static ssize_t set_fan(struct device *dev, struct device_attribute *attr,
1176 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177{
Guenter Roecke1169ba2012-12-19 22:17:01 +01001178 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
1179 int nr = sattr->nr;
1180 int index = sattr->index;
Jean Delvare20ad93d2005-06-05 11:53:25 +02001181
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001182 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001183 long val;
Jean Delvare7f999aa2007-02-14 21:15:03 +01001184 u8 reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001186 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001187 return -EINVAL;
1188
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001189 mutex_lock(&data->update_lock);
Guenter Roecke1169ba2012-12-19 22:17:01 +01001190
1191 if (has_16bit_fans(data)) {
1192 data->fan[nr][index] = FAN16_TO_REG(val);
1193 it87_write_value(data, IT87_REG_FAN_MIN[nr],
1194 data->fan[nr][index] & 0xff);
1195 it87_write_value(data, IT87_REG_FANX_MIN[nr],
1196 data->fan[nr][index] >> 8);
1197 } else {
1198 reg = it87_read_value(data, IT87_REG_FAN_DIV);
1199 switch (nr) {
1200 case 0:
1201 data->fan_div[nr] = reg & 0x07;
1202 break;
1203 case 1:
1204 data->fan_div[nr] = (reg >> 3) & 0x07;
1205 break;
1206 case 2:
1207 data->fan_div[nr] = (reg & 0x40) ? 3 : 1;
1208 break;
1209 }
1210 data->fan[nr][index] =
1211 FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
1212 it87_write_value(data, IT87_REG_FAN_MIN[nr],
1213 data->fan[nr][index]);
Jean Delvare07eab462005-11-23 15:44:31 -08001214 }
1215
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001216 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 return count;
1218}
Guenter Roecke1169ba2012-12-19 22:17:01 +01001219
Jean Delvare20ad93d2005-06-05 11:53:25 +02001220static ssize_t set_fan_div(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001221 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001223 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001224 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001225 int nr = sensor_attr->index;
Jean Delvaref5f64502010-03-05 22:17:19 +01001226 unsigned long val;
Jean Delvare8ab4ec32006-08-28 14:35:46 +02001227 int min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 u8 old;
1229
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001230 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001231 return -EINVAL;
1232
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001233 mutex_lock(&data->update_lock);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001234 old = it87_read_value(data, IT87_REG_FAN_DIV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Jean Delvare8ab4ec32006-08-28 14:35:46 +02001236 /* Save fan min limit */
Guenter Roecke1169ba2012-12-19 22:17:01 +01001237 min = FAN_FROM_REG(data->fan[nr][1], DIV_FROM_REG(data->fan_div[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
1239 switch (nr) {
1240 case 0:
1241 case 1:
1242 data->fan_div[nr] = DIV_TO_REG(val);
1243 break;
1244 case 2:
1245 if (val < 8)
1246 data->fan_div[nr] = 1;
1247 else
1248 data->fan_div[nr] = 3;
1249 }
1250 val = old & 0x80;
1251 val |= (data->fan_div[0] & 0x07);
1252 val |= (data->fan_div[1] & 0x07) << 3;
1253 if (data->fan_div[2] == 3)
1254 val |= 0x1 << 6;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001255 it87_write_value(data, IT87_REG_FAN_DIV, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Jean Delvare8ab4ec32006-08-28 14:35:46 +02001257 /* Restore fan min limit */
Guenter Roecke1169ba2012-12-19 22:17:01 +01001258 data->fan[nr][1] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
1259 it87_write_value(data, IT87_REG_FAN_MIN[nr], data->fan[nr][1]);
Jean Delvare8ab4ec32006-08-28 14:35:46 +02001260
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001261 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 return count;
1263}
Jean Delvarecccfc9c2010-03-05 22:17:21 +01001264
1265/* Returns 0 if OK, -EINVAL otherwise */
1266static int check_trip_points(struct device *dev, int nr)
1267{
1268 const struct it87_data *data = dev_get_drvdata(dev);
1269 int i, err = 0;
1270
1271 if (has_old_autopwm(data)) {
1272 for (i = 0; i < 3; i++) {
1273 if (data->auto_temp[nr][i] > data->auto_temp[nr][i + 1])
1274 err = -EINVAL;
1275 }
1276 for (i = 0; i < 2; i++) {
1277 if (data->auto_pwm[nr][i] > data->auto_pwm[nr][i + 1])
1278 err = -EINVAL;
1279 }
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001280 } else if (has_newer_autopwm(data)) {
1281 for (i = 1; i < 3; i++) {
1282 if (data->auto_temp[nr][i] > data->auto_temp[nr][i + 1])
1283 err = -EINVAL;
1284 }
Jean Delvarecccfc9c2010-03-05 22:17:21 +01001285 }
1286
1287 if (err) {
Guenter Roeck1d9bcf62012-12-19 22:17:01 +01001288 dev_err(dev,
1289 "Inconsistent trip points, not switching to automatic mode\n");
Jean Delvarecccfc9c2010-03-05 22:17:21 +01001290 dev_err(dev, "Adjust the trip points and try again\n");
1291 }
1292 return err;
1293}
1294
Guenter Roeckc9620242015-04-04 09:05:57 -07001295static ssize_t set_pwm_enable(struct device *dev, struct device_attribute *attr,
1296 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001298 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001299 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001300 int nr = sensor_attr->index;
Jean Delvaref5f64502010-03-05 22:17:19 +01001301 long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001303 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 2)
Jean Delvareb99883d2010-03-05 22:17:15 +01001304 return -EINVAL;
1305
Jean Delvarecccfc9c2010-03-05 22:17:21 +01001306 /* Check trip points before switching to automatic mode */
1307 if (val == 2) {
1308 if (check_trip_points(dev, nr) < 0)
1309 return -EINVAL;
1310 }
1311
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001312 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
1314 if (val == 0) {
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001315 if (nr < 3 && data->type != it8603) {
1316 int tmp;
1317 /* make sure the fan is on when in on/off mode */
1318 tmp = it87_read_value(data, IT87_REG_FAN_CTL);
1319 it87_write_value(data, IT87_REG_FAN_CTL, tmp | BIT(nr));
1320 /* set on/off mode */
1321 data->fan_main_ctrl &= ~BIT(nr);
1322 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
1323 data->fan_main_ctrl);
1324 } else {
Guenter Roeck4c7b8ca2017-02-08 14:07:42 -08001325 u8 ctrl;
1326
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001327 /* No on/off mode, set maximum pwm value */
1328 data->pwm_duty[nr] = pwm_to_reg(data, 0xff);
1329 it87_write_value(data, IT87_REG_PWM_DUTY[nr],
1330 data->pwm_duty[nr]);
1331 /* and set manual mode */
Guenter Roeck4c7b8ca2017-02-08 14:07:42 -08001332 if (has_newer_autopwm(data)) {
1333 ctrl = (data->pwm_ctrl[nr] & 0x7c) |
1334 data->pwm_temp_map[nr];
1335 } else {
1336 ctrl = data->pwm_duty[nr];
1337 }
1338 data->pwm_ctrl[nr] = ctrl;
1339 it87_write_value(data, IT87_REG_PWM[nr], ctrl);
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001340 }
Jean Delvareb99883d2010-03-05 22:17:15 +01001341 } else {
Guenter Roeck4c7b8ca2017-02-08 14:07:42 -08001342 u8 ctrl;
1343
1344 if (has_newer_autopwm(data)) {
1345 ctrl = (data->pwm_ctrl[nr] & 0x7c) |
1346 data->pwm_temp_map[nr];
1347 if (val != 1)
1348 ctrl |= 0x80;
1349 } else {
1350 ctrl = (val == 1 ? data->pwm_duty[nr] : 0x80);
1351 }
1352 data->pwm_ctrl[nr] = ctrl;
1353 it87_write_value(data, IT87_REG_PWM[nr], ctrl);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001354
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001355 if (data->type != it8603 && nr < 3) {
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001356 /* set SmartGuardian mode */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001357 data->fan_main_ctrl |= BIT(nr);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001358 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
1359 data->fan_main_ctrl);
1360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 }
1362
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001363 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 return count;
1365}
Guenter Roeckc9620242015-04-04 09:05:57 -07001366
Jean Delvare20ad93d2005-06-05 11:53:25 +02001367static ssize_t set_pwm(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001368 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001370 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001371 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001372 int nr = sensor_attr->index;
Jean Delvaref5f64502010-03-05 22:17:19 +01001373 long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001375 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 return -EINVAL;
1377
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001378 mutex_lock(&data->update_lock);
Guenter Roeck82dbe982017-02-08 14:02:59 -08001379 it87_update_pwm_ctrl(data, nr);
Jean Delvare16b5dda2012-01-16 22:51:48 +01001380 if (has_newer_autopwm(data)) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001381 /*
1382 * If we are in automatic mode, the PWM duty cycle register
1383 * is read-only so we can't write the value.
1384 */
Jean Delvare6229cdb2010-12-08 16:27:22 +01001385 if (data->pwm_ctrl[nr] & 0x80) {
1386 mutex_unlock(&data->update_lock);
1387 return -EBUSY;
1388 }
1389 data->pwm_duty[nr] = pwm_to_reg(data, val);
Guenter Roeck36c4d982015-03-26 18:18:19 -07001390 it87_write_value(data, IT87_REG_PWM_DUTY[nr],
Jean Delvare6229cdb2010-12-08 16:27:22 +01001391 data->pwm_duty[nr]);
1392 } else {
1393 data->pwm_duty[nr] = pwm_to_reg(data, val);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001394 /*
1395 * If we are in manual mode, write the duty cycle immediately;
1396 * otherwise, just store it for later use.
1397 */
Jean Delvare6229cdb2010-12-08 16:27:22 +01001398 if (!(data->pwm_ctrl[nr] & 0x80)) {
1399 data->pwm_ctrl[nr] = data->pwm_duty[nr];
Guenter Roeck36c4d982015-03-26 18:18:19 -07001400 it87_write_value(data, IT87_REG_PWM[nr],
Jean Delvare6229cdb2010-12-08 16:27:22 +01001401 data->pwm_ctrl[nr]);
1402 }
Jean Delvareb99883d2010-03-05 22:17:15 +01001403 }
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001404 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 return count;
1406}
Guenter Roeckc9620242015-04-04 09:05:57 -07001407
1408static ssize_t set_pwm_freq(struct device *dev, struct device_attribute *attr,
1409 const char *buf, size_t count)
Jean Delvaref8d0c192007-02-14 21:15:02 +01001410{
Guenter Roeck60878bc2015-03-26 19:57:42 -07001411 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001412 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001413 int nr = sensor_attr->index;
Jean Delvaref5f64502010-03-05 22:17:19 +01001414 unsigned long val;
Jean Delvaref8d0c192007-02-14 21:15:02 +01001415 int i;
1416
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001417 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001418 return -EINVAL;
1419
Guenter Roeckf56c9c02015-03-26 20:01:24 -07001420 val = clamp_val(val, 0, 1000000);
1421 val *= has_newer_autopwm(data) ? 256 : 128;
1422
Jean Delvaref8d0c192007-02-14 21:15:02 +01001423 /* Search for the nearest available frequency */
1424 for (i = 0; i < 7; i++) {
Guenter Roeckc9620242015-04-04 09:05:57 -07001425 if (val > (pwm_freq[i] + pwm_freq[i + 1]) / 2)
Jean Delvaref8d0c192007-02-14 21:15:02 +01001426 break;
1427 }
1428
1429 mutex_lock(&data->update_lock);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001430 if (nr == 0) {
1431 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL) & 0x8f;
1432 data->fan_ctl |= i << 4;
1433 it87_write_value(data, IT87_REG_FAN_CTL, data->fan_ctl);
1434 } else {
1435 data->extra = it87_read_value(data, IT87_REG_TEMP_EXTRA) & 0x8f;
1436 data->extra |= i << 4;
1437 it87_write_value(data, IT87_REG_TEMP_EXTRA, data->extra);
1438 }
Jean Delvaref8d0c192007-02-14 21:15:02 +01001439 mutex_unlock(&data->update_lock);
1440
1441 return count;
1442}
Guenter Roeckc9620242015-04-04 09:05:57 -07001443
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001444static ssize_t show_pwm_temp_map(struct device *dev,
Guenter Roeckc9620242015-04-04 09:05:57 -07001445 struct device_attribute *attr, char *buf)
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001446{
1447 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001448 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001449 int nr = sensor_attr->index;
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001450 int map;
1451
Guenter Roeck0624d862015-04-06 21:04:18 -07001452 map = data->pwm_temp_map[nr];
1453 if (map >= 3)
1454 map = 0; /* Should never happen */
1455 if (nr >= 3) /* pwm channels 3..6 map to temp4..6 */
1456 map += 3;
1457
1458 return sprintf(buf, "%d\n", (int)BIT(map));
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001459}
Guenter Roeckc9620242015-04-04 09:05:57 -07001460
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001461static ssize_t set_pwm_temp_map(struct device *dev,
Guenter Roeckc9620242015-04-04 09:05:57 -07001462 struct device_attribute *attr, const char *buf,
1463 size_t count)
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001464{
1465 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001466 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001467 int nr = sensor_attr->index;
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001468 long val;
1469 u8 reg;
1470
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001471 if (kstrtol(buf, 10, &val) < 0)
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001472 return -EINVAL;
1473
Guenter Roeck0624d862015-04-06 21:04:18 -07001474 if (nr >= 3)
1475 val -= 3;
1476
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001477 switch (val) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001478 case BIT(0):
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001479 reg = 0x00;
1480 break;
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001481 case BIT(1):
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001482 reg = 0x01;
1483 break;
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001484 case BIT(2):
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001485 reg = 0x02;
1486 break;
1487 default:
1488 return -EINVAL;
1489 }
1490
1491 mutex_lock(&data->update_lock);
Guenter Roeck82dbe982017-02-08 14:02:59 -08001492 it87_update_pwm_ctrl(data, nr);
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001493 data->pwm_temp_map[nr] = reg;
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001494 /*
1495 * If we are in automatic mode, write the temp mapping immediately;
1496 * otherwise, just store it for later use.
1497 */
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001498 if (data->pwm_ctrl[nr] & 0x80) {
Guenter Roeck4c7b8ca2017-02-08 14:07:42 -08001499 data->pwm_ctrl[nr] = (data->pwm_ctrl[nr] & 0xfc) |
1500 data->pwm_temp_map[nr];
Guenter Roeck36c4d982015-03-26 18:18:19 -07001501 it87_write_value(data, IT87_REG_PWM[nr], data->pwm_ctrl[nr]);
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001502 }
1503 mutex_unlock(&data->update_lock);
1504 return count;
1505}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Guenter Roeckc9620242015-04-04 09:05:57 -07001507static ssize_t show_auto_pwm(struct device *dev, struct device_attribute *attr,
1508 char *buf)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001509{
1510 struct it87_data *data = it87_update_device(dev);
1511 struct sensor_device_attribute_2 *sensor_attr =
1512 to_sensor_dev_attr_2(attr);
1513 int nr = sensor_attr->nr;
1514 int point = sensor_attr->index;
1515
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001516 return sprintf(buf, "%d\n",
1517 pwm_from_reg(data, data->auto_pwm[nr][point]));
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001518}
1519
Guenter Roeckc9620242015-04-04 09:05:57 -07001520static ssize_t set_auto_pwm(struct device *dev, struct device_attribute *attr,
1521 const char *buf, size_t count)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001522{
1523 struct it87_data *data = dev_get_drvdata(dev);
1524 struct sensor_device_attribute_2 *sensor_attr =
1525 to_sensor_dev_attr_2(attr);
1526 int nr = sensor_attr->nr;
1527 int point = sensor_attr->index;
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001528 int regaddr;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001529 long val;
1530
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001531 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001532 return -EINVAL;
1533
1534 mutex_lock(&data->update_lock);
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001535 data->auto_pwm[nr][point] = pwm_to_reg(data, val);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001536 if (has_newer_autopwm(data))
1537 regaddr = IT87_REG_AUTO_TEMP(nr, 3);
1538 else
1539 regaddr = IT87_REG_AUTO_PWM(nr, point);
1540 it87_write_value(data, regaddr, data->auto_pwm[nr][point]);
1541 mutex_unlock(&data->update_lock);
1542 return count;
1543}
1544
1545static ssize_t show_auto_pwm_slope(struct device *dev,
1546 struct device_attribute *attr, char *buf)
1547{
1548 struct it87_data *data = it87_update_device(dev);
1549 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1550 int nr = sensor_attr->index;
1551
1552 return sprintf(buf, "%d\n", data->auto_pwm[nr][1] & 0x7f);
1553}
1554
1555static ssize_t set_auto_pwm_slope(struct device *dev,
1556 struct device_attribute *attr,
1557 const char *buf, size_t count)
1558{
1559 struct it87_data *data = dev_get_drvdata(dev);
1560 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1561 int nr = sensor_attr->index;
1562 unsigned long val;
1563
1564 if (kstrtoul(buf, 10, &val) < 0 || val > 127)
1565 return -EINVAL;
1566
1567 mutex_lock(&data->update_lock);
1568 data->auto_pwm[nr][1] = (data->auto_pwm[nr][1] & 0x80) | val;
1569 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, 4),
1570 data->auto_pwm[nr][1]);
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001571 mutex_unlock(&data->update_lock);
1572 return count;
1573}
1574
Guenter Roeckc9620242015-04-04 09:05:57 -07001575static ssize_t show_auto_temp(struct device *dev, struct device_attribute *attr,
1576 char *buf)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001577{
1578 struct it87_data *data = it87_update_device(dev);
1579 struct sensor_device_attribute_2 *sensor_attr =
1580 to_sensor_dev_attr_2(attr);
1581 int nr = sensor_attr->nr;
1582 int point = sensor_attr->index;
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001583 int reg;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001584
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001585 if (has_old_autopwm(data) || point)
1586 reg = data->auto_temp[nr][point];
1587 else
1588 reg = data->auto_temp[nr][1] - (data->auto_temp[nr][0] & 0x1f);
1589
1590 return sprintf(buf, "%d\n", TEMP_FROM_REG(reg));
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001591}
1592
Guenter Roeckc9620242015-04-04 09:05:57 -07001593static ssize_t set_auto_temp(struct device *dev, struct device_attribute *attr,
1594 const char *buf, size_t count)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001595{
1596 struct it87_data *data = dev_get_drvdata(dev);
1597 struct sensor_device_attribute_2 *sensor_attr =
1598 to_sensor_dev_attr_2(attr);
1599 int nr = sensor_attr->nr;
1600 int point = sensor_attr->index;
1601 long val;
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001602 int reg;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001603
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001604 if (kstrtol(buf, 10, &val) < 0 || val < -128000 || val > 127000)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001605 return -EINVAL;
1606
1607 mutex_lock(&data->update_lock);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001608 if (has_newer_autopwm(data) && !point) {
1609 reg = data->auto_temp[nr][1] - TEMP_TO_REG(val);
1610 reg = clamp_val(reg, 0, 0x1f) | (data->auto_temp[nr][0] & 0xe0);
1611 data->auto_temp[nr][0] = reg;
1612 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, 5), reg);
1613 } else {
1614 reg = TEMP_TO_REG(val);
1615 data->auto_temp[nr][point] = reg;
1616 if (has_newer_autopwm(data))
1617 point--;
1618 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, point), reg);
1619 }
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001620 mutex_unlock(&data->update_lock);
1621 return count;
1622}
1623
Guenter Roecke1169ba2012-12-19 22:17:01 +01001624static SENSOR_DEVICE_ATTR_2(fan1_input, S_IRUGO, show_fan, NULL, 0, 0);
1625static SENSOR_DEVICE_ATTR_2(fan1_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1626 0, 1);
1627static SENSOR_DEVICE_ATTR(fan1_div, S_IRUGO | S_IWUSR, show_fan_div,
1628 set_fan_div, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
Guenter Roecke1169ba2012-12-19 22:17:01 +01001630static SENSOR_DEVICE_ATTR_2(fan2_input, S_IRUGO, show_fan, NULL, 1, 0);
1631static SENSOR_DEVICE_ATTR_2(fan2_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1632 1, 1);
1633static SENSOR_DEVICE_ATTR(fan2_div, S_IRUGO | S_IWUSR, show_fan_div,
1634 set_fan_div, 1);
1635
1636static SENSOR_DEVICE_ATTR_2(fan3_input, S_IRUGO, show_fan, NULL, 2, 0);
1637static SENSOR_DEVICE_ATTR_2(fan3_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1638 2, 1);
1639static SENSOR_DEVICE_ATTR(fan3_div, S_IRUGO | S_IWUSR, show_fan_div,
1640 set_fan_div, 2);
1641
1642static SENSOR_DEVICE_ATTR_2(fan4_input, S_IRUGO, show_fan, NULL, 3, 0);
1643static SENSOR_DEVICE_ATTR_2(fan4_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1644 3, 1);
1645
1646static SENSOR_DEVICE_ATTR_2(fan5_input, S_IRUGO, show_fan, NULL, 4, 0);
1647static SENSOR_DEVICE_ATTR_2(fan5_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1648 4, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07001650static SENSOR_DEVICE_ATTR_2(fan6_input, S_IRUGO, show_fan, NULL, 5, 0);
1651static SENSOR_DEVICE_ATTR_2(fan6_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1652 5, 1);
1653
Guenter Roeckc4458db2012-12-19 22:17:02 +01001654static SENSOR_DEVICE_ATTR(pwm1_enable, S_IRUGO | S_IWUSR,
1655 show_pwm_enable, set_pwm_enable, 0);
1656static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 0);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001657static SENSOR_DEVICE_ATTR(pwm1_freq, S_IRUGO | S_IWUSR, show_pwm_freq,
1658 set_pwm_freq, 0);
Guenter Roeck5c391262013-03-30 15:02:12 -07001659static SENSOR_DEVICE_ATTR(pwm1_auto_channels_temp, S_IRUGO,
Guenter Roeckc4458db2012-12-19 22:17:02 +01001660 show_pwm_temp_map, set_pwm_temp_map, 0);
1661static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_pwm, S_IRUGO | S_IWUSR,
1662 show_auto_pwm, set_auto_pwm, 0, 0);
1663static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_pwm, S_IRUGO | S_IWUSR,
1664 show_auto_pwm, set_auto_pwm, 0, 1);
1665static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_pwm, S_IRUGO | S_IWUSR,
1666 show_auto_pwm, set_auto_pwm, 0, 2);
1667static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_pwm, S_IRUGO,
1668 show_auto_pwm, NULL, 0, 3);
1669static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp, S_IRUGO | S_IWUSR,
1670 show_auto_temp, set_auto_temp, 0, 1);
1671static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1672 show_auto_temp, set_auto_temp, 0, 0);
1673static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_temp, S_IRUGO | S_IWUSR,
1674 show_auto_temp, set_auto_temp, 0, 2);
1675static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_temp, S_IRUGO | S_IWUSR,
1676 show_auto_temp, set_auto_temp, 0, 3);
1677static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_temp, S_IRUGO | S_IWUSR,
1678 show_auto_temp, set_auto_temp, 0, 4);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001679static SENSOR_DEVICE_ATTR_2(pwm1_auto_start, S_IRUGO | S_IWUSR,
1680 show_auto_pwm, set_auto_pwm, 0, 0);
1681static SENSOR_DEVICE_ATTR(pwm1_auto_slope, S_IRUGO | S_IWUSR,
1682 show_auto_pwm_slope, set_auto_pwm_slope, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
Guenter Roeckc4458db2012-12-19 22:17:02 +01001684static SENSOR_DEVICE_ATTR(pwm2_enable, S_IRUGO | S_IWUSR,
1685 show_pwm_enable, set_pwm_enable, 1);
1686static SENSOR_DEVICE_ATTR(pwm2, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 1);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001687static SENSOR_DEVICE_ATTR(pwm2_freq, S_IRUGO, show_pwm_freq, set_pwm_freq, 1);
Guenter Roeck5c391262013-03-30 15:02:12 -07001688static SENSOR_DEVICE_ATTR(pwm2_auto_channels_temp, S_IRUGO,
Guenter Roeckc4458db2012-12-19 22:17:02 +01001689 show_pwm_temp_map, set_pwm_temp_map, 1);
1690static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_pwm, S_IRUGO | S_IWUSR,
1691 show_auto_pwm, set_auto_pwm, 1, 0);
1692static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_pwm, S_IRUGO | S_IWUSR,
1693 show_auto_pwm, set_auto_pwm, 1, 1);
1694static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_pwm, S_IRUGO | S_IWUSR,
1695 show_auto_pwm, set_auto_pwm, 1, 2);
1696static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_pwm, S_IRUGO,
1697 show_auto_pwm, NULL, 1, 3);
1698static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp, S_IRUGO | S_IWUSR,
1699 show_auto_temp, set_auto_temp, 1, 1);
1700static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1701 show_auto_temp, set_auto_temp, 1, 0);
1702static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_temp, S_IRUGO | S_IWUSR,
1703 show_auto_temp, set_auto_temp, 1, 2);
1704static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_temp, S_IRUGO | S_IWUSR,
1705 show_auto_temp, set_auto_temp, 1, 3);
1706static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_temp, S_IRUGO | S_IWUSR,
1707 show_auto_temp, set_auto_temp, 1, 4);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001708static SENSOR_DEVICE_ATTR_2(pwm2_auto_start, S_IRUGO | S_IWUSR,
1709 show_auto_pwm, set_auto_pwm, 1, 0);
1710static SENSOR_DEVICE_ATTR(pwm2_auto_slope, S_IRUGO | S_IWUSR,
1711 show_auto_pwm_slope, set_auto_pwm_slope, 1);
Guenter Roeckc4458db2012-12-19 22:17:02 +01001712
1713static SENSOR_DEVICE_ATTR(pwm3_enable, S_IRUGO | S_IWUSR,
1714 show_pwm_enable, set_pwm_enable, 2);
1715static SENSOR_DEVICE_ATTR(pwm3, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 2);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001716static SENSOR_DEVICE_ATTR(pwm3_freq, S_IRUGO, show_pwm_freq, NULL, 2);
Guenter Roeck5c391262013-03-30 15:02:12 -07001717static SENSOR_DEVICE_ATTR(pwm3_auto_channels_temp, S_IRUGO,
Guenter Roeckc4458db2012-12-19 22:17:02 +01001718 show_pwm_temp_map, set_pwm_temp_map, 2);
1719static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_pwm, S_IRUGO | S_IWUSR,
1720 show_auto_pwm, set_auto_pwm, 2, 0);
1721static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_pwm, S_IRUGO | S_IWUSR,
1722 show_auto_pwm, set_auto_pwm, 2, 1);
1723static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_pwm, S_IRUGO | S_IWUSR,
1724 show_auto_pwm, set_auto_pwm, 2, 2);
1725static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_pwm, S_IRUGO,
1726 show_auto_pwm, NULL, 2, 3);
1727static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp, S_IRUGO | S_IWUSR,
1728 show_auto_temp, set_auto_temp, 2, 1);
1729static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1730 show_auto_temp, set_auto_temp, 2, 0);
1731static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_temp, S_IRUGO | S_IWUSR,
1732 show_auto_temp, set_auto_temp, 2, 2);
1733static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_temp, S_IRUGO | S_IWUSR,
1734 show_auto_temp, set_auto_temp, 2, 3);
1735static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_temp, S_IRUGO | S_IWUSR,
1736 show_auto_temp, set_auto_temp, 2, 4);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001737static SENSOR_DEVICE_ATTR_2(pwm3_auto_start, S_IRUGO | S_IWUSR,
1738 show_auto_pwm, set_auto_pwm, 2, 0);
1739static SENSOR_DEVICE_ATTR(pwm3_auto_slope, S_IRUGO | S_IWUSR,
1740 show_auto_pwm_slope, set_auto_pwm_slope, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
Guenter Roeck36c4d982015-03-26 18:18:19 -07001742static SENSOR_DEVICE_ATTR(pwm4_enable, S_IRUGO | S_IWUSR,
1743 show_pwm_enable, set_pwm_enable, 3);
1744static SENSOR_DEVICE_ATTR(pwm4, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 3);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001745static SENSOR_DEVICE_ATTR(pwm4_freq, S_IRUGO, show_pwm_freq, NULL, 3);
Guenter Roeck5c391262013-03-30 15:02:12 -07001746static SENSOR_DEVICE_ATTR(pwm4_auto_channels_temp, S_IRUGO,
Guenter Roeck36c4d982015-03-26 18:18:19 -07001747 show_pwm_temp_map, set_pwm_temp_map, 3);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001748static SENSOR_DEVICE_ATTR_2(pwm4_auto_point1_temp, S_IRUGO | S_IWUSR,
1749 show_auto_temp, set_auto_temp, 2, 1);
1750static SENSOR_DEVICE_ATTR_2(pwm4_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1751 show_auto_temp, set_auto_temp, 2, 0);
1752static SENSOR_DEVICE_ATTR_2(pwm4_auto_point2_temp, S_IRUGO | S_IWUSR,
1753 show_auto_temp, set_auto_temp, 2, 2);
1754static SENSOR_DEVICE_ATTR_2(pwm4_auto_point3_temp, S_IRUGO | S_IWUSR,
1755 show_auto_temp, set_auto_temp, 2, 3);
1756static SENSOR_DEVICE_ATTR_2(pwm4_auto_start, S_IRUGO | S_IWUSR,
1757 show_auto_pwm, set_auto_pwm, 3, 0);
1758static SENSOR_DEVICE_ATTR(pwm4_auto_slope, S_IRUGO | S_IWUSR,
1759 show_auto_pwm_slope, set_auto_pwm_slope, 3);
Guenter Roeck36c4d982015-03-26 18:18:19 -07001760
1761static SENSOR_DEVICE_ATTR(pwm5_enable, S_IRUGO | S_IWUSR,
1762 show_pwm_enable, set_pwm_enable, 4);
1763static SENSOR_DEVICE_ATTR(pwm5, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 4);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001764static SENSOR_DEVICE_ATTR(pwm5_freq, S_IRUGO, show_pwm_freq, NULL, 4);
Guenter Roeck5c391262013-03-30 15:02:12 -07001765static SENSOR_DEVICE_ATTR(pwm5_auto_channels_temp, S_IRUGO,
Guenter Roeck36c4d982015-03-26 18:18:19 -07001766 show_pwm_temp_map, set_pwm_temp_map, 4);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001767static SENSOR_DEVICE_ATTR_2(pwm5_auto_point1_temp, S_IRUGO | S_IWUSR,
1768 show_auto_temp, set_auto_temp, 2, 1);
1769static SENSOR_DEVICE_ATTR_2(pwm5_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1770 show_auto_temp, set_auto_temp, 2, 0);
1771static SENSOR_DEVICE_ATTR_2(pwm5_auto_point2_temp, S_IRUGO | S_IWUSR,
1772 show_auto_temp, set_auto_temp, 2, 2);
1773static SENSOR_DEVICE_ATTR_2(pwm5_auto_point3_temp, S_IRUGO | S_IWUSR,
1774 show_auto_temp, set_auto_temp, 2, 3);
1775static SENSOR_DEVICE_ATTR_2(pwm5_auto_start, S_IRUGO | S_IWUSR,
1776 show_auto_pwm, set_auto_pwm, 4, 0);
1777static SENSOR_DEVICE_ATTR(pwm5_auto_slope, S_IRUGO | S_IWUSR,
1778 show_auto_pwm_slope, set_auto_pwm_slope, 4);
Guenter Roeck36c4d982015-03-26 18:18:19 -07001779
1780static SENSOR_DEVICE_ATTR(pwm6_enable, S_IRUGO | S_IWUSR,
1781 show_pwm_enable, set_pwm_enable, 5);
1782static SENSOR_DEVICE_ATTR(pwm6, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 5);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001783static SENSOR_DEVICE_ATTR(pwm6_freq, S_IRUGO, show_pwm_freq, NULL, 5);
Guenter Roeck5c391262013-03-30 15:02:12 -07001784static SENSOR_DEVICE_ATTR(pwm6_auto_channels_temp, S_IRUGO,
Guenter Roeck36c4d982015-03-26 18:18:19 -07001785 show_pwm_temp_map, set_pwm_temp_map, 5);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001786static SENSOR_DEVICE_ATTR_2(pwm6_auto_point1_temp, S_IRUGO | S_IWUSR,
1787 show_auto_temp, set_auto_temp, 2, 1);
1788static SENSOR_DEVICE_ATTR_2(pwm6_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1789 show_auto_temp, set_auto_temp, 2, 0);
1790static SENSOR_DEVICE_ATTR_2(pwm6_auto_point2_temp, S_IRUGO | S_IWUSR,
1791 show_auto_temp, set_auto_temp, 2, 2);
1792static SENSOR_DEVICE_ATTR_2(pwm6_auto_point3_temp, S_IRUGO | S_IWUSR,
1793 show_auto_temp, set_auto_temp, 2, 3);
1794static SENSOR_DEVICE_ATTR_2(pwm6_auto_start, S_IRUGO | S_IWUSR,
1795 show_auto_pwm, set_auto_pwm, 5, 0);
1796static SENSOR_DEVICE_ATTR(pwm6_auto_slope, S_IRUGO | S_IWUSR,
1797 show_auto_pwm_slope, set_auto_pwm_slope, 5);
Guenter Roeck36c4d982015-03-26 18:18:19 -07001798
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799/* Alarms */
Julia Lawallddc64ae2016-12-22 13:05:21 +01001800static ssize_t alarms_show(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001801 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802{
1803 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001804
Jean Delvare68188ba2005-05-16 18:52:38 +02001805 return sprintf(buf, "%u\n", data->alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806}
Julia Lawallddc64ae2016-12-22 13:05:21 +01001807static DEVICE_ATTR_RO(alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
Jean Delvare0124dd72007-11-25 16:16:41 +01001809static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001810 char *buf)
Jean Delvare0124dd72007-11-25 16:16:41 +01001811{
Jean Delvare0124dd72007-11-25 16:16:41 +01001812 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001813 int bitnr = to_sensor_dev_attr(attr)->index;
1814
Jean Delvare0124dd72007-11-25 16:16:41 +01001815 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
1816}
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001817
Guenter Roeckc9620242015-04-04 09:05:57 -07001818static ssize_t clear_intrusion(struct device *dev,
1819 struct device_attribute *attr, const char *buf,
1820 size_t count)
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001821{
1822 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001823 int config;
Guenter Roeckc9620242015-04-04 09:05:57 -07001824 long val;
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001825
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001826 if (kstrtol(buf, 10, &val) < 0 || val != 0)
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001827 return -EINVAL;
1828
1829 mutex_lock(&data->update_lock);
1830 config = it87_read_value(data, IT87_REG_CONFIG);
1831 if (config < 0) {
1832 count = config;
1833 } else {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001834 config |= BIT(5);
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001835 it87_write_value(data, IT87_REG_CONFIG, config);
1836 /* Invalidate cache to force re-read */
Paul Fertser952a11c2021-09-24 22:52:02 +03001837 data->valid = false;
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001838 }
1839 mutex_unlock(&data->update_lock);
1840
1841 return count;
1842}
1843
Jean Delvare0124dd72007-11-25 16:16:41 +01001844static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 8);
1845static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 9);
1846static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 10);
1847static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 11);
1848static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 12);
1849static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 13);
1850static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 14);
1851static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 15);
1852static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 0);
1853static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 1);
1854static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 2);
1855static SENSOR_DEVICE_ATTR(fan4_alarm, S_IRUGO, show_alarm, NULL, 3);
1856static SENSOR_DEVICE_ATTR(fan5_alarm, S_IRUGO, show_alarm, NULL, 6);
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07001857static SENSOR_DEVICE_ATTR(fan6_alarm, S_IRUGO, show_alarm, NULL, 7);
Jean Delvare0124dd72007-11-25 16:16:41 +01001858static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 16);
1859static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 17);
1860static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 18);
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001861static SENSOR_DEVICE_ATTR(intrusion0_alarm, S_IRUGO | S_IWUSR,
1862 show_alarm, clear_intrusion, 4);
Jean Delvare0124dd72007-11-25 16:16:41 +01001863
Jean Delvared9b327c2010-03-05 22:17:17 +01001864static ssize_t show_beep(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001865 char *buf)
Jean Delvared9b327c2010-03-05 22:17:17 +01001866{
Jean Delvared9b327c2010-03-05 22:17:17 +01001867 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001868 int bitnr = to_sensor_dev_attr(attr)->index;
1869
Jean Delvared9b327c2010-03-05 22:17:17 +01001870 return sprintf(buf, "%u\n", (data->beeps >> bitnr) & 1);
1871}
Guenter Roeckc9620242015-04-04 09:05:57 -07001872
Jean Delvared9b327c2010-03-05 22:17:17 +01001873static ssize_t set_beep(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001874 const char *buf, size_t count)
Jean Delvared9b327c2010-03-05 22:17:17 +01001875{
1876 int bitnr = to_sensor_dev_attr(attr)->index;
1877 struct it87_data *data = dev_get_drvdata(dev);
1878 long val;
1879
Guenter Roeckc9620242015-04-04 09:05:57 -07001880 if (kstrtol(buf, 10, &val) < 0 || (val != 0 && val != 1))
Jean Delvared9b327c2010-03-05 22:17:17 +01001881 return -EINVAL;
1882
1883 mutex_lock(&data->update_lock);
1884 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
1885 if (val)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001886 data->beeps |= BIT(bitnr);
Jean Delvared9b327c2010-03-05 22:17:17 +01001887 else
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001888 data->beeps &= ~BIT(bitnr);
Jean Delvared9b327c2010-03-05 22:17:17 +01001889 it87_write_value(data, IT87_REG_BEEP_ENABLE, data->beeps);
1890 mutex_unlock(&data->update_lock);
1891 return count;
1892}
1893
1894static SENSOR_DEVICE_ATTR(in0_beep, S_IRUGO | S_IWUSR,
1895 show_beep, set_beep, 1);
1896static SENSOR_DEVICE_ATTR(in1_beep, S_IRUGO, show_beep, NULL, 1);
1897static SENSOR_DEVICE_ATTR(in2_beep, S_IRUGO, show_beep, NULL, 1);
1898static SENSOR_DEVICE_ATTR(in3_beep, S_IRUGO, show_beep, NULL, 1);
1899static SENSOR_DEVICE_ATTR(in4_beep, S_IRUGO, show_beep, NULL, 1);
1900static SENSOR_DEVICE_ATTR(in5_beep, S_IRUGO, show_beep, NULL, 1);
1901static SENSOR_DEVICE_ATTR(in6_beep, S_IRUGO, show_beep, NULL, 1);
1902static SENSOR_DEVICE_ATTR(in7_beep, S_IRUGO, show_beep, NULL, 1);
1903/* fanX_beep writability is set later */
1904static SENSOR_DEVICE_ATTR(fan1_beep, S_IRUGO, show_beep, set_beep, 0);
1905static SENSOR_DEVICE_ATTR(fan2_beep, S_IRUGO, show_beep, set_beep, 0);
1906static SENSOR_DEVICE_ATTR(fan3_beep, S_IRUGO, show_beep, set_beep, 0);
1907static SENSOR_DEVICE_ATTR(fan4_beep, S_IRUGO, show_beep, set_beep, 0);
1908static SENSOR_DEVICE_ATTR(fan5_beep, S_IRUGO, show_beep, set_beep, 0);
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07001909static SENSOR_DEVICE_ATTR(fan6_beep, S_IRUGO, show_beep, set_beep, 0);
Jean Delvared9b327c2010-03-05 22:17:17 +01001910static SENSOR_DEVICE_ATTR(temp1_beep, S_IRUGO | S_IWUSR,
1911 show_beep, set_beep, 2);
1912static SENSOR_DEVICE_ATTR(temp2_beep, S_IRUGO, show_beep, NULL, 2);
1913static SENSOR_DEVICE_ATTR(temp3_beep, S_IRUGO, show_beep, NULL, 2);
1914
Julia Lawallddc64ae2016-12-22 13:05:21 +01001915static ssize_t vrm_show(struct device *dev, struct device_attribute *attr,
1916 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917{
Jean Delvare90d66192007-10-08 18:24:35 +02001918 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001919
Jean Delvarea7be58a2005-12-18 16:40:14 +01001920 return sprintf(buf, "%u\n", data->vrm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921}
Guenter Roeckc9620242015-04-04 09:05:57 -07001922
Julia Lawallddc64ae2016-12-22 13:05:21 +01001923static ssize_t vrm_store(struct device *dev, struct device_attribute *attr,
1924 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001926 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001927 unsigned long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001929 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001930 return -EINVAL;
1931
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 data->vrm = val;
1933
1934 return count;
1935}
Julia Lawallddc64ae2016-12-22 13:05:21 +01001936static DEVICE_ATTR_RW(vrm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
Julia Lawallddc64ae2016-12-22 13:05:21 +01001938static ssize_t cpu0_vid_show(struct device *dev,
1939 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940{
1941 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001942
1943 return sprintf(buf, "%ld\n", (long)vid_from_reg(data->vid, data->vrm));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944}
Julia Lawallddc64ae2016-12-22 13:05:21 +01001945static DEVICE_ATTR_RO(cpu0_vid);
Jean Delvare87808be2006-09-24 21:17:13 +02001946
Jean Delvare738e5e02010-08-14 21:08:50 +02001947static ssize_t show_label(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001948 char *buf)
Jean Delvare738e5e02010-08-14 21:08:50 +02001949{
Guenter Roeck3c4c4972012-01-20 09:29:44 -08001950 static const char * const labels[] = {
Jean Delvare738e5e02010-08-14 21:08:50 +02001951 "+5V",
1952 "5VSB",
1953 "Vbat",
Guenter Roeck638c1c02017-02-08 14:00:21 -08001954 "AVCC",
Jean Delvare738e5e02010-08-14 21:08:50 +02001955 };
Guenter Roeck3c4c4972012-01-20 09:29:44 -08001956 static const char * const labels_it8721[] = {
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001957 "+3.3V",
1958 "3VSB",
1959 "Vbat",
Guenter Roeck638c1c02017-02-08 14:00:21 -08001960 "+3.3V",
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001961 };
1962 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvare738e5e02010-08-14 21:08:50 +02001963 int nr = to_sensor_dev_attr(attr)->index;
Justin Maggardead80802015-08-05 12:53:08 -07001964 const char *label;
Jean Delvare738e5e02010-08-14 21:08:50 +02001965
Guenter Roecka9eebd42017-02-08 13:51:16 -08001966 if (has_vin3_5v(data) && nr == 0)
1967 label = labels[0];
1968 else if (has_12mv_adc(data) || has_10_9mv_adc(data))
Justin Maggardead80802015-08-05 12:53:08 -07001969 label = labels_it8721[nr];
1970 else
1971 label = labels[nr];
1972
1973 return sprintf(buf, "%s\n", label);
Jean Delvare738e5e02010-08-14 21:08:50 +02001974}
1975static SENSOR_DEVICE_ATTR(in3_label, S_IRUGO, show_label, NULL, 0);
1976static SENSOR_DEVICE_ATTR(in7_label, S_IRUGO, show_label, NULL, 1);
1977static SENSOR_DEVICE_ATTR(in8_label, S_IRUGO, show_label, NULL, 2);
Guenter Roeck73055402015-03-26 09:16:32 -07001978/* AVCC3 */
Guenter Roeck638c1c02017-02-08 14:00:21 -08001979static SENSOR_DEVICE_ATTR(in9_label, S_IRUGO, show_label, NULL, 3);
Jean Delvare738e5e02010-08-14 21:08:50 +02001980
Guenter Roeck52929712013-03-30 14:00:08 -07001981static umode_t it87_in_is_visible(struct kobject *kobj,
1982 struct attribute *attr, int index)
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001983{
Guenter Roeck9d2227b2021-03-18 12:06:19 -07001984 struct device *dev = kobj_to_dev(kobj);
Guenter Roeck52929712013-03-30 14:00:08 -07001985 struct it87_data *data = dev_get_drvdata(dev);
1986 int i = index / 5; /* voltage index */
1987 int a = index % 5; /* attribute index */
1988
Guenter Roeckf838aa22015-04-01 20:09:36 -07001989 if (index >= 40) { /* in8 and higher only have input attributes */
Guenter Roeck52929712013-03-30 14:00:08 -07001990 i = index - 40 + 8;
1991 a = 0;
1992 }
1993
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001994 if (!(data->has_in & BIT(i)))
Guenter Roeck52929712013-03-30 14:00:08 -07001995 return 0;
1996
1997 if (a == 4 && !data->has_beep)
1998 return 0;
1999
2000 return attr->mode;
2001}
2002
2003static struct attribute *it87_attributes_in[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02002004 &sensor_dev_attr_in0_input.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002005 &sensor_dev_attr_in0_min.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002006 &sensor_dev_attr_in0_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002007 &sensor_dev_attr_in0_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002008 &sensor_dev_attr_in0_beep.dev_attr.attr, /* 4 */
2009
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002010 &sensor_dev_attr_in1_input.dev_attr.attr,
2011 &sensor_dev_attr_in1_min.dev_attr.attr,
2012 &sensor_dev_attr_in1_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002013 &sensor_dev_attr_in1_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002014 &sensor_dev_attr_in1_beep.dev_attr.attr, /* 9 */
2015
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002016 &sensor_dev_attr_in2_input.dev_attr.attr,
2017 &sensor_dev_attr_in2_min.dev_attr.attr,
2018 &sensor_dev_attr_in2_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002019 &sensor_dev_attr_in2_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002020 &sensor_dev_attr_in2_beep.dev_attr.attr, /* 14 */
2021
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002022 &sensor_dev_attr_in3_input.dev_attr.attr,
2023 &sensor_dev_attr_in3_min.dev_attr.attr,
2024 &sensor_dev_attr_in3_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002025 &sensor_dev_attr_in3_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002026 &sensor_dev_attr_in3_beep.dev_attr.attr, /* 19 */
2027
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002028 &sensor_dev_attr_in4_input.dev_attr.attr,
2029 &sensor_dev_attr_in4_min.dev_attr.attr,
2030 &sensor_dev_attr_in4_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002031 &sensor_dev_attr_in4_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002032 &sensor_dev_attr_in4_beep.dev_attr.attr, /* 24 */
2033
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002034 &sensor_dev_attr_in5_input.dev_attr.attr,
2035 &sensor_dev_attr_in5_min.dev_attr.attr,
2036 &sensor_dev_attr_in5_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002037 &sensor_dev_attr_in5_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002038 &sensor_dev_attr_in5_beep.dev_attr.attr, /* 29 */
2039
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002040 &sensor_dev_attr_in6_input.dev_attr.attr,
2041 &sensor_dev_attr_in6_min.dev_attr.attr,
2042 &sensor_dev_attr_in6_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002043 &sensor_dev_attr_in6_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002044 &sensor_dev_attr_in6_beep.dev_attr.attr, /* 34 */
2045
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002046 &sensor_dev_attr_in7_input.dev_attr.attr,
2047 &sensor_dev_attr_in7_min.dev_attr.attr,
2048 &sensor_dev_attr_in7_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002049 &sensor_dev_attr_in7_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002050 &sensor_dev_attr_in7_beep.dev_attr.attr, /* 39 */
Jean Delvare87808be2006-09-24 21:17:13 +02002051
Guenter Roeck52929712013-03-30 14:00:08 -07002052 &sensor_dev_attr_in8_input.dev_attr.attr, /* 40 */
Jean Delvared5f3f6c2016-08-29 13:33:29 +02002053 &sensor_dev_attr_in9_input.dev_attr.attr,
2054 &sensor_dev_attr_in10_input.dev_attr.attr,
2055 &sensor_dev_attr_in11_input.dev_attr.attr,
2056 &sensor_dev_attr_in12_input.dev_attr.attr,
Jean Delvare3c329262016-08-29 13:18:23 +02002057 NULL
Guenter Roeck52929712013-03-30 14:00:08 -07002058};
2059
2060static const struct attribute_group it87_group_in = {
2061 .attrs = it87_attributes_in,
2062 .is_visible = it87_in_is_visible,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002063};
2064
Guenter Roeck87533772013-03-30 14:23:20 -07002065static umode_t it87_temp_is_visible(struct kobject *kobj,
2066 struct attribute *attr, int index)
Guenter Roeck4573acb2012-03-26 16:17:41 -07002067{
Guenter Roeck9d2227b2021-03-18 12:06:19 -07002068 struct device *dev = kobj_to_dev(kobj);
Guenter Roeck87533772013-03-30 14:23:20 -07002069 struct it87_data *data = dev_get_drvdata(dev);
2070 int i = index / 7; /* temperature index */
2071 int a = index % 7; /* attribute index */
2072
Guenter Roeckcc18da72015-04-01 10:03:01 -07002073 if (index >= 21) {
2074 i = index - 21 + 3;
2075 a = 0;
2076 }
2077
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002078 if (!(data->has_temp & BIT(i)))
Guenter Roeck87533772013-03-30 14:23:20 -07002079 return 0;
2080
2081 if (a == 5 && !has_temp_offset(data))
2082 return 0;
2083
2084 if (a == 6 && !data->has_beep)
2085 return 0;
2086
2087 return attr->mode;
2088}
2089
2090static struct attribute *it87_attributes_temp[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02002091 &sensor_dev_attr_temp1_input.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002092 &sensor_dev_attr_temp1_max.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002093 &sensor_dev_attr_temp1_min.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002094 &sensor_dev_attr_temp1_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002095 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
Guenter Roeck87533772013-03-30 14:23:20 -07002096 &sensor_dev_attr_temp1_offset.dev_attr.attr, /* 5 */
2097 &sensor_dev_attr_temp1_beep.dev_attr.attr, /* 6 */
2098
Guenter Roeckcc18da72015-04-01 10:03:01 -07002099 &sensor_dev_attr_temp2_input.dev_attr.attr, /* 7 */
Guenter Roeck4573acb2012-03-26 16:17:41 -07002100 &sensor_dev_attr_temp2_max.dev_attr.attr,
2101 &sensor_dev_attr_temp2_min.dev_attr.attr,
2102 &sensor_dev_attr_temp2_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002103 &sensor_dev_attr_temp2_alarm.dev_attr.attr,
Guenter Roeck87533772013-03-30 14:23:20 -07002104 &sensor_dev_attr_temp2_offset.dev_attr.attr,
2105 &sensor_dev_attr_temp2_beep.dev_attr.attr,
2106
Guenter Roeckcc18da72015-04-01 10:03:01 -07002107 &sensor_dev_attr_temp3_input.dev_attr.attr, /* 14 */
Guenter Roeck4573acb2012-03-26 16:17:41 -07002108 &sensor_dev_attr_temp3_max.dev_attr.attr,
2109 &sensor_dev_attr_temp3_min.dev_attr.attr,
2110 &sensor_dev_attr_temp3_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002111 &sensor_dev_attr_temp3_alarm.dev_attr.attr,
Guenter Roeck87533772013-03-30 14:23:20 -07002112 &sensor_dev_attr_temp3_offset.dev_attr.attr,
2113 &sensor_dev_attr_temp3_beep.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002114
Guenter Roeckcc18da72015-04-01 10:03:01 -07002115 &sensor_dev_attr_temp4_input.dev_attr.attr, /* 21 */
2116 &sensor_dev_attr_temp5_input.dev_attr.attr,
2117 &sensor_dev_attr_temp6_input.dev_attr.attr,
Guenter Roeck87533772013-03-30 14:23:20 -07002118 NULL
Guenter Roeck4573acb2012-03-26 16:17:41 -07002119};
2120
Guenter Roeck87533772013-03-30 14:23:20 -07002121static const struct attribute_group it87_group_temp = {
2122 .attrs = it87_attributes_temp,
2123 .is_visible = it87_temp_is_visible,
Guenter Roeck161d8982012-12-19 22:17:01 +01002124};
2125
Guenter Roeckd3766842013-03-30 15:47:21 -07002126static umode_t it87_is_visible(struct kobject *kobj,
2127 struct attribute *attr, int index)
2128{
Guenter Roeck9d2227b2021-03-18 12:06:19 -07002129 struct device *dev = kobj_to_dev(kobj);
Guenter Roeckd3766842013-03-30 15:47:21 -07002130 struct it87_data *data = dev_get_drvdata(dev);
2131
Guenter Roeck8638d0a2015-03-30 11:13:49 -07002132 if ((index == 2 || index == 3) && !data->has_vid)
Guenter Roeckd3766842013-03-30 15:47:21 -07002133 return 0;
2134
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002135 if (index > 3 && !(data->in_internal & BIT(index - 4)))
Guenter Roeckd3766842013-03-30 15:47:21 -07002136 return 0;
2137
2138 return attr->mode;
2139}
2140
Guenter Roeck4573acb2012-03-26 16:17:41 -07002141static struct attribute *it87_attributes[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02002142 &dev_attr_alarms.attr,
Jean Delvare3d30f9e2011-07-25 21:46:10 +02002143 &sensor_dev_attr_intrusion0_alarm.dev_attr.attr,
Guenter Roeck8638d0a2015-03-30 11:13:49 -07002144 &dev_attr_vrm.attr, /* 2 */
2145 &dev_attr_cpu0_vid.attr, /* 3 */
2146 &sensor_dev_attr_in3_label.dev_attr.attr, /* 4 .. 7 */
Guenter Roeckd3766842013-03-30 15:47:21 -07002147 &sensor_dev_attr_in7_label.dev_attr.attr,
2148 &sensor_dev_attr_in8_label.dev_attr.attr,
2149 &sensor_dev_attr_in9_label.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002150 NULL
2151};
2152
2153static const struct attribute_group it87_group = {
2154 .attrs = it87_attributes,
Guenter Roeckd3766842013-03-30 15:47:21 -07002155 .is_visible = it87_is_visible,
Jean Delvare87808be2006-09-24 21:17:13 +02002156};
2157
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002158static umode_t it87_fan_is_visible(struct kobject *kobj,
2159 struct attribute *attr, int index)
2160{
Guenter Roeck9d2227b2021-03-18 12:06:19 -07002161 struct device *dev = kobj_to_dev(kobj);
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002162 struct it87_data *data = dev_get_drvdata(dev);
2163 int i = index / 5; /* fan index */
2164 int a = index % 5; /* attribute index */
2165
2166 if (index >= 15) { /* fan 4..6 don't have divisor attributes */
2167 i = (index - 15) / 4 + 3;
2168 a = (index - 15) % 4;
2169 }
2170
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002171 if (!(data->has_fan & BIT(i)))
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002172 return 0;
2173
2174 if (a == 3) { /* beep */
2175 if (!data->has_beep)
2176 return 0;
2177 /* first fan beep attribute is writable */
2178 if (i == __ffs(data->has_fan))
2179 return attr->mode | S_IWUSR;
2180 }
2181
2182 if (a == 4 && has_16bit_fans(data)) /* divisor */
2183 return 0;
2184
2185 return attr->mode;
2186}
2187
2188static struct attribute *it87_attributes_fan[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02002189 &sensor_dev_attr_fan1_input.dev_attr.attr,
2190 &sensor_dev_attr_fan1_min.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01002191 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002192 &sensor_dev_attr_fan1_beep.dev_attr.attr, /* 3 */
2193 &sensor_dev_attr_fan1_div.dev_attr.attr, /* 4 */
2194
Jean Delvare87808be2006-09-24 21:17:13 +02002195 &sensor_dev_attr_fan2_input.dev_attr.attr,
2196 &sensor_dev_attr_fan2_min.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01002197 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002198 &sensor_dev_attr_fan2_beep.dev_attr.attr,
2199 &sensor_dev_attr_fan2_div.dev_attr.attr, /* 9 */
2200
Jean Delvare87808be2006-09-24 21:17:13 +02002201 &sensor_dev_attr_fan3_input.dev_attr.attr,
2202 &sensor_dev_attr_fan3_min.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002203 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002204 &sensor_dev_attr_fan3_beep.dev_attr.attr,
2205 &sensor_dev_attr_fan3_div.dev_attr.attr, /* 14 */
2206
2207 &sensor_dev_attr_fan4_input.dev_attr.attr, /* 15 */
Guenter Roecke1169ba2012-12-19 22:17:01 +01002208 &sensor_dev_attr_fan4_min.dev_attr.attr,
2209 &sensor_dev_attr_fan4_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002210 &sensor_dev_attr_fan4_beep.dev_attr.attr,
2211
2212 &sensor_dev_attr_fan5_input.dev_attr.attr, /* 19 */
Guenter Roecke1169ba2012-12-19 22:17:01 +01002213 &sensor_dev_attr_fan5_min.dev_attr.attr,
2214 &sensor_dev_attr_fan5_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002215 &sensor_dev_attr_fan5_beep.dev_attr.attr,
2216
2217 &sensor_dev_attr_fan6_input.dev_attr.attr, /* 23 */
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07002218 &sensor_dev_attr_fan6_min.dev_attr.attr,
2219 &sensor_dev_attr_fan6_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002220 &sensor_dev_attr_fan6_beep.dev_attr.attr,
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07002221 NULL
Jean Delvare723a0aa2010-03-05 22:17:16 +01002222};
2223
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002224static const struct attribute_group it87_group_fan = {
2225 .attrs = it87_attributes_fan,
2226 .is_visible = it87_fan_is_visible,
Guenter Roecke1169ba2012-12-19 22:17:01 +01002227};
Jean Delvare723a0aa2010-03-05 22:17:16 +01002228
Guenter Roeck5c391262013-03-30 15:02:12 -07002229static umode_t it87_pwm_is_visible(struct kobject *kobj,
2230 struct attribute *attr, int index)
Guenter Roeck60878bc2015-03-26 19:57:42 -07002231{
Guenter Roeck9d2227b2021-03-18 12:06:19 -07002232 struct device *dev = kobj_to_dev(kobj);
Guenter Roeck60878bc2015-03-26 19:57:42 -07002233 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeck5c391262013-03-30 15:02:12 -07002234 int i = index / 4; /* pwm index */
2235 int a = index % 4; /* attribute index */
Guenter Roeck60878bc2015-03-26 19:57:42 -07002236
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002237 if (!(data->has_pwm & BIT(i)))
Guenter Roeck5c391262013-03-30 15:02:12 -07002238 return 0;
2239
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002240 /* pwmX_auto_channels_temp is only writable if auto pwm is supported */
2241 if (a == 3 && (has_old_autopwm(data) || has_newer_autopwm(data)))
Guenter Roeck5c391262013-03-30 15:02:12 -07002242 return attr->mode | S_IWUSR;
2243
2244 /* pwm2_freq is writable if there are two pwm frequency selects */
2245 if (has_pwm_freq2(data) && i == 1 && a == 2)
Guenter Roeck60878bc2015-03-26 19:57:42 -07002246 return attr->mode | S_IWUSR;
2247
2248 return attr->mode;
2249}
2250
Guenter Roeck5c391262013-03-30 15:02:12 -07002251static struct attribute *it87_attributes_pwm[] = {
2252 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
2253 &sensor_dev_attr_pwm1.dev_attr.attr,
2254 &sensor_dev_attr_pwm1_freq.dev_attr.attr,
2255 &sensor_dev_attr_pwm1_auto_channels_temp.dev_attr.attr,
2256
2257 &sensor_dev_attr_pwm2_enable.dev_attr.attr,
2258 &sensor_dev_attr_pwm2.dev_attr.attr,
2259 &sensor_dev_attr_pwm2_freq.dev_attr.attr,
2260 &sensor_dev_attr_pwm2_auto_channels_temp.dev_attr.attr,
2261
2262 &sensor_dev_attr_pwm3_enable.dev_attr.attr,
2263 &sensor_dev_attr_pwm3.dev_attr.attr,
2264 &sensor_dev_attr_pwm3_freq.dev_attr.attr,
2265 &sensor_dev_attr_pwm3_auto_channels_temp.dev_attr.attr,
2266
2267 &sensor_dev_attr_pwm4_enable.dev_attr.attr,
2268 &sensor_dev_attr_pwm4.dev_attr.attr,
2269 &sensor_dev_attr_pwm4_freq.dev_attr.attr,
2270 &sensor_dev_attr_pwm4_auto_channels_temp.dev_attr.attr,
2271
2272 &sensor_dev_attr_pwm5_enable.dev_attr.attr,
2273 &sensor_dev_attr_pwm5.dev_attr.attr,
2274 &sensor_dev_attr_pwm5_freq.dev_attr.attr,
2275 &sensor_dev_attr_pwm5_auto_channels_temp.dev_attr.attr,
2276
2277 &sensor_dev_attr_pwm6_enable.dev_attr.attr,
2278 &sensor_dev_attr_pwm6.dev_attr.attr,
2279 &sensor_dev_attr_pwm6_freq.dev_attr.attr,
2280 &sensor_dev_attr_pwm6_auto_channels_temp.dev_attr.attr,
2281
2282 NULL
Jean Delvare723a0aa2010-03-05 22:17:16 +01002283};
2284
Guenter Roeck5c391262013-03-30 15:02:12 -07002285static const struct attribute_group it87_group_pwm = {
2286 .attrs = it87_attributes_pwm,
2287 .is_visible = it87_pwm_is_visible,
2288};
2289
2290static umode_t it87_auto_pwm_is_visible(struct kobject *kobj,
2291 struct attribute *attr, int index)
2292{
Guenter Roeck9d2227b2021-03-18 12:06:19 -07002293 struct device *dev = kobj_to_dev(kobj);
Guenter Roeck5c391262013-03-30 15:02:12 -07002294 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002295 int i = index / 11; /* pwm index */
2296 int a = index % 11; /* attribute index */
2297
2298 if (index >= 33) { /* pwm 4..6 */
2299 i = (index - 33) / 6 + 3;
2300 a = (index - 33) % 6 + 4;
2301 }
Guenter Roeck5c391262013-03-30 15:02:12 -07002302
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002303 if (!(data->has_pwm & BIT(i)))
Guenter Roeck5c391262013-03-30 15:02:12 -07002304 return 0;
2305
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002306 if (has_newer_autopwm(data)) {
2307 if (a < 4) /* no auto point pwm */
2308 return 0;
2309 if (a == 8) /* no auto_point4 */
2310 return 0;
2311 }
2312 if (has_old_autopwm(data)) {
2313 if (a >= 9) /* no pwm_auto_start, pwm_auto_slope */
2314 return 0;
2315 }
2316
Guenter Roeck5c391262013-03-30 15:02:12 -07002317 return attr->mode;
2318}
2319
2320static struct attribute *it87_attributes_auto_pwm[] = {
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002321 &sensor_dev_attr_pwm1_auto_point1_pwm.dev_attr.attr,
2322 &sensor_dev_attr_pwm1_auto_point2_pwm.dev_attr.attr,
2323 &sensor_dev_attr_pwm1_auto_point3_pwm.dev_attr.attr,
2324 &sensor_dev_attr_pwm1_auto_point4_pwm.dev_attr.attr,
2325 &sensor_dev_attr_pwm1_auto_point1_temp.dev_attr.attr,
2326 &sensor_dev_attr_pwm1_auto_point1_temp_hyst.dev_attr.attr,
2327 &sensor_dev_attr_pwm1_auto_point2_temp.dev_attr.attr,
2328 &sensor_dev_attr_pwm1_auto_point3_temp.dev_attr.attr,
2329 &sensor_dev_attr_pwm1_auto_point4_temp.dev_attr.attr,
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002330 &sensor_dev_attr_pwm1_auto_start.dev_attr.attr,
2331 &sensor_dev_attr_pwm1_auto_slope.dev_attr.attr,
Guenter Roeck5c391262013-03-30 15:02:12 -07002332
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002333 &sensor_dev_attr_pwm2_auto_point1_pwm.dev_attr.attr, /* 11 */
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002334 &sensor_dev_attr_pwm2_auto_point2_pwm.dev_attr.attr,
2335 &sensor_dev_attr_pwm2_auto_point3_pwm.dev_attr.attr,
2336 &sensor_dev_attr_pwm2_auto_point4_pwm.dev_attr.attr,
2337 &sensor_dev_attr_pwm2_auto_point1_temp.dev_attr.attr,
2338 &sensor_dev_attr_pwm2_auto_point1_temp_hyst.dev_attr.attr,
2339 &sensor_dev_attr_pwm2_auto_point2_temp.dev_attr.attr,
2340 &sensor_dev_attr_pwm2_auto_point3_temp.dev_attr.attr,
2341 &sensor_dev_attr_pwm2_auto_point4_temp.dev_attr.attr,
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002342 &sensor_dev_attr_pwm2_auto_start.dev_attr.attr,
2343 &sensor_dev_attr_pwm2_auto_slope.dev_attr.attr,
Guenter Roeck5c391262013-03-30 15:02:12 -07002344
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002345 &sensor_dev_attr_pwm3_auto_point1_pwm.dev_attr.attr, /* 22 */
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002346 &sensor_dev_attr_pwm3_auto_point2_pwm.dev_attr.attr,
2347 &sensor_dev_attr_pwm3_auto_point3_pwm.dev_attr.attr,
2348 &sensor_dev_attr_pwm3_auto_point4_pwm.dev_attr.attr,
2349 &sensor_dev_attr_pwm3_auto_point1_temp.dev_attr.attr,
2350 &sensor_dev_attr_pwm3_auto_point1_temp_hyst.dev_attr.attr,
2351 &sensor_dev_attr_pwm3_auto_point2_temp.dev_attr.attr,
2352 &sensor_dev_attr_pwm3_auto_point3_temp.dev_attr.attr,
2353 &sensor_dev_attr_pwm3_auto_point4_temp.dev_attr.attr,
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002354 &sensor_dev_attr_pwm3_auto_start.dev_attr.attr,
2355 &sensor_dev_attr_pwm3_auto_slope.dev_attr.attr,
2356
2357 &sensor_dev_attr_pwm4_auto_point1_temp.dev_attr.attr, /* 33 */
2358 &sensor_dev_attr_pwm4_auto_point1_temp_hyst.dev_attr.attr,
2359 &sensor_dev_attr_pwm4_auto_point2_temp.dev_attr.attr,
2360 &sensor_dev_attr_pwm4_auto_point3_temp.dev_attr.attr,
2361 &sensor_dev_attr_pwm4_auto_start.dev_attr.attr,
2362 &sensor_dev_attr_pwm4_auto_slope.dev_attr.attr,
2363
2364 &sensor_dev_attr_pwm5_auto_point1_temp.dev_attr.attr,
2365 &sensor_dev_attr_pwm5_auto_point1_temp_hyst.dev_attr.attr,
2366 &sensor_dev_attr_pwm5_auto_point2_temp.dev_attr.attr,
2367 &sensor_dev_attr_pwm5_auto_point3_temp.dev_attr.attr,
2368 &sensor_dev_attr_pwm5_auto_start.dev_attr.attr,
2369 &sensor_dev_attr_pwm5_auto_slope.dev_attr.attr,
2370
2371 &sensor_dev_attr_pwm6_auto_point1_temp.dev_attr.attr,
2372 &sensor_dev_attr_pwm6_auto_point1_temp_hyst.dev_attr.attr,
2373 &sensor_dev_attr_pwm6_auto_point2_temp.dev_attr.attr,
2374 &sensor_dev_attr_pwm6_auto_point3_temp.dev_attr.attr,
2375 &sensor_dev_attr_pwm6_auto_start.dev_attr.attr,
2376 &sensor_dev_attr_pwm6_auto_slope.dev_attr.attr,
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002377
Guenter Roeck5c391262013-03-30 15:02:12 -07002378 NULL,
2379};
2380
2381static const struct attribute_group it87_group_auto_pwm = {
2382 .attrs = it87_attributes_auto_pwm,
2383 .is_visible = it87_auto_pwm_is_visible,
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002384};
2385
Jean Delvare2d8672c2005-07-19 23:56:35 +02002386/* SuperIO detection - will change isa_address if a chip is found */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002387static int __init it87_find(int sioaddr, unsigned short *address,
2388 struct it87_sio_data *sio_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389{
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +02002390 int err;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002391 u16 chip_type;
Jean Delvare98dd22c2008-10-09 15:33:58 +02002392 const char *board_vendor, *board_name;
Guenter Roeckf83a9cb2015-03-31 09:31:34 -07002393 const struct it87_devices *config;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002395 err = superio_enter(sioaddr);
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +02002396 if (err)
2397 return err;
2398
2399 err = -ENODEV;
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002400 chip_type = force_id ? force_id : superio_inw(sioaddr, DEVID);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002401
2402 switch (chip_type) {
2403 case IT8705F_DEVID:
2404 sio_data->type = it87;
2405 break;
2406 case IT8712F_DEVID:
2407 sio_data->type = it8712;
2408 break;
2409 case IT8716F_DEVID:
2410 case IT8726F_DEVID:
2411 sio_data->type = it8716;
2412 break;
2413 case IT8718F_DEVID:
2414 sio_data->type = it8718;
2415 break;
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +01002416 case IT8720F_DEVID:
2417 sio_data->type = it8720;
2418 break;
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002419 case IT8721F_DEVID:
2420 sio_data->type = it8721;
2421 break;
Jean Delvare16b5dda2012-01-16 22:51:48 +01002422 case IT8728F_DEVID:
2423 sio_data->type = it8728;
2424 break;
Justin Maggardead80802015-08-05 12:53:08 -07002425 case IT8732F_DEVID:
2426 sio_data->type = it8732;
2427 break;
Guenter Roecke531ffc2017-02-08 15:10:27 -08002428 case IT8792E_DEVID:
2429 sio_data->type = it8792;
2430 break;
Guenter Roeckb0636702012-09-07 17:34:41 -06002431 case IT8771E_DEVID:
2432 sio_data->type = it8771;
2433 break;
2434 case IT8772E_DEVID:
2435 sio_data->type = it8772;
2436 break;
Guenter Roeck7bc32d22015-01-17 14:10:24 -08002437 case IT8781F_DEVID:
2438 sio_data->type = it8781;
2439 break;
Guenter Roeck0531d982012-03-02 11:46:44 -08002440 case IT8782F_DEVID:
2441 sio_data->type = it8782;
2442 break;
2443 case IT8783E_DEVID:
2444 sio_data->type = it8783;
2445 break;
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +01002446 case IT8786E_DEVID:
2447 sio_data->type = it8786;
2448 break;
Guenter Roeck4ee07152015-03-25 23:26:28 -07002449 case IT8790E_DEVID:
2450 sio_data->type = it8790;
2451 break;
Rudolf Marek7183ae82014-04-04 18:01:35 +02002452 case IT8603E_DEVID:
Rudolf Marek574e9bd2014-04-04 18:01:35 +02002453 case IT8623E_DEVID:
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002454 sio_data->type = it8603;
2455 break;
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002456 case IT8620E_DEVID:
2457 sio_data->type = it8620;
2458 break;
Guenter Roeck8af1aba2017-02-08 13:52:57 -08002459 case IT8622E_DEVID:
2460 sio_data->type = it8622;
2461 break;
Guenter Roeck71a9c232016-01-18 00:35:58 -08002462 case IT8628E_DEVID:
2463 sio_data->type = it8628;
2464 break;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002465 case 0xffff: /* No device at all */
2466 goto exit;
2467 default:
Joe Perchesa8ca1032011-01-12 21:55:10 +01002468 pr_debug("Unsupported chip (DEVID=0x%x)\n", chip_type);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002469 goto exit;
2470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002472 superio_select(sioaddr, PME);
2473 if (!(superio_inb(sioaddr, IT87_ACT_REG) & 0x01)) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002474 pr_info("Device not activated, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 goto exit;
2476 }
2477
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002478 *address = superio_inw(sioaddr, IT87_BASE_REG) & ~(IT87_EXTENT - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 if (*address == 0) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002480 pr_info("Base address not set, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 goto exit;
2482 }
2483
2484 err = 0;
Maciej S. Szmigiero384548e2017-08-09 17:15:46 +02002485 sio_data->sioaddr = sioaddr;
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002486 sio_data->revision = superio_inb(sioaddr, DEVREV) & 0x0f;
Guenter Roeckfaf392f2015-03-26 08:36:18 -07002487 pr_info("Found IT%04x%s chip at 0x%x, revision %d\n", chip_type,
2488 it87_devices[sio_data->type].suffix,
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +01002489 *address, sio_data->revision);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490
Guenter Roeckf83a9cb2015-03-31 09:31:34 -07002491 config = &it87_devices[sio_data->type];
2492
Guenter Roeck7f5726c2015-03-26 08:49:18 -07002493 /* in7 (VSB or VCCH5V) is always internal on some chips */
Guenter Roeckf83a9cb2015-03-31 09:31:34 -07002494 if (has_in7_internal(config))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002495 sio_data->internal |= BIT(1);
Guenter Roeck7f5726c2015-03-26 08:49:18 -07002496
Jean Delvare738e5e02010-08-14 21:08:50 +02002497 /* in8 (Vbat) is always internal */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002498 sio_data->internal |= BIT(2);
Guenter Roeck7f5726c2015-03-26 08:49:18 -07002499
Guenter Roeck73055402015-03-26 09:16:32 -07002500 /* in9 (AVCC3), always internal if supported */
2501 if (has_avcc3(config))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002502 sio_data->internal |= BIT(3); /* in9 is AVCC */
Guenter Roeck73055402015-03-26 09:16:32 -07002503 else
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002504 sio_data->skip_in |= BIT(9);
Jean Delvare738e5e02010-08-14 21:08:50 +02002505
Guenter Roeck638c1c02017-02-08 14:00:21 -08002506 if (!has_five_pwm(config))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002507 sio_data->skip_pwm |= BIT(3) | BIT(4) | BIT(5);
Guenter Roeck638c1c02017-02-08 14:00:21 -08002508 else if (!has_six_pwm(config))
2509 sio_data->skip_pwm |= BIT(5);
Guenter Roeck36c4d982015-03-26 18:18:19 -07002510
Guenter Roeckf83a9cb2015-03-31 09:31:34 -07002511 if (!has_vid(config))
Jean Delvare895ff262009-12-09 20:35:47 +01002512 sio_data->skip_vid = 1;
Jean Delvared9b327c2010-03-05 22:17:17 +01002513
Guenter Roeck32dd7c402015-02-12 07:40:23 -08002514 /* Read GPIO config and VID value from LDN 7 (GPIO) */
2515 if (sio_data->type == it87) {
Jean Delvared9b327c2010-03-05 22:17:17 +01002516 /* The IT8705F has a different LD number for GPIO */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002517 superio_select(sioaddr, 5);
2518 sio_data->beep_pin = superio_inb(sioaddr,
2519 IT87_SIO_BEEP_PIN_REG) & 0x3f;
Guenter Roeck0531d982012-03-02 11:46:44 -08002520 } else if (sio_data->type == it8783) {
Guenter Roeck088ce2a2013-03-13 16:40:39 -07002521 int reg25, reg27, reg2a, reg2c, regef;
Guenter Roeck0531d982012-03-02 11:46:44 -08002522
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002523 superio_select(sioaddr, GPIO);
Guenter Roeck0531d982012-03-02 11:46:44 -08002524
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002525 reg25 = superio_inb(sioaddr, IT87_SIO_GPIO1_REG);
2526 reg27 = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
2527 reg2a = superio_inb(sioaddr, IT87_SIO_PINX1_REG);
2528 reg2c = superio_inb(sioaddr, IT87_SIO_PINX2_REG);
2529 regef = superio_inb(sioaddr, IT87_SIO_SPI_REG);
Guenter Roeck0531d982012-03-02 11:46:44 -08002530
Guenter Roeck0531d982012-03-02 11:46:44 -08002531 /* Check if fan3 is there or not */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002532 if ((reg27 & BIT(0)) || !(reg2c & BIT(2)))
2533 sio_data->skip_fan |= BIT(2);
Guenter Roeckc9620242015-04-04 09:05:57 -07002534 if ((reg25 & BIT(4)) ||
2535 (!(reg2a & BIT(1)) && (regef & BIT(0))))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002536 sio_data->skip_pwm |= BIT(2);
Guenter Roeck0531d982012-03-02 11:46:44 -08002537
2538 /* Check if fan2 is there or not */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002539 if (reg27 & BIT(7))
2540 sio_data->skip_fan |= BIT(1);
2541 if (reg27 & BIT(3))
2542 sio_data->skip_pwm |= BIT(1);
Guenter Roeck0531d982012-03-02 11:46:44 -08002543
2544 /* VIN5 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002545 if ((reg27 & BIT(0)) || (reg2c & BIT(2)))
2546 sio_data->skip_in |= BIT(5); /* No VIN5 */
Guenter Roeck0531d982012-03-02 11:46:44 -08002547
2548 /* VIN6 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002549 if (reg27 & BIT(1))
2550 sio_data->skip_in |= BIT(6); /* No VIN6 */
Guenter Roeck0531d982012-03-02 11:46:44 -08002551
2552 /*
2553 * VIN7
2554 * Does not depend on bit 2 of Reg2C, contrary to datasheet.
2555 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002556 if (reg27 & BIT(2)) {
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002557 /*
2558 * The data sheet is a bit unclear regarding the
2559 * internal voltage divider for VCCH5V. It says
2560 * "This bit enables and switches VIN7 (pin 91) to the
2561 * internal voltage divider for VCCH5V".
2562 * This is different to other chips, where the internal
2563 * voltage divider would connect VIN7 to an internal
2564 * voltage source. Maybe that is the case here as well.
2565 *
2566 * Since we don't know for sure, re-route it if that is
2567 * not the case, and ask the user to report if the
2568 * resulting voltage is sane.
2569 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002570 if (!(reg2c & BIT(1))) {
2571 reg2c |= BIT(1);
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002572 superio_outb(sioaddr, IT87_SIO_PINX2_REG,
2573 reg2c);
Maciej S. Szmigiero384548e2017-08-09 17:15:46 +02002574 sio_data->need_in7_reroute = true;
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002575 pr_notice("Routing internal VCCH5V to in7.\n");
2576 }
2577 pr_notice("in7 routed to internal voltage divider, with external pin disabled.\n");
2578 pr_notice("Please report if it displays a reasonable voltage.\n");
2579 }
Guenter Roeck0531d982012-03-02 11:46:44 -08002580
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002581 if (reg2c & BIT(0))
2582 sio_data->internal |= BIT(0);
2583 if (reg2c & BIT(1))
2584 sio_data->internal |= BIT(1);
Guenter Roeck0531d982012-03-02 11:46:44 -08002585
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002586 sio_data->beep_pin = superio_inb(sioaddr,
2587 IT87_SIO_BEEP_PIN_REG) & 0x3f;
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002588 } else if (sio_data->type == it8603) {
2589 int reg27, reg29;
Guenter Roeck0531d982012-03-02 11:46:44 -08002590
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002591 superio_select(sioaddr, GPIO);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002592
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002593 reg27 = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002594
2595 /* Check if fan3 is there or not */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002596 if (reg27 & BIT(6))
2597 sio_data->skip_pwm |= BIT(2);
2598 if (reg27 & BIT(7))
2599 sio_data->skip_fan |= BIT(2);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002600
2601 /* Check if fan2 is there or not */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002602 reg29 = superio_inb(sioaddr, IT87_SIO_GPIO5_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002603 if (reg29 & BIT(1))
2604 sio_data->skip_pwm |= BIT(1);
2605 if (reg29 & BIT(2))
2606 sio_data->skip_fan |= BIT(1);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002607
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002608 sio_data->skip_in |= BIT(5); /* No VIN5 */
2609 sio_data->skip_in |= BIT(6); /* No VIN6 */
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002610
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002611 sio_data->beep_pin = superio_inb(sioaddr,
2612 IT87_SIO_BEEP_PIN_REG) & 0x3f;
Guenter Roeck71a9c232016-01-18 00:35:58 -08002613 } else if (sio_data->type == it8620 || sio_data->type == it8628) {
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002614 int reg;
2615
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002616 superio_select(sioaddr, GPIO);
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002617
Guenter Roeck36c4d982015-03-26 18:18:19 -07002618 /* Check for pwm5 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002619 reg = superio_inb(sioaddr, IT87_SIO_GPIO1_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002620 if (reg & BIT(6))
2621 sio_data->skip_pwm |= BIT(4);
Guenter Roeck36c4d982015-03-26 18:18:19 -07002622
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002623 /* Check for fan4, fan5 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002624 reg = superio_inb(sioaddr, IT87_SIO_GPIO2_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002625 if (!(reg & BIT(5)))
2626 sio_data->skip_fan |= BIT(3);
2627 if (!(reg & BIT(4)))
2628 sio_data->skip_fan |= BIT(4);
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002629
2630 /* Check for pwm3, fan3 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002631 reg = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002632 if (reg & BIT(6))
2633 sio_data->skip_pwm |= BIT(2);
2634 if (reg & BIT(7))
2635 sio_data->skip_fan |= BIT(2);
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002636
Guenter Roeck36c4d982015-03-26 18:18:19 -07002637 /* Check for pwm4 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002638 reg = superio_inb(sioaddr, IT87_SIO_GPIO4_REG);
Guenter Roeckd66777c2017-02-08 14:05:56 -08002639 if (reg & BIT(2))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002640 sio_data->skip_pwm |= BIT(3);
Guenter Roeck36c4d982015-03-26 18:18:19 -07002641
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002642 /* Check for pwm2, fan2 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002643 reg = superio_inb(sioaddr, IT87_SIO_GPIO5_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002644 if (reg & BIT(1))
2645 sio_data->skip_pwm |= BIT(1);
2646 if (reg & BIT(2))
2647 sio_data->skip_fan |= BIT(1);
Guenter Roeck36c4d982015-03-26 18:18:19 -07002648 /* Check for pwm6, fan6 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002649 if (!(reg & BIT(7))) {
2650 sio_data->skip_pwm |= BIT(5);
2651 sio_data->skip_fan |= BIT(5);
Guenter Roeck36c4d982015-03-26 18:18:19 -07002652 }
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002653
Guenter Roeck638c1c02017-02-08 14:00:21 -08002654 /* Check if AVCC is on VIN3 */
2655 reg = superio_inb(sioaddr, IT87_SIO_PINX2_REG);
2656 if (reg & BIT(0))
2657 sio_data->internal |= BIT(0);
2658 else
2659 sio_data->skip_in |= BIT(9);
2660
2661 sio_data->beep_pin = superio_inb(sioaddr,
2662 IT87_SIO_BEEP_PIN_REG) & 0x3f;
2663 } else if (sio_data->type == it8622) {
2664 int reg;
2665
2666 superio_select(sioaddr, GPIO);
2667
2668 /* Check for pwm4, fan4 */
2669 reg = superio_inb(sioaddr, IT87_SIO_GPIO1_REG);
2670 if (reg & BIT(6))
2671 sio_data->skip_fan |= BIT(3);
2672 if (reg & BIT(5))
2673 sio_data->skip_pwm |= BIT(3);
2674
2675 /* Check for pwm3, fan3, pwm5, fan5 */
2676 reg = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
2677 if (reg & BIT(6))
2678 sio_data->skip_pwm |= BIT(2);
2679 if (reg & BIT(7))
2680 sio_data->skip_fan |= BIT(2);
2681 if (reg & BIT(3))
2682 sio_data->skip_pwm |= BIT(4);
2683 if (reg & BIT(1))
2684 sio_data->skip_fan |= BIT(4);
2685
2686 /* Check for pwm2, fan2 */
2687 reg = superio_inb(sioaddr, IT87_SIO_GPIO5_REG);
2688 if (reg & BIT(1))
2689 sio_data->skip_pwm |= BIT(1);
2690 if (reg & BIT(2))
2691 sio_data->skip_fan |= BIT(1);
2692
2693 /* Check for AVCC */
2694 reg = superio_inb(sioaddr, IT87_SIO_PINX2_REG);
2695 if (!(reg & BIT(0)))
2696 sio_data->skip_in |= BIT(9);
2697
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002698 sio_data->beep_pin = superio_inb(sioaddr,
2699 IT87_SIO_BEEP_PIN_REG) & 0x3f;
Jean Delvare895ff262009-12-09 20:35:47 +01002700 } else {
Jean Delvare87673dd2006-08-28 14:37:19 +02002701 int reg;
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002702 bool uart6;
Jean Delvare87673dd2006-08-28 14:37:19 +02002703
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002704 superio_select(sioaddr, GPIO);
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002705
Guenter Roecka0df9262015-04-05 16:51:36 -07002706 /* Check for fan4, fan5 */
2707 if (has_five_fans(config)) {
2708 reg = superio_inb(sioaddr, IT87_SIO_GPIO2_REG);
2709 switch (sio_data->type) {
2710 case it8718:
2711 if (reg & BIT(5))
2712 sio_data->skip_fan |= BIT(3);
2713 if (reg & BIT(4))
2714 sio_data->skip_fan |= BIT(4);
2715 break;
2716 case it8720:
2717 case it8721:
2718 case it8728:
2719 if (!(reg & BIT(5)))
2720 sio_data->skip_fan |= BIT(3);
2721 if (!(reg & BIT(4)))
2722 sio_data->skip_fan |= BIT(4);
2723 break;
2724 default:
2725 break;
2726 }
2727 }
2728
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002729 reg = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
Guenter Roeck32dd7c402015-02-12 07:40:23 -08002730 if (!sio_data->skip_vid) {
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002731 /* We need at least 4 VID pins */
2732 if (reg & 0x0f) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002733 pr_info("VID is disabled (pins used for GPIO)\n");
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002734 sio_data->skip_vid = 1;
2735 }
Jean Delvare895ff262009-12-09 20:35:47 +01002736 }
2737
Jean Delvare591ec652009-12-09 20:35:48 +01002738 /* Check if fan3 is there or not */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002739 if (reg & BIT(6))
2740 sio_data->skip_pwm |= BIT(2);
2741 if (reg & BIT(7))
2742 sio_data->skip_fan |= BIT(2);
Jean Delvare591ec652009-12-09 20:35:48 +01002743
2744 /* Check if fan2 is there or not */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002745 reg = superio_inb(sioaddr, IT87_SIO_GPIO5_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002746 if (reg & BIT(1))
2747 sio_data->skip_pwm |= BIT(1);
2748 if (reg & BIT(2))
2749 sio_data->skip_fan |= BIT(1);
Jean Delvare591ec652009-12-09 20:35:48 +01002750
Guenter Roeckc9620242015-04-04 09:05:57 -07002751 if ((sio_data->type == it8718 || sio_data->type == it8720) &&
2752 !(sio_data->skip_vid))
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002753 sio_data->vid_value = superio_inb(sioaddr,
2754 IT87_SIO_VID_REG);
Jean Delvare87673dd2006-08-28 14:37:19 +02002755
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002756 reg = superio_inb(sioaddr, IT87_SIO_PINX2_REG);
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002757
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002758 uart6 = sio_data->type == it8782 && (reg & BIT(2));
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002759
Jean Delvare436cad22010-07-09 16:22:48 +02002760 /*
Maciej S. Szmigiero557cbf42017-08-09 12:05:30 +02002761 * The IT8720F has no VIN7 pin, so VCCH5V should always be
Jean Delvare436cad22010-07-09 16:22:48 +02002762 * routed internally to VIN7 with an internal divider.
2763 * Curiously, there still is a configuration bit to control
2764 * this, which means it can be set incorrectly. And even
2765 * more curiously, many boards out there are improperly
2766 * configured, even though the IT8720F datasheet claims
Maciej S. Szmigiero557cbf42017-08-09 12:05:30 +02002767 * that the internal routing of VCCH5V to VIN7 is the default
Jean Delvare436cad22010-07-09 16:22:48 +02002768 * setting. So we force the internal routing in this case.
Guenter Roeck0531d982012-03-02 11:46:44 -08002769 *
2770 * On IT8782F, VIN7 is multiplexed with one of the UART6 pins.
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002771 * If UART6 is enabled, re-route VIN7 to the internal divider
2772 * if that is not already the case.
Jean Delvare436cad22010-07-09 16:22:48 +02002773 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002774 if ((sio_data->type == it8720 || uart6) && !(reg & BIT(1))) {
2775 reg |= BIT(1);
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002776 superio_outb(sioaddr, IT87_SIO_PINX2_REG, reg);
Maciej S. Szmigiero384548e2017-08-09 17:15:46 +02002777 sio_data->need_in7_reroute = true;
Maciej S. Szmigiero557cbf42017-08-09 12:05:30 +02002778 pr_notice("Routing internal VCCH5V to in7\n");
Jean Delvare436cad22010-07-09 16:22:48 +02002779 }
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002780 if (reg & BIT(0))
2781 sio_data->internal |= BIT(0);
2782 if (reg & BIT(1))
2783 sio_data->internal |= BIT(1);
Jean Delvared9b327c2010-03-05 22:17:17 +01002784
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002785 /*
2786 * On IT8782F, UART6 pins overlap with VIN5, VIN6, and VIN7.
2787 * While VIN7 can be routed to the internal voltage divider,
2788 * VIN5 and VIN6 are not available if UART6 is enabled.
Guenter Roeck4573acb2012-03-26 16:17:41 -07002789 *
2790 * Also, temp3 is not available if UART6 is enabled and TEMPIN3
2791 * is the temperature source. Since we can not read the
2792 * temperature source here, skip_temp is preliminary.
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002793 */
Guenter Roeck4573acb2012-03-26 16:17:41 -07002794 if (uart6) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002795 sio_data->skip_in |= BIT(5) | BIT(6);
2796 sio_data->skip_temp |= BIT(2);
Guenter Roeck4573acb2012-03-26 16:17:41 -07002797 }
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002798
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002799 sio_data->beep_pin = superio_inb(sioaddr,
2800 IT87_SIO_BEEP_PIN_REG) & 0x3f;
Jean Delvare87673dd2006-08-28 14:37:19 +02002801 }
Jean Delvared9b327c2010-03-05 22:17:17 +01002802 if (sio_data->beep_pin)
Joe Perchesa8ca1032011-01-12 21:55:10 +01002803 pr_info("Beeping is supported\n");
Jean Delvare87673dd2006-08-28 14:37:19 +02002804
Jean Delvare98dd22c2008-10-09 15:33:58 +02002805 /* Disable specific features based on DMI strings */
2806 board_vendor = dmi_get_system_info(DMI_BOARD_VENDOR);
2807 board_name = dmi_get_system_info(DMI_BOARD_NAME);
2808 if (board_vendor && board_name) {
Guenter Roeckc9620242015-04-04 09:05:57 -07002809 if (strcmp(board_vendor, "nVIDIA") == 0 &&
2810 strcmp(board_name, "FN68PT") == 0) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002811 /*
2812 * On the Shuttle SN68PT, FAN_CTL2 is apparently not
2813 * connected to a fan, but to something else. One user
2814 * has reported instant system power-off when changing
2815 * the PWM2 duty cycle, so we disable it.
2816 * I use the board name string as the trigger in case
2817 * the same board is ever used in other systems.
2818 */
Joe Perchesa8ca1032011-01-12 21:55:10 +01002819 pr_info("Disabling pwm2 due to hardware constraints\n");
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002820 sio_data->skip_pwm = BIT(1);
Jean Delvare98dd22c2008-10-09 15:33:58 +02002821 }
2822 }
2823
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824exit:
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002825 superio_exit(sioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 return err;
2827}
2828
Maciej S. Szmigiero557cbf42017-08-09 12:05:30 +02002829/*
2830 * Some chips seem to have default value 0xff for all limit
2831 * registers. For low voltage limits it makes no sense and triggers
2832 * alarms, so change to 0 instead. For high temperature limits, it
2833 * means -1 degree C, which surprisingly doesn't trigger an alarm,
2834 * but is still confusing, so change to 127 degrees C.
2835 */
2836static void it87_check_limit_regs(struct it87_data *data)
2837{
2838 int i, reg;
2839
2840 for (i = 0; i < NUM_VIN_LIMIT; i++) {
2841 reg = it87_read_value(data, IT87_REG_VIN_MIN(i));
2842 if (reg == 0xff)
2843 it87_write_value(data, IT87_REG_VIN_MIN(i), 0);
2844 }
2845 for (i = 0; i < NUM_TEMP_LIMIT; i++) {
2846 reg = it87_read_value(data, IT87_REG_TEMP_HIGH(i));
2847 if (reg == 0xff)
2848 it87_write_value(data, IT87_REG_TEMP_HIGH(i), 127);
2849 }
2850}
2851
2852/* Check if voltage monitors are reset manually or by some reason */
2853static void it87_check_voltage_monitors_reset(struct it87_data *data)
2854{
2855 int reg;
2856
2857 reg = it87_read_value(data, IT87_REG_VIN_ENABLE);
2858 if ((reg & 0xff) == 0) {
2859 /* Enable all voltage monitors */
2860 it87_write_value(data, IT87_REG_VIN_ENABLE, 0xff);
2861 }
2862}
2863
2864/* Check if tachometers are reset manually or by some reason */
2865static void it87_check_tachometers_reset(struct platform_device *pdev)
2866{
2867 struct it87_sio_data *sio_data = dev_get_platdata(&pdev->dev);
2868 struct it87_data *data = platform_get_drvdata(pdev);
2869 u8 mask, fan_main_ctrl;
2870
2871 mask = 0x70 & ~(sio_data->skip_fan << 4);
2872 fan_main_ctrl = it87_read_value(data, IT87_REG_FAN_MAIN_CTRL);
2873 if ((fan_main_ctrl & mask) == 0) {
2874 /* Enable all fan tachometers */
2875 fan_main_ctrl |= mask;
2876 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
2877 fan_main_ctrl);
2878 }
2879}
2880
2881/* Set tachometers to 16-bit mode if needed */
2882static void it87_check_tachometers_16bit_mode(struct platform_device *pdev)
2883{
2884 struct it87_data *data = platform_get_drvdata(pdev);
2885 int reg;
2886
2887 if (!has_fan16_config(data))
2888 return;
2889
2890 reg = it87_read_value(data, IT87_REG_FAN_16BIT);
2891 if (~reg & 0x07 & data->has_fan) {
2892 dev_dbg(&pdev->dev,
2893 "Setting fan1-3 to 16-bit mode\n");
2894 it87_write_value(data, IT87_REG_FAN_16BIT,
2895 reg | 0x07);
2896 }
2897}
2898
2899static void it87_start_monitoring(struct it87_data *data)
2900{
2901 it87_write_value(data, IT87_REG_CONFIG,
2902 (it87_read_value(data, IT87_REG_CONFIG) & 0x3e)
2903 | (update_vbat ? 0x41 : 0x01));
2904}
2905
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002906/* Called when we have found a new IT87. */
2907static void it87_init_device(struct platform_device *pdev)
2908{
2909 struct it87_sio_data *sio_data = dev_get_platdata(&pdev->dev);
2910 struct it87_data *data = platform_get_drvdata(pdev);
2911 int tmp, i;
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002912
2913 /*
2914 * For each PWM channel:
2915 * - If it is in automatic mode, setting to manual mode should set
2916 * the fan to full speed by default.
2917 * - If it is in manual mode, we need a mapping to temperature
2918 * channels to use when later setting to automatic mode later.
2919 * Use a 1:1 mapping by default (we are clueless.)
2920 * In both cases, the value can (and should) be changed by the user
2921 * prior to switching to a different mode.
2922 * Note that this is no longer needed for the IT8721F and later, as
2923 * these have separate registers for the temperature mapping and the
2924 * manual duty cycle.
2925 */
Guenter Roeck23100482015-04-02 08:23:45 -07002926 for (i = 0; i < NUM_AUTO_PWM; i++) {
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002927 data->pwm_temp_map[i] = i;
2928 data->pwm_duty[i] = 0x7f; /* Full speed */
2929 data->auto_pwm[i][3] = 0x7f; /* Full speed, hard-coded */
2930 }
2931
Maciej S. Szmigiero557cbf42017-08-09 12:05:30 +02002932 it87_check_limit_regs(data);
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002933
2934 /*
2935 * Temperature channels are not forcibly enabled, as they can be
2936 * set to two different sensor types and we can't guess which one
2937 * is correct for a given system. These channels can be enabled at
2938 * run-time through the temp{1-3}_type sysfs accessors if needed.
2939 */
2940
Maciej S. Szmigiero557cbf42017-08-09 12:05:30 +02002941 it87_check_voltage_monitors_reset(data);
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002942
Maciej S. Szmigiero557cbf42017-08-09 12:05:30 +02002943 it87_check_tachometers_reset(pdev);
2944
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002945 data->fan_main_ctrl = it87_read_value(data, IT87_REG_FAN_MAIN_CTRL);
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002946 data->has_fan = (data->fan_main_ctrl >> 4) & 0x07;
2947
Maciej S. Szmigiero557cbf42017-08-09 12:05:30 +02002948 it87_check_tachometers_16bit_mode(pdev);
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002949
2950 /* Check for additional fans */
2951 if (has_five_fans(data)) {
Maciej S. Szmigiero557cbf42017-08-09 12:05:30 +02002952 tmp = it87_read_value(data, IT87_REG_FAN_16BIT);
2953
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002954 if (tmp & BIT(4))
2955 data->has_fan |= BIT(3); /* fan4 enabled */
2956 if (tmp & BIT(5))
2957 data->has_fan |= BIT(4); /* fan5 enabled */
2958 if (has_six_fans(data) && (tmp & BIT(2)))
2959 data->has_fan |= BIT(5); /* fan6 enabled */
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002960 }
2961
2962 /* Fan input pins may be used for alternative functions */
2963 data->has_fan &= ~sio_data->skip_fan;
2964
2965 /* Check if pwm5, pwm6 are enabled */
2966 if (has_six_pwm(data)) {
2967 /* The following code may be IT8620E specific */
2968 tmp = it87_read_value(data, IT87_REG_FAN_DIV);
2969 if ((tmp & 0xc0) == 0xc0)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002970 sio_data->skip_pwm |= BIT(4);
2971 if (!(tmp & BIT(3)))
2972 sio_data->skip_pwm |= BIT(5);
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002973 }
2974
Maciej S. Szmigiero557cbf42017-08-09 12:05:30 +02002975 it87_start_monitoring(data);
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002976}
2977
2978/* Return 1 if and only if the PWM interface is safe to use */
2979static int it87_check_pwm(struct device *dev)
2980{
2981 struct it87_data *data = dev_get_drvdata(dev);
2982 /*
2983 * Some BIOSes fail to correctly configure the IT87 fans. All fans off
2984 * and polarity set to active low is sign that this is the case so we
2985 * disable pwm control to protect the user.
2986 */
2987 int tmp = it87_read_value(data, IT87_REG_FAN_CTL);
2988
2989 if ((tmp & 0x87) == 0) {
2990 if (fix_pwm_polarity) {
2991 /*
2992 * The user asks us to attempt a chip reconfiguration.
2993 * This means switching to active high polarity and
2994 * inverting all fan speed values.
2995 */
2996 int i;
2997 u8 pwm[3];
2998
Guenter Roeck23100482015-04-02 08:23:45 -07002999 for (i = 0; i < ARRAY_SIZE(pwm); i++)
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07003000 pwm[i] = it87_read_value(data,
3001 IT87_REG_PWM[i]);
3002
3003 /*
3004 * If any fan is in automatic pwm mode, the polarity
3005 * might be correct, as suspicious as it seems, so we
3006 * better don't change anything (but still disable the
3007 * PWM interface).
3008 */
3009 if (!((pwm[0] | pwm[1] | pwm[2]) & 0x80)) {
3010 dev_info(dev,
3011 "Reconfiguring PWM to active high polarity\n");
3012 it87_write_value(data, IT87_REG_FAN_CTL,
3013 tmp | 0x87);
3014 for (i = 0; i < 3; i++)
3015 it87_write_value(data,
3016 IT87_REG_PWM[i],
3017 0x7f & ~pwm[i]);
3018 return 1;
3019 }
3020
3021 dev_info(dev,
3022 "PWM configuration is too broken to be fixed\n");
3023 }
3024
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07003025 return 0;
3026 } else if (fix_pwm_polarity) {
3027 dev_info(dev,
3028 "PWM configuration looks sane, won't touch\n");
3029 }
3030
3031 return 1;
3032}
3033
Bill Pemberton6c931ae2012-11-19 13:22:35 -05003034static int it87_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 struct it87_data *data;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003037 struct resource *res;
3038 struct device *dev = &pdev->dev;
Jingoo Hana8b3a3a2013-07-30 17:13:06 +09003039 struct it87_sio_data *sio_data = dev_get_platdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 int enable_pwm_interface;
Guenter Roeck8638d0a2015-03-30 11:13:49 -07003041 struct device *hwmon_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003043 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
Guenter Roeck62a1d052012-03-24 21:54:41 -07003044 if (!devm_request_region(&pdev->dev, res->start, IT87_EC_EXTENT,
3045 DRVNAME)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003046 dev_err(dev, "Failed to request region 0x%lx-0x%lx\n",
3047 (unsigned long)res->start,
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05003048 (unsigned long)(res->start + IT87_EC_EXTENT - 1));
Guenter Roeck62a1d052012-03-24 21:54:41 -07003049 return -EBUSY;
Jean Delvare8e9afcb2006-12-12 18:18:28 +01003050 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051
Guenter Roeck62a1d052012-03-24 21:54:41 -07003052 data = devm_kzalloc(&pdev->dev, sizeof(struct it87_data), GFP_KERNEL);
3053 if (!data)
3054 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003056 data->addr = res->start;
Maciej S. Szmigiero384548e2017-08-09 17:15:46 +02003057 data->sioaddr = sio_data->sioaddr;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003058 data->type = sio_data->type;
Guenter Roeck483db432012-12-19 22:17:02 +01003059 data->features = it87_devices[sio_data->type].features;
Guenter Roeck5d8d2f22012-12-19 22:17:02 +01003060 data->peci_mask = it87_devices[sio_data->type].peci_mask;
Guenter Roeck19529782012-12-19 22:17:02 +01003061 data->old_peci_mask = it87_devices[sio_data->type].old_peci_mask;
Guenter Roeck483db432012-12-19 22:17:02 +01003062 /*
3063 * IT8705F Datasheet 0.4.1, 3h == Version G.
3064 * IT8712F Datasheet 0.9.1, section 8.3.5 indicates 8h == Version J.
3065 * These are the first revisions with 16-bit tachometer support.
3066 */
3067 switch (data->type) {
3068 case it87:
3069 if (sio_data->revision >= 0x03) {
3070 data->features &= ~FEAT_OLD_AUTOPWM;
Guenter Roeck9faf28c2015-02-12 07:11:38 -08003071 data->features |= FEAT_FAN16_CONFIG | FEAT_16BIT_FANS;
Guenter Roeck483db432012-12-19 22:17:02 +01003072 }
3073 break;
3074 case it8712:
3075 if (sio_data->revision >= 0x08) {
3076 data->features &= ~FEAT_OLD_AUTOPWM;
Guenter Roeck9faf28c2015-02-12 07:11:38 -08003077 data->features |= FEAT_FAN16_CONFIG | FEAT_16BIT_FANS |
3078 FEAT_FIVE_FANS;
Guenter Roeck483db432012-12-19 22:17:02 +01003079 }
3080 break;
3081 default:
3082 break;
3083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084
3085 /* Now, we do the remaining detection. */
Guenter Roeckc9620242015-04-04 09:05:57 -07003086 if ((it87_read_value(data, IT87_REG_CONFIG) & 0x80) ||
3087 it87_read_value(data, IT87_REG_CHIPID) != 0x90)
Guenter Roeck62a1d052012-03-24 21:54:41 -07003088 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003090 platform_set_drvdata(pdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091
Ingo Molnar9a61bf62006-01-18 23:19:26 +01003092 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 /* Check PWM configuration */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003095 enable_pwm_interface = it87_check_pwm(dev);
Maciej S. Szmigiero384548e2017-08-09 17:15:46 +02003096 if (!enable_pwm_interface)
3097 dev_info(dev,
3098 "Detected broken BIOS defaults, disabling PWM interface\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099
Jean Delvare44c1bcd2010-10-28 20:31:51 +02003100 /* Starting with IT8721F, we handle scaling of internal voltages */
Jean Delvare16b5dda2012-01-16 22:51:48 +01003101 if (has_12mv_adc(data)) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003102 if (sio_data->internal & BIT(0))
3103 data->in_scaled |= BIT(3); /* in3 is AVCC */
3104 if (sio_data->internal & BIT(1))
3105 data->in_scaled |= BIT(7); /* in7 is VSB */
3106 if (sio_data->internal & BIT(2))
3107 data->in_scaled |= BIT(8); /* in8 is Vbat */
3108 if (sio_data->internal & BIT(3))
3109 data->in_scaled |= BIT(9); /* in9 is AVCC */
Guenter Roeck7bc32d22015-01-17 14:10:24 -08003110 } else if (sio_data->type == it8781 || sio_data->type == it8782 ||
3111 sio_data->type == it8783) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003112 if (sio_data->internal & BIT(0))
3113 data->in_scaled |= BIT(3); /* in3 is VCC5V */
3114 if (sio_data->internal & BIT(1))
3115 data->in_scaled |= BIT(7); /* in7 is VCCH5V */
Jean Delvare44c1bcd2010-10-28 20:31:51 +02003116 }
3117
Guenter Roeck4573acb2012-03-26 16:17:41 -07003118 data->has_temp = 0x07;
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003119 if (sio_data->skip_temp & BIT(2)) {
Guenter Roeckc9620242015-04-04 09:05:57 -07003120 if (sio_data->type == it8782 &&
3121 !(it87_read_value(data, IT87_REG_TEMP_EXTRA) & 0x80))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003122 data->has_temp &= ~BIT(2);
Guenter Roeck4573acb2012-03-26 16:17:41 -07003123 }
3124
Guenter Roeckd3766842013-03-30 15:47:21 -07003125 data->in_internal = sio_data->internal;
Maciej S. Szmigiero384548e2017-08-09 17:15:46 +02003126 data->need_in7_reroute = sio_data->need_in7_reroute;
Guenter Roeck52929712013-03-30 14:00:08 -07003127 data->has_in = 0x3ff & ~sio_data->skip_in;
3128
Guenter Roeckcc18da72015-04-01 10:03:01 -07003129 if (has_six_temp(data)) {
3130 u8 reg = it87_read_value(data, IT87_REG_TEMP456_ENABLE);
3131
Guenter Roeckf838aa22015-04-01 20:09:36 -07003132 /* Check for additional temperature sensors */
Guenter Roeckcc18da72015-04-01 10:03:01 -07003133 if ((reg & 0x03) >= 0x02)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003134 data->has_temp |= BIT(3);
Guenter Roeckcc18da72015-04-01 10:03:01 -07003135 if (((reg >> 2) & 0x03) >= 0x02)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003136 data->has_temp |= BIT(4);
Guenter Roeckcc18da72015-04-01 10:03:01 -07003137 if (((reg >> 4) & 0x03) >= 0x02)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003138 data->has_temp |= BIT(5);
Guenter Roeckf838aa22015-04-01 20:09:36 -07003139
3140 /* Check for additional voltage sensors */
3141 if ((reg & 0x03) == 0x01)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003142 data->has_in |= BIT(10);
Guenter Roeckf838aa22015-04-01 20:09:36 -07003143 if (((reg >> 2) & 0x03) == 0x01)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003144 data->has_in |= BIT(11);
Guenter Roeckf838aa22015-04-01 20:09:36 -07003145 if (((reg >> 4) & 0x03) == 0x01)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003146 data->has_in |= BIT(12);
Guenter Roeckcc18da72015-04-01 10:03:01 -07003147 }
3148
Guenter Roeck52929712013-03-30 14:00:08 -07003149 data->has_beep = !!sio_data->beep_pin;
3150
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 /* Initialize the IT87 chip */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003152 it87_init_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153
Guenter Roeckd3766842013-03-30 15:47:21 -07003154 if (!sio_data->skip_vid) {
3155 data->has_vid = true;
3156 data->vrm = vid_which_vrm();
3157 /* VID reading from Super-I/O config space if available */
3158 data->vid = sio_data->vid_value;
3159 }
3160
Guenter Roeck8638d0a2015-03-30 11:13:49 -07003161 /* Prepare for sysfs hooks */
3162 data->groups[0] = &it87_group;
3163 data->groups[1] = &it87_group_in;
3164 data->groups[2] = &it87_group_temp;
3165 data->groups[3] = &it87_group_fan;
Jean Delvare17d648b2006-08-28 14:23:46 +02003166
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167 if (enable_pwm_interface) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003168 data->has_pwm = BIT(ARRAY_SIZE(IT87_REG_PWM)) - 1;
Guenter Roeck5c391262013-03-30 15:02:12 -07003169 data->has_pwm &= ~sio_data->skip_pwm;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01003170
Guenter Roeck8638d0a2015-03-30 11:13:49 -07003171 data->groups[4] = &it87_group_pwm;
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07003172 if (has_old_autopwm(data) || has_newer_autopwm(data))
Guenter Roeck8638d0a2015-03-30 11:13:49 -07003173 data->groups[5] = &it87_group_auto_pwm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 }
3175
Guenter Roeck8638d0a2015-03-30 11:13:49 -07003176 hwmon_dev = devm_hwmon_device_register_with_groups(dev,
3177 it87_devices[sio_data->type].name,
3178 data, data->groups);
3179 return PTR_ERR_OR_ZERO(hwmon_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180}
3181
Maciej S. Szmigiero384548e2017-08-09 17:15:46 +02003182static void __maybe_unused it87_resume_sio(struct platform_device *pdev)
3183{
3184 struct it87_data *data = dev_get_drvdata(&pdev->dev);
3185 int err;
3186 int reg2c;
3187
3188 if (!data->need_in7_reroute)
3189 return;
3190
3191 err = superio_enter(data->sioaddr);
3192 if (err) {
3193 dev_warn(&pdev->dev,
3194 "Unable to enter Super I/O to reroute in7 (%d)",
3195 err);
3196 return;
3197 }
3198
3199 superio_select(data->sioaddr, GPIO);
3200
3201 reg2c = superio_inb(data->sioaddr, IT87_SIO_PINX2_REG);
3202 if (!(reg2c & BIT(1))) {
3203 dev_dbg(&pdev->dev,
3204 "Routing internal VCCH5V to in7 again");
3205
3206 reg2c |= BIT(1);
3207 superio_outb(data->sioaddr, IT87_SIO_PINX2_REG,
3208 reg2c);
3209 }
3210
3211 superio_exit(data->sioaddr);
3212}
3213
3214static int __maybe_unused it87_resume(struct device *dev)
3215{
3216 struct platform_device *pdev = to_platform_device(dev);
3217 struct it87_data *data = dev_get_drvdata(dev);
3218
3219 it87_resume_sio(pdev);
3220
3221 mutex_lock(&data->update_lock);
3222
3223 it87_check_pwm(dev);
3224 it87_check_limit_regs(data);
3225 it87_check_voltage_monitors_reset(data);
3226 it87_check_tachometers_reset(pdev);
3227 it87_check_tachometers_16bit_mode(pdev);
3228
3229 it87_start_monitoring(data);
3230
3231 /* force update */
Paul Fertser952a11c2021-09-24 22:52:02 +03003232 data->valid = false;
Maciej S. Szmigiero384548e2017-08-09 17:15:46 +02003233
3234 mutex_unlock(&data->update_lock);
3235
3236 it87_update_device(dev);
3237
3238 return 0;
3239}
3240
3241static SIMPLE_DEV_PM_OPS(it87_dev_pm_ops, NULL, it87_resume);
3242
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07003243static struct platform_driver it87_driver = {
3244 .driver = {
3245 .name = DRVNAME,
Maciej S. Szmigiero384548e2017-08-09 17:15:46 +02003246 .pm = &it87_dev_pm_ops,
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07003247 },
3248 .probe = it87_probe,
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07003249};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250
Guenter Roecke84bd952015-03-28 08:24:29 -07003251static int __init it87_device_add(int index, unsigned short address,
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003252 const struct it87_sio_data *sio_data)
3253{
Guenter Roeck8e50e3c2015-03-28 07:49:14 -07003254 struct platform_device *pdev;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003255 struct resource res = {
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05003256 .start = address + IT87_EC_OFFSET,
3257 .end = address + IT87_EC_OFFSET + IT87_EC_EXTENT - 1,
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003258 .name = DRVNAME,
3259 .flags = IORESOURCE_IO,
3260 };
3261 int err;
3262
Jean Delvareb9acb642009-01-07 16:37:35 +01003263 err = acpi_check_resource_conflict(&res);
3264 if (err)
Guenter Roeck5cae84a52015-03-28 07:44:59 -07003265 return err;
Jean Delvareb9acb642009-01-07 16:37:35 +01003266
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003267 pdev = platform_device_alloc(DRVNAME, address);
Guenter Roeck5cae84a52015-03-28 07:44:59 -07003268 if (!pdev)
3269 return -ENOMEM;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003270
3271 err = platform_device_add_resources(pdev, &res, 1);
3272 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01003273 pr_err("Device resource addition failed (%d)\n", err);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003274 goto exit_device_put;
3275 }
3276
3277 err = platform_device_add_data(pdev, sio_data,
3278 sizeof(struct it87_sio_data));
3279 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01003280 pr_err("Platform data allocation failed\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003281 goto exit_device_put;
3282 }
3283
3284 err = platform_device_add(pdev);
3285 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01003286 pr_err("Device addition failed (%d)\n", err);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003287 goto exit_device_put;
3288 }
3289
Guenter Roecke84bd952015-03-28 08:24:29 -07003290 it87_pdev[index] = pdev;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003291 return 0;
3292
3293exit_device_put:
3294 platform_device_put(pdev);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003295 return err;
3296}
3297
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298static int __init sm_it87_init(void)
3299{
Guenter Roecke84bd952015-03-28 08:24:29 -07003300 int sioaddr[2] = { REG_2E, REG_4E };
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003301 struct it87_sio_data sio_data;
Guenter Roeck83583782017-03-12 06:18:58 -07003302 unsigned short isa_address[2];
Guenter Roecke84bd952015-03-28 08:24:29 -07003303 bool found = false;
3304 int i, err;
Jean Delvarefde09502005-07-19 23:51:07 +02003305
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003306 err = platform_driver_register(&it87_driver);
3307 if (err)
3308 return err;
3309
Guenter Roecke84bd952015-03-28 08:24:29 -07003310 for (i = 0; i < ARRAY_SIZE(sioaddr); i++) {
3311 memset(&sio_data, 0, sizeof(struct it87_sio_data));
Guenter Roeck83583782017-03-12 06:18:58 -07003312 isa_address[i] = 0;
3313 err = it87_find(sioaddr[i], &isa_address[i], &sio_data);
3314 if (err || isa_address[i] == 0)
Guenter Roecke84bd952015-03-28 08:24:29 -07003315 continue;
Guenter Roeck83583782017-03-12 06:18:58 -07003316 /*
3317 * Don't register second chip if its ISA address matches
3318 * the first chip's ISA address.
3319 */
3320 if (i && isa_address[i] == isa_address[0])
3321 break;
Guenter Roecke84bd952015-03-28 08:24:29 -07003322
Guenter Roeck83583782017-03-12 06:18:58 -07003323 err = it87_device_add(i, isa_address[i], &sio_data);
Guenter Roecke84bd952015-03-28 08:24:29 -07003324 if (err)
3325 goto exit_dev_unregister;
Guenter Roeck83583782017-03-12 06:18:58 -07003326
Guenter Roecke84bd952015-03-28 08:24:29 -07003327 found = true;
Guenter Roeck83583782017-03-12 06:18:58 -07003328
3329 /*
3330 * IT8705F may respond on both SIO addresses.
3331 * Stop probing after finding one.
3332 */
3333 if (sio_data.type == it87)
3334 break;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003335 }
3336
Guenter Roecke84bd952015-03-28 08:24:29 -07003337 if (!found) {
3338 err = -ENODEV;
3339 goto exit_unregister;
3340 }
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003341 return 0;
Guenter Roecke84bd952015-03-28 08:24:29 -07003342
3343exit_dev_unregister:
3344 /* NULL check handled by platform_device_unregister */
3345 platform_device_unregister(it87_pdev[0]);
3346exit_unregister:
3347 platform_driver_unregister(&it87_driver);
3348 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349}
3350
3351static void __exit sm_it87_exit(void)
3352{
Guenter Roecke84bd952015-03-28 08:24:29 -07003353 /* NULL check handled by platform_device_unregister */
3354 platform_device_unregister(it87_pdev[1]);
3355 platform_device_unregister(it87_pdev[0]);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003356 platform_driver_unregister(&it87_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357}
3358
Jean Delvare7c81c60f2014-01-29 20:40:08 +01003359MODULE_AUTHOR("Chris Gauthron, Jean Delvare <jdelvare@suse.de>");
Jean Delvare44c1bcd2010-10-28 20:31:51 +02003360MODULE_DESCRIPTION("IT8705F/IT871xF/IT872xF hardware monitoring driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361module_param(update_vbat, bool, 0);
3362MODULE_PARM_DESC(update_vbat, "Update vbat if set else return powerup value");
3363module_param(fix_pwm_polarity, bool, 0);
Jean Delvare5f2dc792010-03-05 22:17:18 +01003364MODULE_PARM_DESC(fix_pwm_polarity,
3365 "Force PWM polarity to active high (DANGEROUS)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366MODULE_LICENSE("GPL");
3367
3368module_init(sm_it87_init);
3369module_exit(sm_it87_exit);