blob: 991e0fce781eeaba5d4f502ca25c1676902ec515 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jean Delvare5f2dc792010-03-05 22:17:18 +01002 * it87.c - Part of lm_sensors, Linux kernel modules for hardware
3 * monitoring.
4 *
5 * The IT8705F is an LPC-based Super I/O part that contains UARTs, a
6 * parallel port, an IR port, a MIDI port, a floppy controller, etc., in
7 * addition to an Environment Controller (Enhanced Hardware Monitor and
8 * Fan Controller)
9 *
10 * This driver supports only the Environment Controller in the IT8705F and
11 * similar parts. The other devices are supported by different drivers.
12 *
Rudolf Marekc145d5c2014-01-29 20:40:08 +010013 * Supports: IT8603E Super I/O chip w/LPC interface
Guenter Roeck3ba9d972015-02-13 20:13:20 -080014 * IT8620E Super I/O chip w/LPC interface
Rudolf Marek574e9bd2014-04-04 18:01:35 +020015 * IT8623E Super I/O chip w/LPC interface
Guenter Roeck71a9c232016-01-18 00:35:58 -080016 * IT8628E Super I/O chip w/LPC interface
Rudolf Marekc145d5c2014-01-29 20:40:08 +010017 * IT8705F Super I/O chip w/LPC interface
Jean Delvare5f2dc792010-03-05 22:17:18 +010018 * IT8712F Super I/O chip w/LPC interface
19 * IT8716F Super I/O chip w/LPC interface
20 * IT8718F Super I/O chip w/LPC interface
21 * IT8720F Super I/O chip w/LPC interface
Jean Delvare44c1bcd2010-10-28 20:31:51 +020022 * IT8721F Super I/O chip w/LPC interface
Jean Delvare5f2dc792010-03-05 22:17:18 +010023 * IT8726F Super I/O chip w/LPC interface
Jean Delvare16b5dda2012-01-16 22:51:48 +010024 * IT8728F Super I/O chip w/LPC interface
Justin Maggardead80802015-08-05 12:53:08 -070025 * IT8732F Super I/O chip w/LPC interface
Jean Delvare44c1bcd2010-10-28 20:31:51 +020026 * IT8758E Super I/O chip w/LPC interface
Guenter Roeckb0636702012-09-07 17:34:41 -060027 * IT8771E Super I/O chip w/LPC interface
28 * IT8772E Super I/O chip w/LPC interface
Guenter Roeck7bc32d22015-01-17 14:10:24 -080029 * IT8781F Super I/O chip w/LPC interface
Guenter Roeck0531d982012-03-02 11:46:44 -080030 * IT8782F Super I/O chip w/LPC interface
31 * IT8783E/F Super I/O chip w/LPC interface
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +010032 * IT8786E Super I/O chip w/LPC interface
Guenter Roeck4ee07152015-03-25 23:26:28 -070033 * IT8790E Super I/O chip w/LPC interface
Jean Delvare5f2dc792010-03-05 22:17:18 +010034 * Sis950 A clone of the IT8705F
35 *
36 * Copyright (C) 2001 Chris Gauthron
Jean Delvare7c81c602014-01-29 20:40:08 +010037 * Copyright (C) 2005-2010 Jean Delvare <jdelvare@suse.de>
Jean Delvare5f2dc792010-03-05 22:17:18 +010038 *
39 * This program is free software; you can redistribute it and/or modify
40 * it under the terms of the GNU General Public License as published by
41 * the Free Software Foundation; either version 2 of the License, or
42 * (at your option) any later version.
43 *
44 * This program is distributed in the hope that it will be useful,
45 * but WITHOUT ANY WARRANTY; without even the implied warranty of
46 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
47 * GNU General Public License for more details.
Jean Delvare5f2dc792010-03-05 22:17:18 +010048 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Joe Perchesa8ca1032011-01-12 21:55:10 +010050#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
51
Guenter Roeck48b2ae72015-04-02 08:06:12 -070052#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <linux/module.h>
54#include <linux/init.h>
55#include <linux/slab.h>
56#include <linux/jiffies.h>
corentin.labbeb74f3fd2007-06-13 20:27:36 +020057#include <linux/platform_device.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040058#include <linux/hwmon.h>
Jean Delvare303760b2005-07-31 21:52:01 +020059#include <linux/hwmon-sysfs.h>
60#include <linux/hwmon-vid.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040061#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010062#include <linux/mutex.h>
Jean Delvare87808be2006-09-24 21:17:13 +020063#include <linux/sysfs.h>
Jean Delvare98dd22c2008-10-09 15:33:58 +020064#include <linux/string.h>
65#include <linux/dmi.h>
Jean Delvareb9acb642009-01-07 16:37:35 +010066#include <linux/acpi.h>
H Hartley Sweeten6055fae2009-09-15 17:18:13 +020067#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
corentin.labbeb74f3fd2007-06-13 20:27:36 +020069#define DRVNAME "it87"
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Justin Maggardead80802015-08-05 12:53:08 -070071enum chips { it87, it8712, it8716, it8718, it8720, it8721, it8728, it8732,
72 it8771, it8772, it8781, it8782, it8783, it8786, it8790, it8603,
Guenter Roeck71a9c232016-01-18 00:35:58 -080073 it8620, it8628 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Jean Delvare67b671b2007-12-06 23:13:42 +010075static unsigned short force_id;
76module_param(force_id, ushort, 0);
77MODULE_PARM_DESC(force_id, "Override the detected device ID");
78
Guenter Roecke84bd952015-03-28 08:24:29 -070079static struct platform_device *it87_pdev[2];
corentin.labbeb74f3fd2007-06-13 20:27:36 +020080
Guenter Roeck3c2e3512015-03-28 08:03:10 -070081#define REG_2E 0x2e /* The register to read/write */
Guenter Roecke84bd952015-03-28 08:24:29 -070082#define REG_4E 0x4e /* Secondary register to read/write */
Guenter Roeck3c2e3512015-03-28 08:03:10 -070083
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#define DEV 0x07 /* Register: Logical device select */
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#define PME 0x04 /* The device with the fan registers in it */
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +010086
87/* The device with the IT8718F/IT8720F VID value in it */
88#define GPIO 0x07
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#define DEVID 0x20 /* Register: Device ID */
91#define DEVREV 0x22 /* Register: Device Revision */
92
Guenter Roeck3c2e3512015-03-28 08:03:10 -070093static inline int superio_inb(int ioreg, int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
Guenter Roeck3c2e3512015-03-28 08:03:10 -070095 outb(reg, ioreg);
96 return inb(ioreg + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
98
Guenter Roeck3c2e3512015-03-28 08:03:10 -070099static inline void superio_outb(int ioreg, int reg, int val)
Jean Delvare436cad22010-07-09 16:22:48 +0200100{
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700101 outb(reg, ioreg);
102 outb(val, ioreg + 1);
Jean Delvare436cad22010-07-09 16:22:48 +0200103}
104
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700105static int superio_inw(int ioreg, int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
107 int val;
Guenter Roeckc9620242015-04-04 09:05:57 -0700108
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700109 outb(reg++, ioreg);
110 val = inb(ioreg + 1) << 8;
111 outb(reg, ioreg);
112 val |= inb(ioreg + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 return val;
114}
115
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700116static inline void superio_select(int ioreg, int ldn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700118 outb(DEV, ioreg);
119 outb(ldn, ioreg + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700122static inline int superio_enter(int ioreg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200124 /*
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700125 * Try to reserve ioreg and ioreg + 1 for exclusive access.
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200126 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700127 if (!request_muxed_region(ioreg, 2, DRVNAME))
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200128 return -EBUSY;
129
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700130 outb(0x87, ioreg);
131 outb(0x01, ioreg);
132 outb(0x55, ioreg);
Guenter Roecke84bd952015-03-28 08:24:29 -0700133 outb(ioreg == REG_4E ? 0xaa : 0x55, ioreg);
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200134 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700137static inline void superio_exit(int ioreg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
Guenter Roeck3c2e3512015-03-28 08:03:10 -0700139 outb(0x02, ioreg);
140 outb(0x02, ioreg + 1);
141 release_region(ioreg, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
Jean Delvare87673dd2006-08-28 14:37:19 +0200144/* Logical device 4 registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145#define IT8712F_DEVID 0x8712
146#define IT8705F_DEVID 0x8705
Jean Delvare17d648b2006-08-28 14:23:46 +0200147#define IT8716F_DEVID 0x8716
Jean Delvare87673dd2006-08-28 14:37:19 +0200148#define IT8718F_DEVID 0x8718
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +0100149#define IT8720F_DEVID 0x8720
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200150#define IT8721F_DEVID 0x8721
Rudolf Marek08a8f6e2007-06-09 10:11:16 -0400151#define IT8726F_DEVID 0x8726
Jean Delvare16b5dda2012-01-16 22:51:48 +0100152#define IT8728F_DEVID 0x8728
Justin Maggardead80802015-08-05 12:53:08 -0700153#define IT8732F_DEVID 0x8732
Guenter Roeckb0636702012-09-07 17:34:41 -0600154#define IT8771E_DEVID 0x8771
155#define IT8772E_DEVID 0x8772
Guenter Roeck7bc32d22015-01-17 14:10:24 -0800156#define IT8781F_DEVID 0x8781
Guenter Roeck0531d982012-03-02 11:46:44 -0800157#define IT8782F_DEVID 0x8782
158#define IT8783E_DEVID 0x8783
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +0100159#define IT8786E_DEVID 0x8786
Guenter Roeck4ee07152015-03-25 23:26:28 -0700160#define IT8790E_DEVID 0x8790
Rudolf Marek7183ae82014-04-04 18:01:35 +0200161#define IT8603E_DEVID 0x8603
Guenter Roeck3ba9d972015-02-13 20:13:20 -0800162#define IT8620E_DEVID 0x8620
Rudolf Marek574e9bd2014-04-04 18:01:35 +0200163#define IT8623E_DEVID 0x8623
Guenter Roeck71a9c232016-01-18 00:35:58 -0800164#define IT8628E_DEVID 0x8628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165#define IT87_ACT_REG 0x30
166#define IT87_BASE_REG 0x60
167
Jean Delvare87673dd2006-08-28 14:37:19 +0200168/* Logical device 7 registers (IT8712F and later) */
Guenter Roeck0531d982012-03-02 11:46:44 -0800169#define IT87_SIO_GPIO1_REG 0x25
Guenter Roeck3ba9d972015-02-13 20:13:20 -0800170#define IT87_SIO_GPIO2_REG 0x26
Jean Delvare895ff262009-12-09 20:35:47 +0100171#define IT87_SIO_GPIO3_REG 0x27
Guenter Roeck36c4d982015-03-26 18:18:19 -0700172#define IT87_SIO_GPIO4_REG 0x28
Jean Delvare591ec652009-12-09 20:35:48 +0100173#define IT87_SIO_GPIO5_REG 0x29
Guenter Roeck0531d982012-03-02 11:46:44 -0800174#define IT87_SIO_PINX1_REG 0x2a /* Pin selection */
Jean Delvare87673dd2006-08-28 14:37:19 +0200175#define IT87_SIO_PINX2_REG 0x2c /* Pin selection */
Guenter Roeck0531d982012-03-02 11:46:44 -0800176#define IT87_SIO_SPI_REG 0xef /* SPI function pin select */
Jean Delvare87673dd2006-08-28 14:37:19 +0200177#define IT87_SIO_VID_REG 0xfc /* VID value */
Jean Delvared9b327c2010-03-05 22:17:17 +0100178#define IT87_SIO_BEEP_PIN_REG 0xf6 /* Beep pin mapping */
Jean Delvare87673dd2006-08-28 14:37:19 +0200179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180/* Update battery voltage after every reading if true */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030181static bool update_vbat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183/* Not all BIOSes properly configure the PWM registers */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030184static bool fix_pwm_polarity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186/* Many IT87 constants specified below */
187
188/* Length of ISA address segment */
189#define IT87_EXTENT 8
190
Bjorn Helgaas87b4b662008-01-22 07:21:03 -0500191/* Length of ISA address segment for Environmental Controller */
192#define IT87_EC_EXTENT 2
193
194/* Offset of EC registers from ISA base address */
195#define IT87_EC_OFFSET 5
196
197/* Where are the ISA address/data registers relative to the EC base address */
198#define IT87_ADDR_REG_OFFSET 0
199#define IT87_DATA_REG_OFFSET 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201/*----- The IT87 registers -----*/
202
203#define IT87_REG_CONFIG 0x00
204
205#define IT87_REG_ALARM1 0x01
206#define IT87_REG_ALARM2 0x02
207#define IT87_REG_ALARM3 0x03
208
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800209/*
210 * The IT8718F and IT8720F have the VID value in a different register, in
211 * Super-I/O configuration space.
212 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213#define IT87_REG_VID 0x0a
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800214/*
215 * The IT8705F and IT8712F earlier than revision 0x08 use register 0x0b
216 * for fan divisors. Later IT8712F revisions must use 16-bit tachometer
217 * mode.
218 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219#define IT87_REG_FAN_DIV 0x0b
Jean Delvare17d648b2006-08-28 14:23:46 +0200220#define IT87_REG_FAN_16BIT 0x0c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Guenter Roeckf838aa22015-04-01 20:09:36 -0700222/*
223 * Monitors:
224 * - up to 13 voltage (0 to 7, battery, avcc, 10 to 12)
225 * - up to 6 temp (1 to 6)
226 * - up to 6 fan (1 to 6)
227 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Guenter Roeckfa3f70d2015-03-25 23:15:32 -0700229static const u8 IT87_REG_FAN[] = { 0x0d, 0x0e, 0x0f, 0x80, 0x82, 0x4c };
230static const u8 IT87_REG_FAN_MIN[] = { 0x10, 0x11, 0x12, 0x84, 0x86, 0x4e };
231static const u8 IT87_REG_FANX[] = { 0x18, 0x19, 0x1a, 0x81, 0x83, 0x4d };
232static const u8 IT87_REG_FANX_MIN[] = { 0x1b, 0x1c, 0x1d, 0x85, 0x87, 0x4f };
233static const u8 IT87_REG_TEMP_OFFSET[] = { 0x56, 0x57, 0x59 };
Guenter Roeck161d8982012-12-19 22:17:01 +0100234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235#define IT87_REG_FAN_MAIN_CTRL 0x13
236#define IT87_REG_FAN_CTL 0x14
Guenter Roeck36c4d982015-03-26 18:18:19 -0700237static const u8 IT87_REG_PWM[] = { 0x15, 0x16, 0x17, 0x7f, 0xa7, 0xaf };
238static const u8 IT87_REG_PWM_DUTY[] = { 0x63, 0x6b, 0x73, 0x7b, 0xa3, 0xab };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Guenter Roeck559313c2015-04-01 10:15:38 -0700240static const u8 IT87_REG_VIN[] = { 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26,
Guenter Roeckf838aa22015-04-01 20:09:36 -0700241 0x27, 0x28, 0x2f, 0x2c, 0x2d, 0x2e };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Guenter Roeck559313c2015-04-01 10:15:38 -0700243#define IT87_REG_TEMP(nr) (0x29 + (nr))
Guenter Roeck73055402015-03-26 09:16:32 -0700244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245#define IT87_REG_VIN_MAX(nr) (0x30 + (nr) * 2)
246#define IT87_REG_VIN_MIN(nr) (0x31 + (nr) * 2)
247#define IT87_REG_TEMP_HIGH(nr) (0x40 + (nr) * 2)
248#define IT87_REG_TEMP_LOW(nr) (0x41 + (nr) * 2)
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250#define IT87_REG_VIN_ENABLE 0x50
251#define IT87_REG_TEMP_ENABLE 0x51
Guenter Roeck4573acb2012-03-26 16:17:41 -0700252#define IT87_REG_TEMP_EXTRA 0x55
Jean Delvared9b327c2010-03-05 22:17:17 +0100253#define IT87_REG_BEEP_ENABLE 0x5c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255#define IT87_REG_CHIPID 0x58
256
Guenter Roeck2cbb9c32015-04-05 11:53:29 -0700257static const u8 IT87_REG_AUTO_BASE[] = { 0x60, 0x68, 0x70, 0x78, 0xa0, 0xa8 };
258
259#define IT87_REG_AUTO_TEMP(nr, i) (IT87_REG_AUTO_BASE[nr] + (i))
260#define IT87_REG_AUTO_PWM(nr, i) (IT87_REG_AUTO_BASE[nr] + 5 + (i))
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100261
Guenter Roeckcc18da72015-04-01 10:03:01 -0700262#define IT87_REG_TEMP456_ENABLE 0x77
263
Guenter Roeck23100482015-04-02 08:23:45 -0700264#define NUM_VIN ARRAY_SIZE(IT87_REG_VIN)
265#define NUM_VIN_LIMIT 8
266#define NUM_TEMP 6
267#define NUM_TEMP_OFFSET ARRAY_SIZE(IT87_REG_TEMP_OFFSET)
268#define NUM_TEMP_LIMIT 3
269#define NUM_FAN ARRAY_SIZE(IT87_REG_FAN)
270#define NUM_FAN_DIV 3
271#define NUM_PWM ARRAY_SIZE(IT87_REG_PWM)
272#define NUM_AUTO_PWM ARRAY_SIZE(IT87_REG_PWM)
273
Guenter Roeck483db432012-12-19 22:17:02 +0100274struct it87_devices {
275 const char *name;
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700276 const char * const suffix;
Guenter Roeckcc18da72015-04-01 10:03:01 -0700277 u32 features;
Guenter Roeck19529782012-12-19 22:17:02 +0100278 u8 peci_mask;
279 u8 old_peci_mask;
Guenter Roeck483db432012-12-19 22:17:02 +0100280};
281
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700282#define FEAT_12MV_ADC BIT(0)
283#define FEAT_NEWER_AUTOPWM BIT(1)
284#define FEAT_OLD_AUTOPWM BIT(2)
285#define FEAT_16BIT_FANS BIT(3)
286#define FEAT_TEMP_OFFSET BIT(4)
287#define FEAT_TEMP_PECI BIT(5)
288#define FEAT_TEMP_OLD_PECI BIT(6)
289#define FEAT_FAN16_CONFIG BIT(7) /* Need to enable 16-bit fans */
290#define FEAT_FIVE_FANS BIT(8) /* Supports five fans */
291#define FEAT_VID BIT(9) /* Set if chip supports VID */
292#define FEAT_IN7_INTERNAL BIT(10) /* Set if in7 is internal */
293#define FEAT_SIX_FANS BIT(11) /* Supports six fans */
294#define FEAT_10_9MV_ADC BIT(12)
295#define FEAT_AVCC3 BIT(13) /* Chip supports in9/AVCC3 */
296#define FEAT_SIX_PWM BIT(14) /* Chip supports 6 pwm chn */
297#define FEAT_PWM_FREQ2 BIT(15) /* Separate pwm freq 2 */
298#define FEAT_SIX_TEMP BIT(16) /* Up to 6 temp sensors */
Guenter Roeck483db432012-12-19 22:17:02 +0100299
300static const struct it87_devices it87_devices[] = {
301 [it87] = {
302 .name = "it87",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700303 .suffix = "F",
Guenter Roeck483db432012-12-19 22:17:02 +0100304 .features = FEAT_OLD_AUTOPWM, /* may need to overwrite */
305 },
306 [it8712] = {
307 .name = "it8712",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700308 .suffix = "F",
Guenter Roeck32dd7c42015-02-12 07:40:23 -0800309 .features = FEAT_OLD_AUTOPWM | FEAT_VID,
310 /* may need to overwrite */
Guenter Roeck483db432012-12-19 22:17:02 +0100311 },
312 [it8716] = {
313 .name = "it8716",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700314 .suffix = "F",
Guenter Roeck32dd7c42015-02-12 07:40:23 -0800315 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET | FEAT_VID
Guenter Roeck60878bc2015-03-26 19:57:42 -0700316 | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS | FEAT_PWM_FREQ2,
Guenter Roeck483db432012-12-19 22:17:02 +0100317 },
318 [it8718] = {
319 .name = "it8718",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700320 .suffix = "F",
Guenter Roeck32dd7c42015-02-12 07:40:23 -0800321 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET | FEAT_VID
Guenter Roeck60878bc2015-03-26 19:57:42 -0700322 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS
323 | FEAT_PWM_FREQ2,
Guenter Roeck19529782012-12-19 22:17:02 +0100324 .old_peci_mask = 0x4,
Guenter Roeck483db432012-12-19 22:17:02 +0100325 },
326 [it8720] = {
327 .name = "it8720",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700328 .suffix = "F",
Guenter Roeck32dd7c42015-02-12 07:40:23 -0800329 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET | FEAT_VID
Guenter Roeck60878bc2015-03-26 19:57:42 -0700330 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS
331 | FEAT_PWM_FREQ2,
Guenter Roeck19529782012-12-19 22:17:02 +0100332 .old_peci_mask = 0x4,
Guenter Roeck483db432012-12-19 22:17:02 +0100333 },
334 [it8721] = {
335 .name = "it8721",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700336 .suffix = "F",
Guenter Roeck483db432012-12-19 22:17:02 +0100337 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800338 | FEAT_TEMP_OFFSET | FEAT_TEMP_OLD_PECI | FEAT_TEMP_PECI
Guenter Roeck60878bc2015-03-26 19:57:42 -0700339 | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS | FEAT_IN7_INTERNAL
340 | FEAT_PWM_FREQ2,
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100341 .peci_mask = 0x05,
Guenter Roeck19529782012-12-19 22:17:02 +0100342 .old_peci_mask = 0x02, /* Actually reports PCH */
Guenter Roeck483db432012-12-19 22:17:02 +0100343 },
344 [it8728] = {
345 .name = "it8728",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700346 .suffix = "F",
Guenter Roeck483db432012-12-19 22:17:02 +0100347 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck7f5726c2015-03-26 08:49:18 -0700348 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_FIVE_FANS
Guenter Roeck60878bc2015-03-26 19:57:42 -0700349 | FEAT_IN7_INTERNAL | FEAT_PWM_FREQ2,
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100350 .peci_mask = 0x07,
Guenter Roeck483db432012-12-19 22:17:02 +0100351 },
Justin Maggardead80802015-08-05 12:53:08 -0700352 [it8732] = {
353 .name = "it8732",
354 .suffix = "F",
355 .features = FEAT_NEWER_AUTOPWM | FEAT_16BIT_FANS
356 | FEAT_TEMP_OFFSET | FEAT_TEMP_OLD_PECI | FEAT_TEMP_PECI
357 | FEAT_10_9MV_ADC | FEAT_IN7_INTERNAL,
358 .peci_mask = 0x07,
359 .old_peci_mask = 0x02, /* Actually reports PCH */
360 },
Guenter Roeckb0636702012-09-07 17:34:41 -0600361 [it8771] = {
362 .name = "it8771",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700363 .suffix = "E",
Guenter Roeckb0636702012-09-07 17:34:41 -0600364 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck60878bc2015-03-26 19:57:42 -0700365 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL
366 | FEAT_PWM_FREQ2,
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800367 /* PECI: guesswork */
368 /* 12mV ADC (OHM) */
369 /* 16 bit fans (OHM) */
370 /* three fans, always 16 bit (guesswork) */
Guenter Roeckb0636702012-09-07 17:34:41 -0600371 .peci_mask = 0x07,
372 },
373 [it8772] = {
374 .name = "it8772",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700375 .suffix = "E",
Guenter Roeckb0636702012-09-07 17:34:41 -0600376 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck60878bc2015-03-26 19:57:42 -0700377 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL
378 | FEAT_PWM_FREQ2,
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800379 /* PECI (coreboot) */
380 /* 12mV ADC (HWSensors4, OHM) */
381 /* 16 bit fans (HWSensors4, OHM) */
382 /* three fans, always 16 bit (datasheet) */
Guenter Roeckb0636702012-09-07 17:34:41 -0600383 .peci_mask = 0x07,
384 },
Guenter Roeck7bc32d22015-01-17 14:10:24 -0800385 [it8781] = {
386 .name = "it8781",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700387 .suffix = "F",
Guenter Roeck7bc32d22015-01-17 14:10:24 -0800388 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET
Guenter Roeck60878bc2015-03-26 19:57:42 -0700389 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_PWM_FREQ2,
Guenter Roeck7bc32d22015-01-17 14:10:24 -0800390 .old_peci_mask = 0x4,
391 },
Guenter Roeck483db432012-12-19 22:17:02 +0100392 [it8782] = {
393 .name = "it8782",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700394 .suffix = "F",
Guenter Roeck19529782012-12-19 22:17:02 +0100395 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET
Guenter Roeck60878bc2015-03-26 19:57:42 -0700396 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_PWM_FREQ2,
Guenter Roeck19529782012-12-19 22:17:02 +0100397 .old_peci_mask = 0x4,
Guenter Roeck483db432012-12-19 22:17:02 +0100398 },
399 [it8783] = {
400 .name = "it8783",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700401 .suffix = "E/F",
Guenter Roeck19529782012-12-19 22:17:02 +0100402 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET
Guenter Roeck60878bc2015-03-26 19:57:42 -0700403 | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_PWM_FREQ2,
Guenter Roeck19529782012-12-19 22:17:02 +0100404 .old_peci_mask = 0x4,
Guenter Roeck483db432012-12-19 22:17:02 +0100405 },
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +0100406 [it8786] = {
407 .name = "it8786",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700408 .suffix = "E",
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +0100409 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck60878bc2015-03-26 19:57:42 -0700410 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL
411 | FEAT_PWM_FREQ2,
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +0100412 .peci_mask = 0x07,
413 },
Guenter Roeck4ee07152015-03-25 23:26:28 -0700414 [it8790] = {
415 .name = "it8790",
416 .suffix = "E",
417 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck60878bc2015-03-26 19:57:42 -0700418 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL
419 | FEAT_PWM_FREQ2,
Guenter Roeck4ee07152015-03-25 23:26:28 -0700420 .peci_mask = 0x07,
421 },
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100422 [it8603] = {
423 .name = "it8603",
Guenter Roeckfaf392f2015-03-26 08:36:18 -0700424 .suffix = "E",
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100425 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeck73055402015-03-26 09:16:32 -0700426 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL
Guenter Roeck60878bc2015-03-26 19:57:42 -0700427 | FEAT_AVCC3 | FEAT_PWM_FREQ2,
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100428 .peci_mask = 0x07,
429 },
Guenter Roeck3ba9d972015-02-13 20:13:20 -0800430 [it8620] = {
431 .name = "it8620",
432 .suffix = "E",
433 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
Guenter Roeckfa3f70d2015-03-25 23:15:32 -0700434 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_SIX_FANS
Guenter Roeckcc18da72015-04-01 10:03:01 -0700435 | FEAT_IN7_INTERNAL | FEAT_SIX_PWM | FEAT_PWM_FREQ2
436 | FEAT_SIX_TEMP,
Guenter Roeck3ba9d972015-02-13 20:13:20 -0800437 .peci_mask = 0x07,
438 },
Guenter Roeck71a9c232016-01-18 00:35:58 -0800439 [it8628] = {
440 .name = "it8628",
441 .suffix = "E",
442 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
443 | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_SIX_FANS
444 | FEAT_IN7_INTERNAL | FEAT_SIX_PWM | FEAT_PWM_FREQ2
445 | FEAT_SIX_TEMP,
446 .peci_mask = 0x07,
447 },
Guenter Roeck483db432012-12-19 22:17:02 +0100448};
449
450#define has_16bit_fans(data) ((data)->features & FEAT_16BIT_FANS)
451#define has_12mv_adc(data) ((data)->features & FEAT_12MV_ADC)
Justin Maggardead80802015-08-05 12:53:08 -0700452#define has_10_9mv_adc(data) ((data)->features & FEAT_10_9MV_ADC)
Guenter Roeck483db432012-12-19 22:17:02 +0100453#define has_newer_autopwm(data) ((data)->features & FEAT_NEWER_AUTOPWM)
454#define has_old_autopwm(data) ((data)->features & FEAT_OLD_AUTOPWM)
455#define has_temp_offset(data) ((data)->features & FEAT_TEMP_OFFSET)
Guenter Roeck5d8d2f22012-12-19 22:17:02 +0100456#define has_temp_peci(data, nr) (((data)->features & FEAT_TEMP_PECI) && \
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700457 ((data)->peci_mask & BIT(nr)))
Guenter Roeck19529782012-12-19 22:17:02 +0100458#define has_temp_old_peci(data, nr) \
459 (((data)->features & FEAT_TEMP_OLD_PECI) && \
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700460 ((data)->old_peci_mask & BIT(nr)))
Guenter Roeck9faf28c2015-02-12 07:11:38 -0800461#define has_fan16_config(data) ((data)->features & FEAT_FAN16_CONFIG)
Guenter Roeckfa3f70d2015-03-25 23:15:32 -0700462#define has_five_fans(data) ((data)->features & (FEAT_FIVE_FANS | \
463 FEAT_SIX_FANS))
Guenter Roeck32dd7c42015-02-12 07:40:23 -0800464#define has_vid(data) ((data)->features & FEAT_VID)
Guenter Roeck7f5726c2015-03-26 08:49:18 -0700465#define has_in7_internal(data) ((data)->features & FEAT_IN7_INTERNAL)
Guenter Roeckfa3f70d2015-03-25 23:15:32 -0700466#define has_six_fans(data) ((data)->features & FEAT_SIX_FANS)
Guenter Roeck73055402015-03-26 09:16:32 -0700467#define has_avcc3(data) ((data)->features & FEAT_AVCC3)
Guenter Roeck36c4d982015-03-26 18:18:19 -0700468#define has_six_pwm(data) ((data)->features & FEAT_SIX_PWM)
Guenter Roeck60878bc2015-03-26 19:57:42 -0700469#define has_pwm_freq2(data) ((data)->features & FEAT_PWM_FREQ2)
Guenter Roeckcc18da72015-04-01 10:03:01 -0700470#define has_six_temp(data) ((data)->features & FEAT_SIX_TEMP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200472struct it87_sio_data {
473 enum chips type;
474 /* Values read from Super-I/O config space */
Andrew Paprocki04751692008-08-06 22:41:06 +0200475 u8 revision;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200476 u8 vid_value;
Jean Delvared9b327c2010-03-05 22:17:17 +0100477 u8 beep_pin;
Jean Delvare738e5e02010-08-14 21:08:50 +0200478 u8 internal; /* Internal sensors can be labeled */
Jean Delvare591ec652009-12-09 20:35:48 +0100479 /* Features skipped based on config or DMI */
Guenter Roeck9172b5d2012-03-24 21:49:54 -0700480 u16 skip_in;
Jean Delvare895ff262009-12-09 20:35:47 +0100481 u8 skip_vid;
Jean Delvare591ec652009-12-09 20:35:48 +0100482 u8 skip_fan;
Jean Delvare98dd22c2008-10-09 15:33:58 +0200483 u8 skip_pwm;
Guenter Roeck4573acb2012-03-26 16:17:41 -0700484 u8 skip_temp;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200485};
486
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800487/*
488 * For each registered chip, we need to keep some data in memory.
489 * The structure is dynamically allocated.
490 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491struct it87_data {
Guenter Roeck8638d0a2015-03-30 11:13:49 -0700492 const struct attribute_group *groups[7];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 enum chips type;
Guenter Roeckaa8b1872016-08-09 22:09:19 -0700494 u32 features;
Guenter Roeck19529782012-12-19 22:17:02 +0100495 u8 peci_mask;
496 u8 old_peci_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200498 unsigned short addr;
499 const char *name;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100500 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 char valid; /* !=0 if following fields are valid */
502 unsigned long last_updated; /* In jiffies */
503
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200504 u16 in_scaled; /* Internal voltage sensors are scaled */
Guenter Roeckd3766842013-03-30 15:47:21 -0700505 u16 in_internal; /* Bitfield, internal sensors (for labels) */
Guenter Roeck52929712013-03-30 14:00:08 -0700506 u16 has_in; /* Bitfield, voltage sensors enabled */
Guenter Roeck23100482015-04-02 08:23:45 -0700507 u8 in[NUM_VIN][3]; /* [nr][0]=in, [1]=min, [2]=max */
Jean Delvare9060f8b2006-08-28 14:24:17 +0200508 u8 has_fan; /* Bitfield, fans enabled */
Guenter Roeck23100482015-04-02 08:23:45 -0700509 u16 fan[NUM_FAN][2]; /* Register values, [nr][0]=fan, [1]=min */
Guenter Roeck4573acb2012-03-26 16:17:41 -0700510 u8 has_temp; /* Bitfield, temp sensors enabled */
Guenter Roeck23100482015-04-02 08:23:45 -0700511 s8 temp[NUM_TEMP][4]; /* [nr][0]=temp, [1]=min, [2]=max, [3]=offset */
Guenter Roeck19529782012-12-19 22:17:02 +0100512 u8 sensor; /* Register value (IT87_REG_TEMP_ENABLE) */
513 u8 extra; /* Register value (IT87_REG_TEMP_EXTRA) */
Guenter Roeck23100482015-04-02 08:23:45 -0700514 u8 fan_div[NUM_FAN_DIV];/* Register encoding, shifted right */
Guenter Roeckd3766842013-03-30 15:47:21 -0700515 bool has_vid; /* True if VID supported */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 u8 vid; /* Register encoding, combined */
Jean Delvarea7be58a2005-12-18 16:40:14 +0100517 u8 vrm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 u32 alarms; /* Register encoding, combined */
Guenter Roeck52929712013-03-30 14:00:08 -0700519 bool has_beep; /* true if beep supported */
Jean Delvared9b327c2010-03-05 22:17:17 +0100520 u8 beeps; /* Register encoding */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 u8 fan_main_ctrl; /* Register value */
Jean Delvaref8d0c192007-02-14 21:15:02 +0100522 u8 fan_ctl; /* Register value */
Jean Delvareb99883d2010-03-05 22:17:15 +0100523
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800524 /*
525 * The following 3 arrays correspond to the same registers up to
Jean Delvare6229cdb2010-12-08 16:27:22 +0100526 * the IT8720F. The meaning of bits 6-0 depends on the value of bit
527 * 7, and we want to preserve settings on mode changes, so we have
528 * to track all values separately.
529 * Starting with the IT8721F, the manual PWM duty cycles are stored
530 * in separate registers (8-bit values), so the separate tracking
531 * is no longer needed, but it is still done to keep the driver
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800532 * simple.
533 */
Guenter Roeck5c391262013-03-30 15:02:12 -0700534 u8 has_pwm; /* Bitfield, pwm control enabled */
Guenter Roeck23100482015-04-02 08:23:45 -0700535 u8 pwm_ctrl[NUM_PWM]; /* Register value */
536 u8 pwm_duty[NUM_PWM]; /* Manual PWM value set by user */
537 u8 pwm_temp_map[NUM_PWM];/* PWM to temp. chan. mapping (bits 1-0) */
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100538
539 /* Automatic fan speed control registers */
Guenter Roeck23100482015-04-02 08:23:45 -0700540 u8 auto_pwm[NUM_AUTO_PWM][4]; /* [nr][3] is hard-coded */
541 s8 auto_temp[NUM_AUTO_PWM][5]; /* [nr][0] is point1_temp_hyst */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542};
543
Guenter Roeck0531d982012-03-02 11:46:44 -0800544static int adc_lsb(const struct it87_data *data, int nr)
545{
Justin Maggardead80802015-08-05 12:53:08 -0700546 int lsb;
547
548 if (has_12mv_adc(data))
549 lsb = 120;
550 else if (has_10_9mv_adc(data))
551 lsb = 109;
552 else
553 lsb = 160;
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700554 if (data->in_scaled & BIT(nr))
Guenter Roeck0531d982012-03-02 11:46:44 -0800555 lsb <<= 1;
556 return lsb;
557}
558
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200559static u8 in_to_reg(const struct it87_data *data, int nr, long val)
560{
Justin Maggardead80802015-08-05 12:53:08 -0700561 val = DIV_ROUND_CLOSEST(val * 10, adc_lsb(data, nr));
Guenter Roeck2a844c12013-01-09 08:09:34 -0800562 return clamp_val(val, 0, 255);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200563}
564
565static int in_from_reg(const struct it87_data *data, int nr, int val)
566{
Justin Maggardead80802015-08-05 12:53:08 -0700567 return DIV_ROUND_CLOSEST(val * adc_lsb(data, nr), 10);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200568}
Jean Delvare0df6454d2010-10-28 20:31:51 +0200569
570static inline u8 FAN_TO_REG(long rpm, int div)
571{
572 if (rpm == 0)
573 return 255;
Guenter Roeck2a844c12013-01-09 08:09:34 -0800574 rpm = clamp_val(rpm, 1, 1000000);
575 return clamp_val((1350000 + rpm * div / 2) / (rpm * div), 1, 254);
Jean Delvare0df6454d2010-10-28 20:31:51 +0200576}
577
578static inline u16 FAN16_TO_REG(long rpm)
579{
580 if (rpm == 0)
581 return 0xffff;
Guenter Roeck2a844c12013-01-09 08:09:34 -0800582 return clamp_val((1350000 + rpm) / (rpm * 2), 1, 0xfffe);
Jean Delvare0df6454d2010-10-28 20:31:51 +0200583}
584
585#define FAN_FROM_REG(val, div) ((val) == 0 ? -1 : (val) == 255 ? 0 : \
586 1350000 / ((val) * (div)))
587/* The divider is fixed to 2 in 16-bit mode */
588#define FAN16_FROM_REG(val) ((val) == 0 ? -1 : (val) == 0xffff ? 0 : \
589 1350000 / ((val) * 2))
590
Guenter Roeck2a844c12013-01-09 08:09:34 -0800591#define TEMP_TO_REG(val) (clamp_val(((val) < 0 ? (((val) - 500) / 1000) : \
592 ((val) + 500) / 1000), -128, 127))
Jean Delvare0df6454d2010-10-28 20:31:51 +0200593#define TEMP_FROM_REG(val) ((val) * 1000)
594
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200595static u8 pwm_to_reg(const struct it87_data *data, long val)
596{
Jean Delvare16b5dda2012-01-16 22:51:48 +0100597 if (has_newer_autopwm(data))
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200598 return val;
599 else
600 return val >> 1;
601}
602
603static int pwm_from_reg(const struct it87_data *data, u8 reg)
604{
Jean Delvare16b5dda2012-01-16 22:51:48 +0100605 if (has_newer_autopwm(data))
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200606 return reg;
607 else
608 return (reg & 0x7f) << 1;
609}
610
Jean Delvare0df6454d2010-10-28 20:31:51 +0200611static int DIV_TO_REG(int val)
612{
613 int answer = 0;
Guenter Roeckc9620242015-04-04 09:05:57 -0700614
Jean Delvare0df6454d2010-10-28 20:31:51 +0200615 while (answer < 7 && (val >>= 1))
616 answer++;
617 return answer;
618}
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700619
620#define DIV_FROM_REG(val) BIT(val)
Jean Delvare0df6454d2010-10-28 20:31:51 +0200621
Guenter Roeckf56c9c02015-03-26 20:01:24 -0700622/*
623 * PWM base frequencies. The frequency has to be divided by either 128 or 256,
624 * depending on the chip type, to calculate the actual PWM frequency.
625 *
626 * Some of the chip datasheets suggest a base frequency of 51 kHz instead
627 * of 750 kHz for the slowest base frequency, resulting in a PWM frequency
628 * of 200 Hz. Sometimes both PWM frequency select registers are affected,
629 * sometimes just one. It is unknown if this is a datasheet error or real,
630 * so this is ignored for now.
631 */
Jean Delvare0df6454d2010-10-28 20:31:51 +0200632static const unsigned int pwm_freq[8] = {
Guenter Roeckf56c9c02015-03-26 20:01:24 -0700633 48000000,
634 24000000,
635 12000000,
636 8000000,
637 6000000,
638 3000000,
639 1500000,
640 750000,
Jean Delvare0df6454d2010-10-28 20:31:51 +0200641};
642
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700643/*
644 * Must be called with data->update_lock held, except during initialization.
645 * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
646 * would slow down the IT87 access and should not be necessary.
647 */
648static int it87_read_value(struct it87_data *data, u8 reg)
649{
650 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
651 return inb_p(data->addr + IT87_DATA_REG_OFFSET);
652}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700654/*
655 * Must be called with data->update_lock held, except during initialization.
656 * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
657 * would slow down the IT87 access and should not be necessary.
658 */
659static void it87_write_value(struct it87_data *data, u8 reg, u8 value)
660{
661 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
662 outb_p(value, data->addr + IT87_DATA_REG_OFFSET);
663}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700665static void it87_update_pwm_ctrl(struct it87_data *data, int nr)
666{
667 data->pwm_ctrl[nr] = it87_read_value(data, IT87_REG_PWM[nr]);
668 if (has_newer_autopwm(data)) {
Guenter Roeck0624d862015-04-06 21:04:18 -0700669 data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03;
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700670 data->pwm_duty[nr] = it87_read_value(data,
671 IT87_REG_PWM_DUTY[nr]);
672 } else {
673 if (data->pwm_ctrl[nr] & 0x80) /* Automatic mode */
674 data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03;
675 else /* Manual mode */
676 data->pwm_duty[nr] = data->pwm_ctrl[nr] & 0x7f;
677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700679 if (has_old_autopwm(data)) {
680 int i;
681
682 for (i = 0; i < 5 ; i++)
683 data->auto_temp[nr][i] = it87_read_value(data,
684 IT87_REG_AUTO_TEMP(nr, i));
685 for (i = 0; i < 3 ; i++)
686 data->auto_pwm[nr][i] = it87_read_value(data,
687 IT87_REG_AUTO_PWM(nr, i));
Guenter Roeck2cbb9c32015-04-05 11:53:29 -0700688 } else if (has_newer_autopwm(data)) {
689 int i;
690
691 /*
692 * 0: temperature hysteresis (base + 5)
693 * 1: fan off temperature (base + 0)
694 * 2: fan start temperature (base + 1)
695 * 3: fan max temperature (base + 2)
696 */
697 data->auto_temp[nr][0] =
698 it87_read_value(data, IT87_REG_AUTO_TEMP(nr, 5));
699
700 for (i = 0; i < 3 ; i++)
701 data->auto_temp[nr][i + 1] =
702 it87_read_value(data,
703 IT87_REG_AUTO_TEMP(nr, i));
704 /*
705 * 0: start pwm value (base + 3)
706 * 1: pwm slope (base + 4, 1/8th pwm)
707 */
708 data->auto_pwm[nr][0] =
709 it87_read_value(data, IT87_REG_AUTO_TEMP(nr, 3));
710 data->auto_pwm[nr][1] =
711 it87_read_value(data, IT87_REG_AUTO_TEMP(nr, 4));
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700712 }
713}
714
715static struct it87_data *it87_update_device(struct device *dev)
716{
717 struct it87_data *data = dev_get_drvdata(dev);
718 int i;
719
720 mutex_lock(&data->update_lock);
721
Guenter Roeckc9620242015-04-04 09:05:57 -0700722 if (time_after(jiffies, data->last_updated + HZ + HZ / 2) ||
723 !data->valid) {
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700724 if (update_vbat) {
725 /*
726 * Cleared after each update, so reenable. Value
727 * returned by this read will be previous value
728 */
729 it87_write_value(data, IT87_REG_CONFIG,
730 it87_read_value(data, IT87_REG_CONFIG) | 0x40);
731 }
Guenter Roeck23100482015-04-02 08:23:45 -0700732 for (i = 0; i < NUM_VIN; i++) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700733 if (!(data->has_in & BIT(i)))
Guenter Roeck559313c2015-04-01 10:15:38 -0700734 continue;
735
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700736 data->in[i][0] =
Guenter Roeck559313c2015-04-01 10:15:38 -0700737 it87_read_value(data, IT87_REG_VIN[i]);
738
739 /* VBAT and AVCC don't have limit registers */
Guenter Roeck23100482015-04-02 08:23:45 -0700740 if (i >= NUM_VIN_LIMIT)
Guenter Roeck559313c2015-04-01 10:15:38 -0700741 continue;
742
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700743 data->in[i][1] =
744 it87_read_value(data, IT87_REG_VIN_MIN(i));
745 data->in[i][2] =
746 it87_read_value(data, IT87_REG_VIN_MAX(i));
747 }
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700748
Guenter Roeck23100482015-04-02 08:23:45 -0700749 for (i = 0; i < NUM_FAN; i++) {
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700750 /* Skip disabled fans */
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700751 if (!(data->has_fan & BIT(i)))
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700752 continue;
753
754 data->fan[i][1] =
755 it87_read_value(data, IT87_REG_FAN_MIN[i]);
756 data->fan[i][0] = it87_read_value(data,
757 IT87_REG_FAN[i]);
758 /* Add high byte if in 16-bit mode */
759 if (has_16bit_fans(data)) {
760 data->fan[i][0] |= it87_read_value(data,
761 IT87_REG_FANX[i]) << 8;
762 data->fan[i][1] |= it87_read_value(data,
763 IT87_REG_FANX_MIN[i]) << 8;
764 }
765 }
Guenter Roeck23100482015-04-02 08:23:45 -0700766 for (i = 0; i < NUM_TEMP; i++) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -0700767 if (!(data->has_temp & BIT(i)))
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700768 continue;
769 data->temp[i][0] =
770 it87_read_value(data, IT87_REG_TEMP(i));
Guenter Roeckcc18da72015-04-01 10:03:01 -0700771
Guenter Roeck23100482015-04-02 08:23:45 -0700772 if (has_temp_offset(data) && i < NUM_TEMP_OFFSET)
773 data->temp[i][3] =
774 it87_read_value(data,
775 IT87_REG_TEMP_OFFSET[i]);
776
777 if (i >= NUM_TEMP_LIMIT)
Guenter Roeckcc18da72015-04-01 10:03:01 -0700778 continue;
779
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700780 data->temp[i][1] =
781 it87_read_value(data, IT87_REG_TEMP_LOW(i));
782 data->temp[i][2] =
783 it87_read_value(data, IT87_REG_TEMP_HIGH(i));
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700784 }
785
786 /* Newer chips don't have clock dividers */
787 if ((data->has_fan & 0x07) && !has_16bit_fans(data)) {
788 i = it87_read_value(data, IT87_REG_FAN_DIV);
789 data->fan_div[0] = i & 0x07;
790 data->fan_div[1] = (i >> 3) & 0x07;
791 data->fan_div[2] = (i & 0x40) ? 3 : 1;
792 }
793
794 data->alarms =
795 it87_read_value(data, IT87_REG_ALARM1) |
796 (it87_read_value(data, IT87_REG_ALARM2) << 8) |
797 (it87_read_value(data, IT87_REG_ALARM3) << 16);
798 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
799
800 data->fan_main_ctrl = it87_read_value(data,
801 IT87_REG_FAN_MAIN_CTRL);
802 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL);
Guenter Roeck0624d862015-04-06 21:04:18 -0700803 for (i = 0; i < NUM_PWM; i++) {
804 if (!(data->has_pwm & BIT(i)))
805 continue;
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700806 it87_update_pwm_ctrl(data, i);
Guenter Roeck0624d862015-04-06 21:04:18 -0700807 }
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -0700808
809 data->sensor = it87_read_value(data, IT87_REG_TEMP_ENABLE);
810 data->extra = it87_read_value(data, IT87_REG_TEMP_EXTRA);
811 /*
812 * The IT8705F does not have VID capability.
813 * The IT8718F and later don't use IT87_REG_VID for the
814 * same purpose.
815 */
816 if (data->type == it8712 || data->type == it8716) {
817 data->vid = it87_read_value(data, IT87_REG_VID);
818 /*
819 * The older IT8712F revisions had only 5 VID pins,
820 * but we assume it is always safe to read 6 bits.
821 */
822 data->vid &= 0x3f;
823 }
824 data->last_updated = jiffies;
825 data->valid = 1;
826 }
827
828 mutex_unlock(&data->update_lock);
829
830 return data;
831}
Jean Delvarefde09502005-07-19 23:51:07 +0200832
Jean Delvare20ad93d2005-06-05 11:53:25 +0200833static ssize_t show_in(struct device *dev, struct device_attribute *attr,
Guenter Roeck929c6a52012-12-19 22:17:00 +0100834 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
Guenter Roeck929c6a52012-12-19 22:17:00 +0100836 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -0700838 int index = sattr->index;
839 int nr = sattr->nr;
840
Guenter Roeck929c6a52012-12-19 22:17:00 +0100841 return sprintf(buf, "%d\n", in_from_reg(data, nr, data->in[nr][index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842}
843
Guenter Roeck929c6a52012-12-19 22:17:00 +0100844static ssize_t set_in(struct device *dev, struct device_attribute *attr,
845 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
Guenter Roeck929c6a52012-12-19 22:17:00 +0100847 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200848 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -0700849 int index = sattr->index;
850 int nr = sattr->nr;
Jean Delvaref5f64502010-03-05 22:17:19 +0100851 unsigned long val;
852
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100853 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100854 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100856 mutex_lock(&data->update_lock);
Guenter Roeck929c6a52012-12-19 22:17:00 +0100857 data->in[nr][index] = in_to_reg(data, nr, val);
858 it87_write_value(data,
859 index == 1 ? IT87_REG_VIN_MIN(nr)
860 : IT87_REG_VIN_MAX(nr),
861 data->in[nr][index]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100862 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 return count;
864}
865
Guenter Roeck929c6a52012-12-19 22:17:00 +0100866static SENSOR_DEVICE_ATTR_2(in0_input, S_IRUGO, show_in, NULL, 0, 0);
867static SENSOR_DEVICE_ATTR_2(in0_min, S_IRUGO | S_IWUSR, show_in, set_in,
868 0, 1);
869static SENSOR_DEVICE_ATTR_2(in0_max, S_IRUGO | S_IWUSR, show_in, set_in,
870 0, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Guenter Roeck929c6a52012-12-19 22:17:00 +0100872static SENSOR_DEVICE_ATTR_2(in1_input, S_IRUGO, show_in, NULL, 1, 0);
873static SENSOR_DEVICE_ATTR_2(in1_min, S_IRUGO | S_IWUSR, show_in, set_in,
874 1, 1);
875static SENSOR_DEVICE_ATTR_2(in1_max, S_IRUGO | S_IWUSR, show_in, set_in,
876 1, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Guenter Roeck929c6a52012-12-19 22:17:00 +0100878static SENSOR_DEVICE_ATTR_2(in2_input, S_IRUGO, show_in, NULL, 2, 0);
879static SENSOR_DEVICE_ATTR_2(in2_min, S_IRUGO | S_IWUSR, show_in, set_in,
880 2, 1);
881static SENSOR_DEVICE_ATTR_2(in2_max, S_IRUGO | S_IWUSR, show_in, set_in,
882 2, 2);
883
884static SENSOR_DEVICE_ATTR_2(in3_input, S_IRUGO, show_in, NULL, 3, 0);
885static SENSOR_DEVICE_ATTR_2(in3_min, S_IRUGO | S_IWUSR, show_in, set_in,
886 3, 1);
887static SENSOR_DEVICE_ATTR_2(in3_max, S_IRUGO | S_IWUSR, show_in, set_in,
888 3, 2);
889
890static SENSOR_DEVICE_ATTR_2(in4_input, S_IRUGO, show_in, NULL, 4, 0);
891static SENSOR_DEVICE_ATTR_2(in4_min, S_IRUGO | S_IWUSR, show_in, set_in,
892 4, 1);
893static SENSOR_DEVICE_ATTR_2(in4_max, S_IRUGO | S_IWUSR, show_in, set_in,
894 4, 2);
895
896static SENSOR_DEVICE_ATTR_2(in5_input, S_IRUGO, show_in, NULL, 5, 0);
897static SENSOR_DEVICE_ATTR_2(in5_min, S_IRUGO | S_IWUSR, show_in, set_in,
898 5, 1);
899static SENSOR_DEVICE_ATTR_2(in5_max, S_IRUGO | S_IWUSR, show_in, set_in,
900 5, 2);
901
902static SENSOR_DEVICE_ATTR_2(in6_input, S_IRUGO, show_in, NULL, 6, 0);
903static SENSOR_DEVICE_ATTR_2(in6_min, S_IRUGO | S_IWUSR, show_in, set_in,
904 6, 1);
905static SENSOR_DEVICE_ATTR_2(in6_max, S_IRUGO | S_IWUSR, show_in, set_in,
906 6, 2);
907
908static SENSOR_DEVICE_ATTR_2(in7_input, S_IRUGO, show_in, NULL, 7, 0);
909static SENSOR_DEVICE_ATTR_2(in7_min, S_IRUGO | S_IWUSR, show_in, set_in,
910 7, 1);
911static SENSOR_DEVICE_ATTR_2(in7_max, S_IRUGO | S_IWUSR, show_in, set_in,
912 7, 2);
913
914static SENSOR_DEVICE_ATTR_2(in8_input, S_IRUGO, show_in, NULL, 8, 0);
Rudolf Marekc145d5c2014-01-29 20:40:08 +0100915static SENSOR_DEVICE_ATTR_2(in9_input, S_IRUGO, show_in, NULL, 9, 0);
Guenter Roeckf838aa22015-04-01 20:09:36 -0700916static SENSOR_DEVICE_ATTR_2(in10_input, S_IRUGO, show_in, NULL, 10, 0);
917static SENSOR_DEVICE_ATTR_2(in11_input, S_IRUGO, show_in, NULL, 11, 0);
918static SENSOR_DEVICE_ATTR_2(in12_input, S_IRUGO, show_in, NULL, 12, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
Guenter Roeckcc18da72015-04-01 10:03:01 -0700920/* Up to 6 temperatures */
Jean Delvare20ad93d2005-06-05 11:53:25 +0200921static ssize_t show_temp(struct device *dev, struct device_attribute *attr,
Guenter Roeck60ca3852012-12-19 22:17:00 +0100922 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
Guenter Roeck60ca3852012-12-19 22:17:00 +0100924 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
925 int nr = sattr->nr;
926 int index = sattr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +0200928
Guenter Roeck60ca3852012-12-19 22:17:00 +0100929 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[nr][index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200931
Guenter Roeck60ca3852012-12-19 22:17:00 +0100932static ssize_t set_temp(struct device *dev, struct device_attribute *attr,
933 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
Guenter Roeck60ca3852012-12-19 22:17:00 +0100935 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
936 int nr = sattr->nr;
937 int index = sattr->index;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200938 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100939 long val;
Guenter Roeck161d8982012-12-19 22:17:01 +0100940 u8 reg, regval;
Jean Delvaref5f64502010-03-05 22:17:19 +0100941
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100942 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100943 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100945 mutex_lock(&data->update_lock);
Guenter Roeck161d8982012-12-19 22:17:01 +0100946
947 switch (index) {
948 default:
949 case 1:
950 reg = IT87_REG_TEMP_LOW(nr);
951 break;
952 case 2:
953 reg = IT87_REG_TEMP_HIGH(nr);
954 break;
955 case 3:
956 regval = it87_read_value(data, IT87_REG_BEEP_ENABLE);
957 if (!(regval & 0x80)) {
958 regval |= 0x80;
959 it87_write_value(data, IT87_REG_BEEP_ENABLE, regval);
960 }
961 data->valid = 0;
962 reg = IT87_REG_TEMP_OFFSET[nr];
963 break;
964 }
965
Guenter Roeck60ca3852012-12-19 22:17:00 +0100966 data->temp[nr][index] = TEMP_TO_REG(val);
Guenter Roeck161d8982012-12-19 22:17:01 +0100967 it87_write_value(data, reg, data->temp[nr][index]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100968 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 return count;
970}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200971
Guenter Roeck60ca3852012-12-19 22:17:00 +0100972static SENSOR_DEVICE_ATTR_2(temp1_input, S_IRUGO, show_temp, NULL, 0, 0);
973static SENSOR_DEVICE_ATTR_2(temp1_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
974 0, 1);
975static SENSOR_DEVICE_ATTR_2(temp1_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
976 0, 2);
Guenter Roeck161d8982012-12-19 22:17:01 +0100977static SENSOR_DEVICE_ATTR_2(temp1_offset, S_IRUGO | S_IWUSR, show_temp,
978 set_temp, 0, 3);
Guenter Roeck60ca3852012-12-19 22:17:00 +0100979static SENSOR_DEVICE_ATTR_2(temp2_input, S_IRUGO, show_temp, NULL, 1, 0);
980static SENSOR_DEVICE_ATTR_2(temp2_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
981 1, 1);
982static SENSOR_DEVICE_ATTR_2(temp2_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
983 1, 2);
Guenter Roeck161d8982012-12-19 22:17:01 +0100984static SENSOR_DEVICE_ATTR_2(temp2_offset, S_IRUGO | S_IWUSR, show_temp,
985 set_temp, 1, 3);
Guenter Roeck60ca3852012-12-19 22:17:00 +0100986static SENSOR_DEVICE_ATTR_2(temp3_input, S_IRUGO, show_temp, NULL, 2, 0);
987static SENSOR_DEVICE_ATTR_2(temp3_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
988 2, 1);
989static SENSOR_DEVICE_ATTR_2(temp3_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
990 2, 2);
Guenter Roeck161d8982012-12-19 22:17:01 +0100991static SENSOR_DEVICE_ATTR_2(temp3_offset, S_IRUGO | S_IWUSR, show_temp,
992 set_temp, 2, 3);
Guenter Roeckcc18da72015-04-01 10:03:01 -0700993static SENSOR_DEVICE_ATTR_2(temp4_input, S_IRUGO, show_temp, NULL, 3, 0);
994static SENSOR_DEVICE_ATTR_2(temp5_input, S_IRUGO, show_temp, NULL, 4, 0);
995static SENSOR_DEVICE_ATTR_2(temp6_input, S_IRUGO, show_temp, NULL, 5, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Guenter Roeck2cece012012-12-19 22:17:01 +0100997static ssize_t show_temp_type(struct device *dev, struct device_attribute *attr,
998 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001000 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1001 int nr = sensor_attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 struct it87_data *data = it87_update_device(dev);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001003 u8 reg = data->sensor; /* In case value is updated while used */
Guenter Roeck19529782012-12-19 22:17:02 +01001004 u8 extra = data->extra;
Jean Delvare5f2dc792010-03-05 22:17:18 +01001005
Guenter Roeckc9620242015-04-04 09:05:57 -07001006 if ((has_temp_peci(data, nr) && (reg >> 6 == nr + 1)) ||
1007 (has_temp_old_peci(data, nr) && (extra & 0x80)))
Guenter Roeck5d8d2f22012-12-19 22:17:02 +01001008 return sprintf(buf, "6\n"); /* Intel PECI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 if (reg & (1 << nr))
1010 return sprintf(buf, "3\n"); /* thermal diode */
1011 if (reg & (8 << nr))
Jean Delvare4ed10772008-10-17 17:51:16 +02001012 return sprintf(buf, "4\n"); /* thermistor */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 return sprintf(buf, "0\n"); /* disabled */
1014}
Guenter Roeck2cece012012-12-19 22:17:01 +01001015
1016static ssize_t set_temp_type(struct device *dev, struct device_attribute *attr,
1017 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001019 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1020 int nr = sensor_attr->index;
1021
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001022 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001023 long val;
Guenter Roeck19529782012-12-19 22:17:02 +01001024 u8 reg, extra;
Jean Delvaref5f64502010-03-05 22:17:19 +01001025
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001026 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001027 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Jean Delvare8acf07c2010-04-14 16:14:09 +02001029 reg = it87_read_value(data, IT87_REG_TEMP_ENABLE);
1030 reg &= ~(1 << nr);
1031 reg &= ~(8 << nr);
Guenter Roeck5d8d2f22012-12-19 22:17:02 +01001032 if (has_temp_peci(data, nr) && (reg >> 6 == nr + 1 || val == 6))
1033 reg &= 0x3f;
Guenter Roeck19529782012-12-19 22:17:02 +01001034 extra = it87_read_value(data, IT87_REG_TEMP_EXTRA);
1035 if (has_temp_old_peci(data, nr) && ((extra & 0x80) || val == 6))
1036 extra &= 0x7f;
Jean Delvare4ed10772008-10-17 17:51:16 +02001037 if (val == 2) { /* backwards compatibility */
Guenter Roeck1d9bcf62012-12-19 22:17:01 +01001038 dev_warn(dev,
1039 "Sensor type 2 is deprecated, please use 4 instead\n");
Jean Delvare4ed10772008-10-17 17:51:16 +02001040 val = 4;
1041 }
Guenter Roeck5d8d2f22012-12-19 22:17:02 +01001042 /* 3 = thermal diode; 4 = thermistor; 6 = Intel PECI; 0 = disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 if (val == 3)
Jean Delvare8acf07c2010-04-14 16:14:09 +02001044 reg |= 1 << nr;
Jean Delvare4ed10772008-10-17 17:51:16 +02001045 else if (val == 4)
Jean Delvare8acf07c2010-04-14 16:14:09 +02001046 reg |= 8 << nr;
Guenter Roeck5d8d2f22012-12-19 22:17:02 +01001047 else if (has_temp_peci(data, nr) && val == 6)
1048 reg |= (nr + 1) << 6;
Guenter Roeck19529782012-12-19 22:17:02 +01001049 else if (has_temp_old_peci(data, nr) && val == 6)
1050 extra |= 0x80;
Jean Delvare8acf07c2010-04-14 16:14:09 +02001051 else if (val != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 return -EINVAL;
Jean Delvare8acf07c2010-04-14 16:14:09 +02001053
1054 mutex_lock(&data->update_lock);
1055 data->sensor = reg;
Guenter Roeck19529782012-12-19 22:17:02 +01001056 data->extra = extra;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001057 it87_write_value(data, IT87_REG_TEMP_ENABLE, data->sensor);
Guenter Roeck19529782012-12-19 22:17:02 +01001058 if (has_temp_old_peci(data, nr))
1059 it87_write_value(data, IT87_REG_TEMP_EXTRA, data->extra);
Jean Delvare2b3d1d82010-04-14 16:14:10 +02001060 data->valid = 0; /* Force cache refresh */
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001061 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 return count;
1063}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Guenter Roeck2cece012012-12-19 22:17:01 +01001065static SENSOR_DEVICE_ATTR(temp1_type, S_IRUGO | S_IWUSR, show_temp_type,
1066 set_temp_type, 0);
1067static SENSOR_DEVICE_ATTR(temp2_type, S_IRUGO | S_IWUSR, show_temp_type,
1068 set_temp_type, 1);
1069static SENSOR_DEVICE_ATTR(temp3_type, S_IRUGO | S_IWUSR, show_temp_type,
1070 set_temp_type, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001072/* 6 Fans */
Jean Delvareb99883d2010-03-05 22:17:15 +01001073
1074static int pwm_mode(const struct it87_data *data, int nr)
1075{
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001076 if (data->type != it8603 && nr < 3 && !(data->fan_main_ctrl & BIT(nr)))
1077 return 0; /* Full speed */
1078 if (data->pwm_ctrl[nr] & 0x80)
1079 return 2; /* Automatic mode */
1080 if ((data->type == it8603 || nr >= 3) &&
1081 data->pwm_duty[nr] == pwm_to_reg(data, 0xff))
1082 return 0; /* Full speed */
Jean Delvareb99883d2010-03-05 22:17:15 +01001083
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001084 return 1; /* Manual mode */
Jean Delvareb99883d2010-03-05 22:17:15 +01001085}
1086
Jean Delvare20ad93d2005-06-05 11:53:25 +02001087static ssize_t show_fan(struct device *dev, struct device_attribute *attr,
Guenter Roecke1169ba2012-12-19 22:17:01 +01001088 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089{
Guenter Roecke1169ba2012-12-19 22:17:01 +01001090 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
1091 int nr = sattr->nr;
1092 int index = sattr->index;
1093 int speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +02001095
Guenter Roecke1169ba2012-12-19 22:17:01 +01001096 speed = has_16bit_fans(data) ?
1097 FAN16_FROM_REG(data->fan[nr][index]) :
1098 FAN_FROM_REG(data->fan[nr][index],
1099 DIV_FROM_REG(data->fan_div[nr]));
1100 return sprintf(buf, "%d\n", speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101}
Guenter Roecke1169ba2012-12-19 22:17:01 +01001102
Jean Delvare20ad93d2005-06-05 11:53:25 +02001103static ssize_t show_fan_div(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001104 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001106 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
Guenter Roeckc9620242015-04-04 09:05:57 -07001107 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +02001108 int nr = sensor_attr->index;
1109
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001110 return sprintf(buf, "%lu\n", DIV_FROM_REG(data->fan_div[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111}
Guenter Roeckc9620242015-04-04 09:05:57 -07001112
Jean Delvare5f2dc792010-03-05 22:17:18 +01001113static ssize_t show_pwm_enable(struct device *dev,
Guenter Roeckc9620242015-04-04 09:05:57 -07001114 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001116 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
Guenter Roeckc9620242015-04-04 09:05:57 -07001117 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +02001118 int nr = sensor_attr->index;
1119
Jean Delvareb99883d2010-03-05 22:17:15 +01001120 return sprintf(buf, "%d\n", pwm_mode(data, nr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121}
Guenter Roeckc9620242015-04-04 09:05:57 -07001122
Jean Delvare20ad93d2005-06-05 11:53:25 +02001123static ssize_t show_pwm(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001124 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001126 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
Guenter Roeckc9620242015-04-04 09:05:57 -07001127 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +02001128 int nr = sensor_attr->index;
1129
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001130 return sprintf(buf, "%d\n",
1131 pwm_from_reg(data, data->pwm_duty[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132}
Guenter Roeckc9620242015-04-04 09:05:57 -07001133
Jean Delvaref8d0c192007-02-14 21:15:02 +01001134static ssize_t show_pwm_freq(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001135 char *buf)
Jean Delvaref8d0c192007-02-14 21:15:02 +01001136{
Guenter Roeck60878bc2015-03-26 19:57:42 -07001137 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
Jean Delvaref8d0c192007-02-14 21:15:02 +01001138 struct it87_data *data = it87_update_device(dev);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001139 int nr = sensor_attr->index;
Guenter Roeckf56c9c02015-03-26 20:01:24 -07001140 unsigned int freq;
Guenter Roeck60878bc2015-03-26 19:57:42 -07001141 int index;
1142
1143 if (has_pwm_freq2(data) && nr == 1)
1144 index = (data->extra >> 4) & 0x07;
1145 else
1146 index = (data->fan_ctl >> 4) & 0x07;
Jean Delvaref8d0c192007-02-14 21:15:02 +01001147
Guenter Roeckf56c9c02015-03-26 20:01:24 -07001148 freq = pwm_freq[index] / (has_newer_autopwm(data) ? 256 : 128);
1149
1150 return sprintf(buf, "%u\n", freq);
Jean Delvaref8d0c192007-02-14 21:15:02 +01001151}
Guenter Roecke1169ba2012-12-19 22:17:01 +01001152
1153static ssize_t set_fan(struct device *dev, struct device_attribute *attr,
1154 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155{
Guenter Roecke1169ba2012-12-19 22:17:01 +01001156 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
1157 int nr = sattr->nr;
1158 int index = sattr->index;
Jean Delvare20ad93d2005-06-05 11:53:25 +02001159
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001160 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001161 long val;
Jean Delvare7f999aa2007-02-14 21:15:03 +01001162 u8 reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001164 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001165 return -EINVAL;
1166
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001167 mutex_lock(&data->update_lock);
Guenter Roecke1169ba2012-12-19 22:17:01 +01001168
1169 if (has_16bit_fans(data)) {
1170 data->fan[nr][index] = FAN16_TO_REG(val);
1171 it87_write_value(data, IT87_REG_FAN_MIN[nr],
1172 data->fan[nr][index] & 0xff);
1173 it87_write_value(data, IT87_REG_FANX_MIN[nr],
1174 data->fan[nr][index] >> 8);
1175 } else {
1176 reg = it87_read_value(data, IT87_REG_FAN_DIV);
1177 switch (nr) {
1178 case 0:
1179 data->fan_div[nr] = reg & 0x07;
1180 break;
1181 case 1:
1182 data->fan_div[nr] = (reg >> 3) & 0x07;
1183 break;
1184 case 2:
1185 data->fan_div[nr] = (reg & 0x40) ? 3 : 1;
1186 break;
1187 }
1188 data->fan[nr][index] =
1189 FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
1190 it87_write_value(data, IT87_REG_FAN_MIN[nr],
1191 data->fan[nr][index]);
Jean Delvare07eab462005-11-23 15:44:31 -08001192 }
1193
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001194 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 return count;
1196}
Guenter Roecke1169ba2012-12-19 22:17:01 +01001197
Jean Delvare20ad93d2005-06-05 11:53:25 +02001198static ssize_t set_fan_div(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001199 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001201 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001202 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001203 int nr = sensor_attr->index;
Jean Delvaref5f64502010-03-05 22:17:19 +01001204 unsigned long val;
Jean Delvare8ab4ec32006-08-28 14:35:46 +02001205 int min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 u8 old;
1207
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001208 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001209 return -EINVAL;
1210
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001211 mutex_lock(&data->update_lock);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001212 old = it87_read_value(data, IT87_REG_FAN_DIV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Jean Delvare8ab4ec32006-08-28 14:35:46 +02001214 /* Save fan min limit */
Guenter Roecke1169ba2012-12-19 22:17:01 +01001215 min = FAN_FROM_REG(data->fan[nr][1], DIV_FROM_REG(data->fan_div[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217 switch (nr) {
1218 case 0:
1219 case 1:
1220 data->fan_div[nr] = DIV_TO_REG(val);
1221 break;
1222 case 2:
1223 if (val < 8)
1224 data->fan_div[nr] = 1;
1225 else
1226 data->fan_div[nr] = 3;
1227 }
1228 val = old & 0x80;
1229 val |= (data->fan_div[0] & 0x07);
1230 val |= (data->fan_div[1] & 0x07) << 3;
1231 if (data->fan_div[2] == 3)
1232 val |= 0x1 << 6;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001233 it87_write_value(data, IT87_REG_FAN_DIV, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Jean Delvare8ab4ec32006-08-28 14:35:46 +02001235 /* Restore fan min limit */
Guenter Roecke1169ba2012-12-19 22:17:01 +01001236 data->fan[nr][1] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
1237 it87_write_value(data, IT87_REG_FAN_MIN[nr], data->fan[nr][1]);
Jean Delvare8ab4ec32006-08-28 14:35:46 +02001238
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001239 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 return count;
1241}
Jean Delvarecccfc9c2010-03-05 22:17:21 +01001242
1243/* Returns 0 if OK, -EINVAL otherwise */
1244static int check_trip_points(struct device *dev, int nr)
1245{
1246 const struct it87_data *data = dev_get_drvdata(dev);
1247 int i, err = 0;
1248
1249 if (has_old_autopwm(data)) {
1250 for (i = 0; i < 3; i++) {
1251 if (data->auto_temp[nr][i] > data->auto_temp[nr][i + 1])
1252 err = -EINVAL;
1253 }
1254 for (i = 0; i < 2; i++) {
1255 if (data->auto_pwm[nr][i] > data->auto_pwm[nr][i + 1])
1256 err = -EINVAL;
1257 }
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001258 } else if (has_newer_autopwm(data)) {
1259 for (i = 1; i < 3; i++) {
1260 if (data->auto_temp[nr][i] > data->auto_temp[nr][i + 1])
1261 err = -EINVAL;
1262 }
Jean Delvarecccfc9c2010-03-05 22:17:21 +01001263 }
1264
1265 if (err) {
Guenter Roeck1d9bcf62012-12-19 22:17:01 +01001266 dev_err(dev,
1267 "Inconsistent trip points, not switching to automatic mode\n");
Jean Delvarecccfc9c2010-03-05 22:17:21 +01001268 dev_err(dev, "Adjust the trip points and try again\n");
1269 }
1270 return err;
1271}
1272
Guenter Roeckc9620242015-04-04 09:05:57 -07001273static ssize_t set_pwm_enable(struct device *dev, struct device_attribute *attr,
1274 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001276 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001277 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001278 int nr = sensor_attr->index;
Jean Delvaref5f64502010-03-05 22:17:19 +01001279 long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001281 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 2)
Jean Delvareb99883d2010-03-05 22:17:15 +01001282 return -EINVAL;
1283
Jean Delvarecccfc9c2010-03-05 22:17:21 +01001284 /* Check trip points before switching to automatic mode */
1285 if (val == 2) {
1286 if (check_trip_points(dev, nr) < 0)
1287 return -EINVAL;
1288 }
1289
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001290 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
1292 if (val == 0) {
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001293 if (nr < 3 && data->type != it8603) {
1294 int tmp;
1295 /* make sure the fan is on when in on/off mode */
1296 tmp = it87_read_value(data, IT87_REG_FAN_CTL);
1297 it87_write_value(data, IT87_REG_FAN_CTL, tmp | BIT(nr));
1298 /* set on/off mode */
1299 data->fan_main_ctrl &= ~BIT(nr);
1300 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
1301 data->fan_main_ctrl);
1302 } else {
Guenter Roeck4401e472017-02-08 14:07:42 -08001303 u8 ctrl;
1304
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001305 /* No on/off mode, set maximum pwm value */
1306 data->pwm_duty[nr] = pwm_to_reg(data, 0xff);
1307 it87_write_value(data, IT87_REG_PWM_DUTY[nr],
1308 data->pwm_duty[nr]);
1309 /* and set manual mode */
Guenter Roeck4401e472017-02-08 14:07:42 -08001310 if (has_newer_autopwm(data)) {
1311 ctrl = (data->pwm_ctrl[nr] & 0x7c) |
1312 data->pwm_temp_map[nr];
1313 } else {
1314 ctrl = data->pwm_duty[nr];
1315 }
1316 data->pwm_ctrl[nr] = ctrl;
1317 it87_write_value(data, IT87_REG_PWM[nr], ctrl);
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001318 }
Jean Delvareb99883d2010-03-05 22:17:15 +01001319 } else {
Guenter Roeck4401e472017-02-08 14:07:42 -08001320 u8 ctrl;
1321
1322 if (has_newer_autopwm(data)) {
1323 ctrl = (data->pwm_ctrl[nr] & 0x7c) |
1324 data->pwm_temp_map[nr];
1325 if (val != 1)
1326 ctrl |= 0x80;
1327 } else {
1328 ctrl = (val == 1 ? data->pwm_duty[nr] : 0x80);
1329 }
1330 data->pwm_ctrl[nr] = ctrl;
1331 it87_write_value(data, IT87_REG_PWM[nr], ctrl);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001332
Guenter Roeckf1bbe612015-04-05 13:16:54 -07001333 if (data->type != it8603 && nr < 3) {
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001334 /* set SmartGuardian mode */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001335 data->fan_main_ctrl |= BIT(nr);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001336 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
1337 data->fan_main_ctrl);
1338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 }
1340
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001341 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 return count;
1343}
Guenter Roeckc9620242015-04-04 09:05:57 -07001344
Jean Delvare20ad93d2005-06-05 11:53:25 +02001345static ssize_t set_pwm(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001346 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347{
Jean Delvare20ad93d2005-06-05 11:53:25 +02001348 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001349 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001350 int nr = sensor_attr->index;
Jean Delvaref5f64502010-03-05 22:17:19 +01001351 long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001353 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 return -EINVAL;
1355
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001356 mutex_lock(&data->update_lock);
Jean Delvare16b5dda2012-01-16 22:51:48 +01001357 if (has_newer_autopwm(data)) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001358 /*
1359 * If we are in automatic mode, the PWM duty cycle register
1360 * is read-only so we can't write the value.
1361 */
Jean Delvare6229cdb2010-12-08 16:27:22 +01001362 if (data->pwm_ctrl[nr] & 0x80) {
1363 mutex_unlock(&data->update_lock);
1364 return -EBUSY;
1365 }
1366 data->pwm_duty[nr] = pwm_to_reg(data, val);
Guenter Roeck36c4d982015-03-26 18:18:19 -07001367 it87_write_value(data, IT87_REG_PWM_DUTY[nr],
Jean Delvare6229cdb2010-12-08 16:27:22 +01001368 data->pwm_duty[nr]);
1369 } else {
1370 data->pwm_duty[nr] = pwm_to_reg(data, val);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001371 /*
1372 * If we are in manual mode, write the duty cycle immediately;
1373 * otherwise, just store it for later use.
1374 */
Jean Delvare6229cdb2010-12-08 16:27:22 +01001375 if (!(data->pwm_ctrl[nr] & 0x80)) {
1376 data->pwm_ctrl[nr] = data->pwm_duty[nr];
Guenter Roeck36c4d982015-03-26 18:18:19 -07001377 it87_write_value(data, IT87_REG_PWM[nr],
Jean Delvare6229cdb2010-12-08 16:27:22 +01001378 data->pwm_ctrl[nr]);
1379 }
Jean Delvareb99883d2010-03-05 22:17:15 +01001380 }
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001381 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 return count;
1383}
Guenter Roeckc9620242015-04-04 09:05:57 -07001384
1385static ssize_t set_pwm_freq(struct device *dev, struct device_attribute *attr,
1386 const char *buf, size_t count)
Jean Delvaref8d0c192007-02-14 21:15:02 +01001387{
Guenter Roeck60878bc2015-03-26 19:57:42 -07001388 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001389 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001390 int nr = sensor_attr->index;
Jean Delvaref5f64502010-03-05 22:17:19 +01001391 unsigned long val;
Jean Delvaref8d0c192007-02-14 21:15:02 +01001392 int i;
1393
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001394 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001395 return -EINVAL;
1396
Guenter Roeckf56c9c02015-03-26 20:01:24 -07001397 val = clamp_val(val, 0, 1000000);
1398 val *= has_newer_autopwm(data) ? 256 : 128;
1399
Jean Delvaref8d0c192007-02-14 21:15:02 +01001400 /* Search for the nearest available frequency */
1401 for (i = 0; i < 7; i++) {
Guenter Roeckc9620242015-04-04 09:05:57 -07001402 if (val > (pwm_freq[i] + pwm_freq[i + 1]) / 2)
Jean Delvaref8d0c192007-02-14 21:15:02 +01001403 break;
1404 }
1405
1406 mutex_lock(&data->update_lock);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001407 if (nr == 0) {
1408 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL) & 0x8f;
1409 data->fan_ctl |= i << 4;
1410 it87_write_value(data, IT87_REG_FAN_CTL, data->fan_ctl);
1411 } else {
1412 data->extra = it87_read_value(data, IT87_REG_TEMP_EXTRA) & 0x8f;
1413 data->extra |= i << 4;
1414 it87_write_value(data, IT87_REG_TEMP_EXTRA, data->extra);
1415 }
Jean Delvaref8d0c192007-02-14 21:15:02 +01001416 mutex_unlock(&data->update_lock);
1417
1418 return count;
1419}
Guenter Roeckc9620242015-04-04 09:05:57 -07001420
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001421static ssize_t show_pwm_temp_map(struct device *dev,
Guenter Roeckc9620242015-04-04 09:05:57 -07001422 struct device_attribute *attr, char *buf)
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001423{
1424 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001425 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001426 int nr = sensor_attr->index;
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001427 int map;
1428
Guenter Roeck0624d862015-04-06 21:04:18 -07001429 map = data->pwm_temp_map[nr];
1430 if (map >= 3)
1431 map = 0; /* Should never happen */
1432 if (nr >= 3) /* pwm channels 3..6 map to temp4..6 */
1433 map += 3;
1434
1435 return sprintf(buf, "%d\n", (int)BIT(map));
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001436}
Guenter Roeckc9620242015-04-04 09:05:57 -07001437
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001438static ssize_t set_pwm_temp_map(struct device *dev,
Guenter Roeckc9620242015-04-04 09:05:57 -07001439 struct device_attribute *attr, const char *buf,
1440 size_t count)
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001441{
1442 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001443 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001444 int nr = sensor_attr->index;
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001445 long val;
1446 u8 reg;
1447
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001448 if (kstrtol(buf, 10, &val) < 0)
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001449 return -EINVAL;
1450
Guenter Roeck0624d862015-04-06 21:04:18 -07001451 if (nr >= 3)
1452 val -= 3;
1453
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001454 switch (val) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001455 case BIT(0):
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001456 reg = 0x00;
1457 break;
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001458 case BIT(1):
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001459 reg = 0x01;
1460 break;
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001461 case BIT(2):
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001462 reg = 0x02;
1463 break;
1464 default:
1465 return -EINVAL;
1466 }
1467
1468 mutex_lock(&data->update_lock);
1469 data->pwm_temp_map[nr] = reg;
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001470 /*
1471 * If we are in automatic mode, write the temp mapping immediately;
1472 * otherwise, just store it for later use.
1473 */
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001474 if (data->pwm_ctrl[nr] & 0x80) {
Guenter Roeck4401e472017-02-08 14:07:42 -08001475 data->pwm_ctrl[nr] = (data->pwm_ctrl[nr] & 0xfc) |
1476 data->pwm_temp_map[nr];
Guenter Roeck36c4d982015-03-26 18:18:19 -07001477 it87_write_value(data, IT87_REG_PWM[nr], data->pwm_ctrl[nr]);
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001478 }
1479 mutex_unlock(&data->update_lock);
1480 return count;
1481}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Guenter Roeckc9620242015-04-04 09:05:57 -07001483static ssize_t show_auto_pwm(struct device *dev, struct device_attribute *attr,
1484 char *buf)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001485{
1486 struct it87_data *data = it87_update_device(dev);
1487 struct sensor_device_attribute_2 *sensor_attr =
1488 to_sensor_dev_attr_2(attr);
1489 int nr = sensor_attr->nr;
1490 int point = sensor_attr->index;
1491
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001492 return sprintf(buf, "%d\n",
1493 pwm_from_reg(data, data->auto_pwm[nr][point]));
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001494}
1495
Guenter Roeckc9620242015-04-04 09:05:57 -07001496static ssize_t set_auto_pwm(struct device *dev, struct device_attribute *attr,
1497 const char *buf, size_t count)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001498{
1499 struct it87_data *data = dev_get_drvdata(dev);
1500 struct sensor_device_attribute_2 *sensor_attr =
1501 to_sensor_dev_attr_2(attr);
1502 int nr = sensor_attr->nr;
1503 int point = sensor_attr->index;
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001504 int regaddr;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001505 long val;
1506
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001507 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001508 return -EINVAL;
1509
1510 mutex_lock(&data->update_lock);
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001511 data->auto_pwm[nr][point] = pwm_to_reg(data, val);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001512 if (has_newer_autopwm(data))
1513 regaddr = IT87_REG_AUTO_TEMP(nr, 3);
1514 else
1515 regaddr = IT87_REG_AUTO_PWM(nr, point);
1516 it87_write_value(data, regaddr, data->auto_pwm[nr][point]);
1517 mutex_unlock(&data->update_lock);
1518 return count;
1519}
1520
1521static ssize_t show_auto_pwm_slope(struct device *dev,
1522 struct device_attribute *attr, char *buf)
1523{
1524 struct it87_data *data = it87_update_device(dev);
1525 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1526 int nr = sensor_attr->index;
1527
1528 return sprintf(buf, "%d\n", data->auto_pwm[nr][1] & 0x7f);
1529}
1530
1531static ssize_t set_auto_pwm_slope(struct device *dev,
1532 struct device_attribute *attr,
1533 const char *buf, size_t count)
1534{
1535 struct it87_data *data = dev_get_drvdata(dev);
1536 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1537 int nr = sensor_attr->index;
1538 unsigned long val;
1539
1540 if (kstrtoul(buf, 10, &val) < 0 || val > 127)
1541 return -EINVAL;
1542
1543 mutex_lock(&data->update_lock);
1544 data->auto_pwm[nr][1] = (data->auto_pwm[nr][1] & 0x80) | val;
1545 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, 4),
1546 data->auto_pwm[nr][1]);
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001547 mutex_unlock(&data->update_lock);
1548 return count;
1549}
1550
Guenter Roeckc9620242015-04-04 09:05:57 -07001551static ssize_t show_auto_temp(struct device *dev, struct device_attribute *attr,
1552 char *buf)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001553{
1554 struct it87_data *data = it87_update_device(dev);
1555 struct sensor_device_attribute_2 *sensor_attr =
1556 to_sensor_dev_attr_2(attr);
1557 int nr = sensor_attr->nr;
1558 int point = sensor_attr->index;
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001559 int reg;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001560
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001561 if (has_old_autopwm(data) || point)
1562 reg = data->auto_temp[nr][point];
1563 else
1564 reg = data->auto_temp[nr][1] - (data->auto_temp[nr][0] & 0x1f);
1565
1566 return sprintf(buf, "%d\n", TEMP_FROM_REG(reg));
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001567}
1568
Guenter Roeckc9620242015-04-04 09:05:57 -07001569static ssize_t set_auto_temp(struct device *dev, struct device_attribute *attr,
1570 const char *buf, size_t count)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001571{
1572 struct it87_data *data = dev_get_drvdata(dev);
1573 struct sensor_device_attribute_2 *sensor_attr =
1574 to_sensor_dev_attr_2(attr);
1575 int nr = sensor_attr->nr;
1576 int point = sensor_attr->index;
1577 long val;
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001578 int reg;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001579
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001580 if (kstrtol(buf, 10, &val) < 0 || val < -128000 || val > 127000)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001581 return -EINVAL;
1582
1583 mutex_lock(&data->update_lock);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001584 if (has_newer_autopwm(data) && !point) {
1585 reg = data->auto_temp[nr][1] - TEMP_TO_REG(val);
1586 reg = clamp_val(reg, 0, 0x1f) | (data->auto_temp[nr][0] & 0xe0);
1587 data->auto_temp[nr][0] = reg;
1588 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, 5), reg);
1589 } else {
1590 reg = TEMP_TO_REG(val);
1591 data->auto_temp[nr][point] = reg;
1592 if (has_newer_autopwm(data))
1593 point--;
1594 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, point), reg);
1595 }
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001596 mutex_unlock(&data->update_lock);
1597 return count;
1598}
1599
Guenter Roecke1169ba2012-12-19 22:17:01 +01001600static SENSOR_DEVICE_ATTR_2(fan1_input, S_IRUGO, show_fan, NULL, 0, 0);
1601static SENSOR_DEVICE_ATTR_2(fan1_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1602 0, 1);
1603static SENSOR_DEVICE_ATTR(fan1_div, S_IRUGO | S_IWUSR, show_fan_div,
1604 set_fan_div, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
Guenter Roecke1169ba2012-12-19 22:17:01 +01001606static SENSOR_DEVICE_ATTR_2(fan2_input, S_IRUGO, show_fan, NULL, 1, 0);
1607static SENSOR_DEVICE_ATTR_2(fan2_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1608 1, 1);
1609static SENSOR_DEVICE_ATTR(fan2_div, S_IRUGO | S_IWUSR, show_fan_div,
1610 set_fan_div, 1);
1611
1612static SENSOR_DEVICE_ATTR_2(fan3_input, S_IRUGO, show_fan, NULL, 2, 0);
1613static SENSOR_DEVICE_ATTR_2(fan3_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1614 2, 1);
1615static SENSOR_DEVICE_ATTR(fan3_div, S_IRUGO | S_IWUSR, show_fan_div,
1616 set_fan_div, 2);
1617
1618static SENSOR_DEVICE_ATTR_2(fan4_input, S_IRUGO, show_fan, NULL, 3, 0);
1619static SENSOR_DEVICE_ATTR_2(fan4_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1620 3, 1);
1621
1622static SENSOR_DEVICE_ATTR_2(fan5_input, S_IRUGO, show_fan, NULL, 4, 0);
1623static SENSOR_DEVICE_ATTR_2(fan5_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1624 4, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07001626static SENSOR_DEVICE_ATTR_2(fan6_input, S_IRUGO, show_fan, NULL, 5, 0);
1627static SENSOR_DEVICE_ATTR_2(fan6_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1628 5, 1);
1629
Guenter Roeckc4458db2012-12-19 22:17:02 +01001630static SENSOR_DEVICE_ATTR(pwm1_enable, S_IRUGO | S_IWUSR,
1631 show_pwm_enable, set_pwm_enable, 0);
1632static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 0);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001633static SENSOR_DEVICE_ATTR(pwm1_freq, S_IRUGO | S_IWUSR, show_pwm_freq,
1634 set_pwm_freq, 0);
Guenter Roeck5c391262013-03-30 15:02:12 -07001635static SENSOR_DEVICE_ATTR(pwm1_auto_channels_temp, S_IRUGO,
Guenter Roeckc4458db2012-12-19 22:17:02 +01001636 show_pwm_temp_map, set_pwm_temp_map, 0);
1637static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_pwm, S_IRUGO | S_IWUSR,
1638 show_auto_pwm, set_auto_pwm, 0, 0);
1639static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_pwm, S_IRUGO | S_IWUSR,
1640 show_auto_pwm, set_auto_pwm, 0, 1);
1641static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_pwm, S_IRUGO | S_IWUSR,
1642 show_auto_pwm, set_auto_pwm, 0, 2);
1643static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_pwm, S_IRUGO,
1644 show_auto_pwm, NULL, 0, 3);
1645static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp, S_IRUGO | S_IWUSR,
1646 show_auto_temp, set_auto_temp, 0, 1);
1647static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1648 show_auto_temp, set_auto_temp, 0, 0);
1649static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_temp, S_IRUGO | S_IWUSR,
1650 show_auto_temp, set_auto_temp, 0, 2);
1651static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_temp, S_IRUGO | S_IWUSR,
1652 show_auto_temp, set_auto_temp, 0, 3);
1653static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_temp, S_IRUGO | S_IWUSR,
1654 show_auto_temp, set_auto_temp, 0, 4);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001655static SENSOR_DEVICE_ATTR_2(pwm1_auto_start, S_IRUGO | S_IWUSR,
1656 show_auto_pwm, set_auto_pwm, 0, 0);
1657static SENSOR_DEVICE_ATTR(pwm1_auto_slope, S_IRUGO | S_IWUSR,
1658 show_auto_pwm_slope, set_auto_pwm_slope, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Guenter Roeckc4458db2012-12-19 22:17:02 +01001660static SENSOR_DEVICE_ATTR(pwm2_enable, S_IRUGO | S_IWUSR,
1661 show_pwm_enable, set_pwm_enable, 1);
1662static SENSOR_DEVICE_ATTR(pwm2, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 1);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001663static SENSOR_DEVICE_ATTR(pwm2_freq, S_IRUGO, show_pwm_freq, set_pwm_freq, 1);
Guenter Roeck5c391262013-03-30 15:02:12 -07001664static SENSOR_DEVICE_ATTR(pwm2_auto_channels_temp, S_IRUGO,
Guenter Roeckc4458db2012-12-19 22:17:02 +01001665 show_pwm_temp_map, set_pwm_temp_map, 1);
1666static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_pwm, S_IRUGO | S_IWUSR,
1667 show_auto_pwm, set_auto_pwm, 1, 0);
1668static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_pwm, S_IRUGO | S_IWUSR,
1669 show_auto_pwm, set_auto_pwm, 1, 1);
1670static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_pwm, S_IRUGO | S_IWUSR,
1671 show_auto_pwm, set_auto_pwm, 1, 2);
1672static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_pwm, S_IRUGO,
1673 show_auto_pwm, NULL, 1, 3);
1674static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp, S_IRUGO | S_IWUSR,
1675 show_auto_temp, set_auto_temp, 1, 1);
1676static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1677 show_auto_temp, set_auto_temp, 1, 0);
1678static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_temp, S_IRUGO | S_IWUSR,
1679 show_auto_temp, set_auto_temp, 1, 2);
1680static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_temp, S_IRUGO | S_IWUSR,
1681 show_auto_temp, set_auto_temp, 1, 3);
1682static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_temp, S_IRUGO | S_IWUSR,
1683 show_auto_temp, set_auto_temp, 1, 4);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001684static SENSOR_DEVICE_ATTR_2(pwm2_auto_start, S_IRUGO | S_IWUSR,
1685 show_auto_pwm, set_auto_pwm, 1, 0);
1686static SENSOR_DEVICE_ATTR(pwm2_auto_slope, S_IRUGO | S_IWUSR,
1687 show_auto_pwm_slope, set_auto_pwm_slope, 1);
Guenter Roeckc4458db2012-12-19 22:17:02 +01001688
1689static SENSOR_DEVICE_ATTR(pwm3_enable, S_IRUGO | S_IWUSR,
1690 show_pwm_enable, set_pwm_enable, 2);
1691static SENSOR_DEVICE_ATTR(pwm3, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 2);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001692static SENSOR_DEVICE_ATTR(pwm3_freq, S_IRUGO, show_pwm_freq, NULL, 2);
Guenter Roeck5c391262013-03-30 15:02:12 -07001693static SENSOR_DEVICE_ATTR(pwm3_auto_channels_temp, S_IRUGO,
Guenter Roeckc4458db2012-12-19 22:17:02 +01001694 show_pwm_temp_map, set_pwm_temp_map, 2);
1695static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_pwm, S_IRUGO | S_IWUSR,
1696 show_auto_pwm, set_auto_pwm, 2, 0);
1697static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_pwm, S_IRUGO | S_IWUSR,
1698 show_auto_pwm, set_auto_pwm, 2, 1);
1699static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_pwm, S_IRUGO | S_IWUSR,
1700 show_auto_pwm, set_auto_pwm, 2, 2);
1701static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_pwm, S_IRUGO,
1702 show_auto_pwm, NULL, 2, 3);
1703static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp, S_IRUGO | S_IWUSR,
1704 show_auto_temp, set_auto_temp, 2, 1);
1705static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1706 show_auto_temp, set_auto_temp, 2, 0);
1707static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_temp, S_IRUGO | S_IWUSR,
1708 show_auto_temp, set_auto_temp, 2, 2);
1709static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_temp, S_IRUGO | S_IWUSR,
1710 show_auto_temp, set_auto_temp, 2, 3);
1711static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_temp, S_IRUGO | S_IWUSR,
1712 show_auto_temp, set_auto_temp, 2, 4);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001713static SENSOR_DEVICE_ATTR_2(pwm3_auto_start, S_IRUGO | S_IWUSR,
1714 show_auto_pwm, set_auto_pwm, 2, 0);
1715static SENSOR_DEVICE_ATTR(pwm3_auto_slope, S_IRUGO | S_IWUSR,
1716 show_auto_pwm_slope, set_auto_pwm_slope, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
Guenter Roeck36c4d982015-03-26 18:18:19 -07001718static SENSOR_DEVICE_ATTR(pwm4_enable, S_IRUGO | S_IWUSR,
1719 show_pwm_enable, set_pwm_enable, 3);
1720static SENSOR_DEVICE_ATTR(pwm4, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 3);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001721static SENSOR_DEVICE_ATTR(pwm4_freq, S_IRUGO, show_pwm_freq, NULL, 3);
Guenter Roeck5c391262013-03-30 15:02:12 -07001722static SENSOR_DEVICE_ATTR(pwm4_auto_channels_temp, S_IRUGO,
Guenter Roeck36c4d982015-03-26 18:18:19 -07001723 show_pwm_temp_map, set_pwm_temp_map, 3);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001724static SENSOR_DEVICE_ATTR_2(pwm4_auto_point1_temp, S_IRUGO | S_IWUSR,
1725 show_auto_temp, set_auto_temp, 2, 1);
1726static SENSOR_DEVICE_ATTR_2(pwm4_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1727 show_auto_temp, set_auto_temp, 2, 0);
1728static SENSOR_DEVICE_ATTR_2(pwm4_auto_point2_temp, S_IRUGO | S_IWUSR,
1729 show_auto_temp, set_auto_temp, 2, 2);
1730static SENSOR_DEVICE_ATTR_2(pwm4_auto_point3_temp, S_IRUGO | S_IWUSR,
1731 show_auto_temp, set_auto_temp, 2, 3);
1732static SENSOR_DEVICE_ATTR_2(pwm4_auto_start, S_IRUGO | S_IWUSR,
1733 show_auto_pwm, set_auto_pwm, 3, 0);
1734static SENSOR_DEVICE_ATTR(pwm4_auto_slope, S_IRUGO | S_IWUSR,
1735 show_auto_pwm_slope, set_auto_pwm_slope, 3);
Guenter Roeck36c4d982015-03-26 18:18:19 -07001736
1737static SENSOR_DEVICE_ATTR(pwm5_enable, S_IRUGO | S_IWUSR,
1738 show_pwm_enable, set_pwm_enable, 4);
1739static SENSOR_DEVICE_ATTR(pwm5, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 4);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001740static SENSOR_DEVICE_ATTR(pwm5_freq, S_IRUGO, show_pwm_freq, NULL, 4);
Guenter Roeck5c391262013-03-30 15:02:12 -07001741static SENSOR_DEVICE_ATTR(pwm5_auto_channels_temp, S_IRUGO,
Guenter Roeck36c4d982015-03-26 18:18:19 -07001742 show_pwm_temp_map, set_pwm_temp_map, 4);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001743static SENSOR_DEVICE_ATTR_2(pwm5_auto_point1_temp, S_IRUGO | S_IWUSR,
1744 show_auto_temp, set_auto_temp, 2, 1);
1745static SENSOR_DEVICE_ATTR_2(pwm5_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1746 show_auto_temp, set_auto_temp, 2, 0);
1747static SENSOR_DEVICE_ATTR_2(pwm5_auto_point2_temp, S_IRUGO | S_IWUSR,
1748 show_auto_temp, set_auto_temp, 2, 2);
1749static SENSOR_DEVICE_ATTR_2(pwm5_auto_point3_temp, S_IRUGO | S_IWUSR,
1750 show_auto_temp, set_auto_temp, 2, 3);
1751static SENSOR_DEVICE_ATTR_2(pwm5_auto_start, S_IRUGO | S_IWUSR,
1752 show_auto_pwm, set_auto_pwm, 4, 0);
1753static SENSOR_DEVICE_ATTR(pwm5_auto_slope, S_IRUGO | S_IWUSR,
1754 show_auto_pwm_slope, set_auto_pwm_slope, 4);
Guenter Roeck36c4d982015-03-26 18:18:19 -07001755
1756static SENSOR_DEVICE_ATTR(pwm6_enable, S_IRUGO | S_IWUSR,
1757 show_pwm_enable, set_pwm_enable, 5);
1758static SENSOR_DEVICE_ATTR(pwm6, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 5);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001759static SENSOR_DEVICE_ATTR(pwm6_freq, S_IRUGO, show_pwm_freq, NULL, 5);
Guenter Roeck5c391262013-03-30 15:02:12 -07001760static SENSOR_DEVICE_ATTR(pwm6_auto_channels_temp, S_IRUGO,
Guenter Roeck36c4d982015-03-26 18:18:19 -07001761 show_pwm_temp_map, set_pwm_temp_map, 5);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001762static SENSOR_DEVICE_ATTR_2(pwm6_auto_point1_temp, S_IRUGO | S_IWUSR,
1763 show_auto_temp, set_auto_temp, 2, 1);
1764static SENSOR_DEVICE_ATTR_2(pwm6_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1765 show_auto_temp, set_auto_temp, 2, 0);
1766static SENSOR_DEVICE_ATTR_2(pwm6_auto_point2_temp, S_IRUGO | S_IWUSR,
1767 show_auto_temp, set_auto_temp, 2, 2);
1768static SENSOR_DEVICE_ATTR_2(pwm6_auto_point3_temp, S_IRUGO | S_IWUSR,
1769 show_auto_temp, set_auto_temp, 2, 3);
1770static SENSOR_DEVICE_ATTR_2(pwm6_auto_start, S_IRUGO | S_IWUSR,
1771 show_auto_pwm, set_auto_pwm, 5, 0);
1772static SENSOR_DEVICE_ATTR(pwm6_auto_slope, S_IRUGO | S_IWUSR,
1773 show_auto_pwm_slope, set_auto_pwm_slope, 5);
Guenter Roeck36c4d982015-03-26 18:18:19 -07001774
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775/* Alarms */
Jean Delvare5f2dc792010-03-05 22:17:18 +01001776static ssize_t show_alarms(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001777 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778{
1779 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001780
Jean Delvare68188ba2005-05-16 18:52:38 +02001781 return sprintf(buf, "%u\n", data->alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782}
Jean Delvare1d66c642005-04-18 21:16:59 -07001783static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
Jean Delvare0124dd72007-11-25 16:16:41 +01001785static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001786 char *buf)
Jean Delvare0124dd72007-11-25 16:16:41 +01001787{
Jean Delvare0124dd72007-11-25 16:16:41 +01001788 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001789 int bitnr = to_sensor_dev_attr(attr)->index;
1790
Jean Delvare0124dd72007-11-25 16:16:41 +01001791 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
1792}
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001793
Guenter Roeckc9620242015-04-04 09:05:57 -07001794static ssize_t clear_intrusion(struct device *dev,
1795 struct device_attribute *attr, const char *buf,
1796 size_t count)
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001797{
1798 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001799 int config;
Guenter Roeckc9620242015-04-04 09:05:57 -07001800 long val;
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001801
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001802 if (kstrtol(buf, 10, &val) < 0 || val != 0)
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001803 return -EINVAL;
1804
1805 mutex_lock(&data->update_lock);
1806 config = it87_read_value(data, IT87_REG_CONFIG);
1807 if (config < 0) {
1808 count = config;
1809 } else {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001810 config |= BIT(5);
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001811 it87_write_value(data, IT87_REG_CONFIG, config);
1812 /* Invalidate cache to force re-read */
1813 data->valid = 0;
1814 }
1815 mutex_unlock(&data->update_lock);
1816
1817 return count;
1818}
1819
Jean Delvare0124dd72007-11-25 16:16:41 +01001820static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 8);
1821static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 9);
1822static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 10);
1823static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 11);
1824static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 12);
1825static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 13);
1826static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 14);
1827static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 15);
1828static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 0);
1829static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 1);
1830static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 2);
1831static SENSOR_DEVICE_ATTR(fan4_alarm, S_IRUGO, show_alarm, NULL, 3);
1832static SENSOR_DEVICE_ATTR(fan5_alarm, S_IRUGO, show_alarm, NULL, 6);
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07001833static SENSOR_DEVICE_ATTR(fan6_alarm, S_IRUGO, show_alarm, NULL, 7);
Jean Delvare0124dd72007-11-25 16:16:41 +01001834static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 16);
1835static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 17);
1836static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 18);
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001837static SENSOR_DEVICE_ATTR(intrusion0_alarm, S_IRUGO | S_IWUSR,
1838 show_alarm, clear_intrusion, 4);
Jean Delvare0124dd72007-11-25 16:16:41 +01001839
Jean Delvared9b327c2010-03-05 22:17:17 +01001840static ssize_t show_beep(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001841 char *buf)
Jean Delvared9b327c2010-03-05 22:17:17 +01001842{
Jean Delvared9b327c2010-03-05 22:17:17 +01001843 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001844 int bitnr = to_sensor_dev_attr(attr)->index;
1845
Jean Delvared9b327c2010-03-05 22:17:17 +01001846 return sprintf(buf, "%u\n", (data->beeps >> bitnr) & 1);
1847}
Guenter Roeckc9620242015-04-04 09:05:57 -07001848
Jean Delvared9b327c2010-03-05 22:17:17 +01001849static ssize_t set_beep(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001850 const char *buf, size_t count)
Jean Delvared9b327c2010-03-05 22:17:17 +01001851{
1852 int bitnr = to_sensor_dev_attr(attr)->index;
1853 struct it87_data *data = dev_get_drvdata(dev);
1854 long val;
1855
Guenter Roeckc9620242015-04-04 09:05:57 -07001856 if (kstrtol(buf, 10, &val) < 0 || (val != 0 && val != 1))
Jean Delvared9b327c2010-03-05 22:17:17 +01001857 return -EINVAL;
1858
1859 mutex_lock(&data->update_lock);
1860 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
1861 if (val)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001862 data->beeps |= BIT(bitnr);
Jean Delvared9b327c2010-03-05 22:17:17 +01001863 else
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001864 data->beeps &= ~BIT(bitnr);
Jean Delvared9b327c2010-03-05 22:17:17 +01001865 it87_write_value(data, IT87_REG_BEEP_ENABLE, data->beeps);
1866 mutex_unlock(&data->update_lock);
1867 return count;
1868}
1869
1870static SENSOR_DEVICE_ATTR(in0_beep, S_IRUGO | S_IWUSR,
1871 show_beep, set_beep, 1);
1872static SENSOR_DEVICE_ATTR(in1_beep, S_IRUGO, show_beep, NULL, 1);
1873static SENSOR_DEVICE_ATTR(in2_beep, S_IRUGO, show_beep, NULL, 1);
1874static SENSOR_DEVICE_ATTR(in3_beep, S_IRUGO, show_beep, NULL, 1);
1875static SENSOR_DEVICE_ATTR(in4_beep, S_IRUGO, show_beep, NULL, 1);
1876static SENSOR_DEVICE_ATTR(in5_beep, S_IRUGO, show_beep, NULL, 1);
1877static SENSOR_DEVICE_ATTR(in6_beep, S_IRUGO, show_beep, NULL, 1);
1878static SENSOR_DEVICE_ATTR(in7_beep, S_IRUGO, show_beep, NULL, 1);
1879/* fanX_beep writability is set later */
1880static SENSOR_DEVICE_ATTR(fan1_beep, S_IRUGO, show_beep, set_beep, 0);
1881static SENSOR_DEVICE_ATTR(fan2_beep, S_IRUGO, show_beep, set_beep, 0);
1882static SENSOR_DEVICE_ATTR(fan3_beep, S_IRUGO, show_beep, set_beep, 0);
1883static SENSOR_DEVICE_ATTR(fan4_beep, S_IRUGO, show_beep, set_beep, 0);
1884static SENSOR_DEVICE_ATTR(fan5_beep, S_IRUGO, show_beep, set_beep, 0);
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07001885static SENSOR_DEVICE_ATTR(fan6_beep, S_IRUGO, show_beep, set_beep, 0);
Jean Delvared9b327c2010-03-05 22:17:17 +01001886static SENSOR_DEVICE_ATTR(temp1_beep, S_IRUGO | S_IWUSR,
1887 show_beep, set_beep, 2);
1888static SENSOR_DEVICE_ATTR(temp2_beep, S_IRUGO, show_beep, NULL, 2);
1889static SENSOR_DEVICE_ATTR(temp3_beep, S_IRUGO, show_beep, NULL, 2);
1890
Jean Delvare5f2dc792010-03-05 22:17:18 +01001891static ssize_t show_vrm_reg(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001892 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893{
Jean Delvare90d66192007-10-08 18:24:35 +02001894 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001895
Jean Delvarea7be58a2005-12-18 16:40:14 +01001896 return sprintf(buf, "%u\n", data->vrm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897}
Guenter Roeckc9620242015-04-04 09:05:57 -07001898
Jean Delvare5f2dc792010-03-05 22:17:18 +01001899static ssize_t store_vrm_reg(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001900 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001902 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001903 unsigned long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001905 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001906 return -EINVAL;
1907
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 data->vrm = val;
1909
1910 return count;
1911}
1912static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm_reg, store_vrm_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
Jean Delvare5f2dc792010-03-05 22:17:18 +01001914static ssize_t show_vid_reg(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001915 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916{
1917 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001918
1919 return sprintf(buf, "%ld\n", (long)vid_from_reg(data->vid, data->vrm));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920}
1921static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL);
Jean Delvare87808be2006-09-24 21:17:13 +02001922
Jean Delvare738e5e02010-08-14 21:08:50 +02001923static ssize_t show_label(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001924 char *buf)
Jean Delvare738e5e02010-08-14 21:08:50 +02001925{
Guenter Roeck3c4c4972012-01-20 09:29:44 -08001926 static const char * const labels[] = {
Jean Delvare738e5e02010-08-14 21:08:50 +02001927 "+5V",
1928 "5VSB",
1929 "Vbat",
1930 };
Guenter Roeck3c4c4972012-01-20 09:29:44 -08001931 static const char * const labels_it8721[] = {
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001932 "+3.3V",
1933 "3VSB",
1934 "Vbat",
1935 };
1936 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvare738e5e02010-08-14 21:08:50 +02001937 int nr = to_sensor_dev_attr(attr)->index;
Justin Maggardead80802015-08-05 12:53:08 -07001938 const char *label;
Jean Delvare738e5e02010-08-14 21:08:50 +02001939
Justin Maggardead80802015-08-05 12:53:08 -07001940 if (has_12mv_adc(data) || has_10_9mv_adc(data))
1941 label = labels_it8721[nr];
1942 else
1943 label = labels[nr];
1944
1945 return sprintf(buf, "%s\n", label);
Jean Delvare738e5e02010-08-14 21:08:50 +02001946}
1947static SENSOR_DEVICE_ATTR(in3_label, S_IRUGO, show_label, NULL, 0);
1948static SENSOR_DEVICE_ATTR(in7_label, S_IRUGO, show_label, NULL, 1);
1949static SENSOR_DEVICE_ATTR(in8_label, S_IRUGO, show_label, NULL, 2);
Guenter Roeck73055402015-03-26 09:16:32 -07001950/* AVCC3 */
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001951static SENSOR_DEVICE_ATTR(in9_label, S_IRUGO, show_label, NULL, 0);
Jean Delvare738e5e02010-08-14 21:08:50 +02001952
Guenter Roeck52929712013-03-30 14:00:08 -07001953static umode_t it87_in_is_visible(struct kobject *kobj,
1954 struct attribute *attr, int index)
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001955{
Guenter Roeck52929712013-03-30 14:00:08 -07001956 struct device *dev = container_of(kobj, struct device, kobj);
1957 struct it87_data *data = dev_get_drvdata(dev);
1958 int i = index / 5; /* voltage index */
1959 int a = index % 5; /* attribute index */
1960
Guenter Roeckf838aa22015-04-01 20:09:36 -07001961 if (index >= 40) { /* in8 and higher only have input attributes */
Guenter Roeck52929712013-03-30 14:00:08 -07001962 i = index - 40 + 8;
1963 a = 0;
1964 }
1965
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001966 if (!(data->has_in & BIT(i)))
Guenter Roeck52929712013-03-30 14:00:08 -07001967 return 0;
1968
1969 if (a == 4 && !data->has_beep)
1970 return 0;
1971
1972 return attr->mode;
1973}
1974
1975static struct attribute *it87_attributes_in[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02001976 &sensor_dev_attr_in0_input.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001977 &sensor_dev_attr_in0_min.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001978 &sensor_dev_attr_in0_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001979 &sensor_dev_attr_in0_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07001980 &sensor_dev_attr_in0_beep.dev_attr.attr, /* 4 */
1981
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001982 &sensor_dev_attr_in1_input.dev_attr.attr,
1983 &sensor_dev_attr_in1_min.dev_attr.attr,
1984 &sensor_dev_attr_in1_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001985 &sensor_dev_attr_in1_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07001986 &sensor_dev_attr_in1_beep.dev_attr.attr, /* 9 */
1987
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001988 &sensor_dev_attr_in2_input.dev_attr.attr,
1989 &sensor_dev_attr_in2_min.dev_attr.attr,
1990 &sensor_dev_attr_in2_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001991 &sensor_dev_attr_in2_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07001992 &sensor_dev_attr_in2_beep.dev_attr.attr, /* 14 */
1993
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001994 &sensor_dev_attr_in3_input.dev_attr.attr,
1995 &sensor_dev_attr_in3_min.dev_attr.attr,
1996 &sensor_dev_attr_in3_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001997 &sensor_dev_attr_in3_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07001998 &sensor_dev_attr_in3_beep.dev_attr.attr, /* 19 */
1999
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002000 &sensor_dev_attr_in4_input.dev_attr.attr,
2001 &sensor_dev_attr_in4_min.dev_attr.attr,
2002 &sensor_dev_attr_in4_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002003 &sensor_dev_attr_in4_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002004 &sensor_dev_attr_in4_beep.dev_attr.attr, /* 24 */
2005
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002006 &sensor_dev_attr_in5_input.dev_attr.attr,
2007 &sensor_dev_attr_in5_min.dev_attr.attr,
2008 &sensor_dev_attr_in5_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002009 &sensor_dev_attr_in5_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002010 &sensor_dev_attr_in5_beep.dev_attr.attr, /* 29 */
2011
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002012 &sensor_dev_attr_in6_input.dev_attr.attr,
2013 &sensor_dev_attr_in6_min.dev_attr.attr,
2014 &sensor_dev_attr_in6_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002015 &sensor_dev_attr_in6_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002016 &sensor_dev_attr_in6_beep.dev_attr.attr, /* 34 */
2017
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002018 &sensor_dev_attr_in7_input.dev_attr.attr,
2019 &sensor_dev_attr_in7_min.dev_attr.attr,
2020 &sensor_dev_attr_in7_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002021 &sensor_dev_attr_in7_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002022 &sensor_dev_attr_in7_beep.dev_attr.attr, /* 39 */
Jean Delvare87808be2006-09-24 21:17:13 +02002023
Guenter Roeck52929712013-03-30 14:00:08 -07002024 &sensor_dev_attr_in8_input.dev_attr.attr, /* 40 */
Jean Delvared5f3f6c2016-08-29 13:33:29 +02002025 &sensor_dev_attr_in9_input.dev_attr.attr,
2026 &sensor_dev_attr_in10_input.dev_attr.attr,
2027 &sensor_dev_attr_in11_input.dev_attr.attr,
2028 &sensor_dev_attr_in12_input.dev_attr.attr,
Jean Delvare3c329262016-08-29 13:18:23 +02002029 NULL
Guenter Roeck52929712013-03-30 14:00:08 -07002030};
2031
2032static const struct attribute_group it87_group_in = {
2033 .attrs = it87_attributes_in,
2034 .is_visible = it87_in_is_visible,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002035};
2036
Guenter Roeck87533772013-03-30 14:23:20 -07002037static umode_t it87_temp_is_visible(struct kobject *kobj,
2038 struct attribute *attr, int index)
Guenter Roeck4573acb2012-03-26 16:17:41 -07002039{
Guenter Roeck87533772013-03-30 14:23:20 -07002040 struct device *dev = container_of(kobj, struct device, kobj);
2041 struct it87_data *data = dev_get_drvdata(dev);
2042 int i = index / 7; /* temperature index */
2043 int a = index % 7; /* attribute index */
2044
Guenter Roeckcc18da72015-04-01 10:03:01 -07002045 if (index >= 21) {
2046 i = index - 21 + 3;
2047 a = 0;
2048 }
2049
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002050 if (!(data->has_temp & BIT(i)))
Guenter Roeck87533772013-03-30 14:23:20 -07002051 return 0;
2052
2053 if (a == 5 && !has_temp_offset(data))
2054 return 0;
2055
2056 if (a == 6 && !data->has_beep)
2057 return 0;
2058
2059 return attr->mode;
2060}
2061
2062static struct attribute *it87_attributes_temp[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02002063 &sensor_dev_attr_temp1_input.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002064 &sensor_dev_attr_temp1_max.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002065 &sensor_dev_attr_temp1_min.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002066 &sensor_dev_attr_temp1_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002067 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
Guenter Roeck87533772013-03-30 14:23:20 -07002068 &sensor_dev_attr_temp1_offset.dev_attr.attr, /* 5 */
2069 &sensor_dev_attr_temp1_beep.dev_attr.attr, /* 6 */
2070
Guenter Roeckcc18da72015-04-01 10:03:01 -07002071 &sensor_dev_attr_temp2_input.dev_attr.attr, /* 7 */
Guenter Roeck4573acb2012-03-26 16:17:41 -07002072 &sensor_dev_attr_temp2_max.dev_attr.attr,
2073 &sensor_dev_attr_temp2_min.dev_attr.attr,
2074 &sensor_dev_attr_temp2_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002075 &sensor_dev_attr_temp2_alarm.dev_attr.attr,
Guenter Roeck87533772013-03-30 14:23:20 -07002076 &sensor_dev_attr_temp2_offset.dev_attr.attr,
2077 &sensor_dev_attr_temp2_beep.dev_attr.attr,
2078
Guenter Roeckcc18da72015-04-01 10:03:01 -07002079 &sensor_dev_attr_temp3_input.dev_attr.attr, /* 14 */
Guenter Roeck4573acb2012-03-26 16:17:41 -07002080 &sensor_dev_attr_temp3_max.dev_attr.attr,
2081 &sensor_dev_attr_temp3_min.dev_attr.attr,
2082 &sensor_dev_attr_temp3_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002083 &sensor_dev_attr_temp3_alarm.dev_attr.attr,
Guenter Roeck87533772013-03-30 14:23:20 -07002084 &sensor_dev_attr_temp3_offset.dev_attr.attr,
2085 &sensor_dev_attr_temp3_beep.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002086
Guenter Roeckcc18da72015-04-01 10:03:01 -07002087 &sensor_dev_attr_temp4_input.dev_attr.attr, /* 21 */
2088 &sensor_dev_attr_temp5_input.dev_attr.attr,
2089 &sensor_dev_attr_temp6_input.dev_attr.attr,
Guenter Roeck87533772013-03-30 14:23:20 -07002090 NULL
Guenter Roeck4573acb2012-03-26 16:17:41 -07002091};
2092
Guenter Roeck87533772013-03-30 14:23:20 -07002093static const struct attribute_group it87_group_temp = {
2094 .attrs = it87_attributes_temp,
2095 .is_visible = it87_temp_is_visible,
Guenter Roeck161d8982012-12-19 22:17:01 +01002096};
2097
Guenter Roeckd3766842013-03-30 15:47:21 -07002098static umode_t it87_is_visible(struct kobject *kobj,
2099 struct attribute *attr, int index)
2100{
2101 struct device *dev = container_of(kobj, struct device, kobj);
2102 struct it87_data *data = dev_get_drvdata(dev);
2103
Guenter Roeck8638d0a2015-03-30 11:13:49 -07002104 if ((index == 2 || index == 3) && !data->has_vid)
Guenter Roeckd3766842013-03-30 15:47:21 -07002105 return 0;
2106
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002107 if (index > 3 && !(data->in_internal & BIT(index - 4)))
Guenter Roeckd3766842013-03-30 15:47:21 -07002108 return 0;
2109
2110 return attr->mode;
2111}
2112
Guenter Roeck4573acb2012-03-26 16:17:41 -07002113static struct attribute *it87_attributes[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02002114 &dev_attr_alarms.attr,
Jean Delvare3d30f9e2011-07-25 21:46:10 +02002115 &sensor_dev_attr_intrusion0_alarm.dev_attr.attr,
Guenter Roeck8638d0a2015-03-30 11:13:49 -07002116 &dev_attr_vrm.attr, /* 2 */
2117 &dev_attr_cpu0_vid.attr, /* 3 */
2118 &sensor_dev_attr_in3_label.dev_attr.attr, /* 4 .. 7 */
Guenter Roeckd3766842013-03-30 15:47:21 -07002119 &sensor_dev_attr_in7_label.dev_attr.attr,
2120 &sensor_dev_attr_in8_label.dev_attr.attr,
2121 &sensor_dev_attr_in9_label.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002122 NULL
2123};
2124
2125static const struct attribute_group it87_group = {
2126 .attrs = it87_attributes,
Guenter Roeckd3766842013-03-30 15:47:21 -07002127 .is_visible = it87_is_visible,
Jean Delvare87808be2006-09-24 21:17:13 +02002128};
2129
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002130static umode_t it87_fan_is_visible(struct kobject *kobj,
2131 struct attribute *attr, int index)
2132{
2133 struct device *dev = container_of(kobj, struct device, kobj);
2134 struct it87_data *data = dev_get_drvdata(dev);
2135 int i = index / 5; /* fan index */
2136 int a = index % 5; /* attribute index */
2137
2138 if (index >= 15) { /* fan 4..6 don't have divisor attributes */
2139 i = (index - 15) / 4 + 3;
2140 a = (index - 15) % 4;
2141 }
2142
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002143 if (!(data->has_fan & BIT(i)))
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002144 return 0;
2145
2146 if (a == 3) { /* beep */
2147 if (!data->has_beep)
2148 return 0;
2149 /* first fan beep attribute is writable */
2150 if (i == __ffs(data->has_fan))
2151 return attr->mode | S_IWUSR;
2152 }
2153
2154 if (a == 4 && has_16bit_fans(data)) /* divisor */
2155 return 0;
2156
2157 return attr->mode;
2158}
2159
2160static struct attribute *it87_attributes_fan[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02002161 &sensor_dev_attr_fan1_input.dev_attr.attr,
2162 &sensor_dev_attr_fan1_min.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01002163 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002164 &sensor_dev_attr_fan1_beep.dev_attr.attr, /* 3 */
2165 &sensor_dev_attr_fan1_div.dev_attr.attr, /* 4 */
2166
Jean Delvare87808be2006-09-24 21:17:13 +02002167 &sensor_dev_attr_fan2_input.dev_attr.attr,
2168 &sensor_dev_attr_fan2_min.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01002169 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002170 &sensor_dev_attr_fan2_beep.dev_attr.attr,
2171 &sensor_dev_attr_fan2_div.dev_attr.attr, /* 9 */
2172
Jean Delvare87808be2006-09-24 21:17:13 +02002173 &sensor_dev_attr_fan3_input.dev_attr.attr,
2174 &sensor_dev_attr_fan3_min.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002175 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002176 &sensor_dev_attr_fan3_beep.dev_attr.attr,
2177 &sensor_dev_attr_fan3_div.dev_attr.attr, /* 14 */
2178
2179 &sensor_dev_attr_fan4_input.dev_attr.attr, /* 15 */
Guenter Roecke1169ba2012-12-19 22:17:01 +01002180 &sensor_dev_attr_fan4_min.dev_attr.attr,
2181 &sensor_dev_attr_fan4_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002182 &sensor_dev_attr_fan4_beep.dev_attr.attr,
2183
2184 &sensor_dev_attr_fan5_input.dev_attr.attr, /* 19 */
Guenter Roecke1169ba2012-12-19 22:17:01 +01002185 &sensor_dev_attr_fan5_min.dev_attr.attr,
2186 &sensor_dev_attr_fan5_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002187 &sensor_dev_attr_fan5_beep.dev_attr.attr,
2188
2189 &sensor_dev_attr_fan6_input.dev_attr.attr, /* 23 */
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07002190 &sensor_dev_attr_fan6_min.dev_attr.attr,
2191 &sensor_dev_attr_fan6_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002192 &sensor_dev_attr_fan6_beep.dev_attr.attr,
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07002193 NULL
Jean Delvare723a0aa2010-03-05 22:17:16 +01002194};
2195
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002196static const struct attribute_group it87_group_fan = {
2197 .attrs = it87_attributes_fan,
2198 .is_visible = it87_fan_is_visible,
Guenter Roecke1169ba2012-12-19 22:17:01 +01002199};
Jean Delvare723a0aa2010-03-05 22:17:16 +01002200
Guenter Roeck5c391262013-03-30 15:02:12 -07002201static umode_t it87_pwm_is_visible(struct kobject *kobj,
2202 struct attribute *attr, int index)
Guenter Roeck60878bc2015-03-26 19:57:42 -07002203{
2204 struct device *dev = container_of(kobj, struct device, kobj);
2205 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeck5c391262013-03-30 15:02:12 -07002206 int i = index / 4; /* pwm index */
2207 int a = index % 4; /* attribute index */
Guenter Roeck60878bc2015-03-26 19:57:42 -07002208
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002209 if (!(data->has_pwm & BIT(i)))
Guenter Roeck5c391262013-03-30 15:02:12 -07002210 return 0;
2211
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002212 /* pwmX_auto_channels_temp is only writable if auto pwm is supported */
2213 if (a == 3 && (has_old_autopwm(data) || has_newer_autopwm(data)))
Guenter Roeck5c391262013-03-30 15:02:12 -07002214 return attr->mode | S_IWUSR;
2215
2216 /* pwm2_freq is writable if there are two pwm frequency selects */
2217 if (has_pwm_freq2(data) && i == 1 && a == 2)
Guenter Roeck60878bc2015-03-26 19:57:42 -07002218 return attr->mode | S_IWUSR;
2219
2220 return attr->mode;
2221}
2222
Guenter Roeck5c391262013-03-30 15:02:12 -07002223static struct attribute *it87_attributes_pwm[] = {
2224 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
2225 &sensor_dev_attr_pwm1.dev_attr.attr,
2226 &sensor_dev_attr_pwm1_freq.dev_attr.attr,
2227 &sensor_dev_attr_pwm1_auto_channels_temp.dev_attr.attr,
2228
2229 &sensor_dev_attr_pwm2_enable.dev_attr.attr,
2230 &sensor_dev_attr_pwm2.dev_attr.attr,
2231 &sensor_dev_attr_pwm2_freq.dev_attr.attr,
2232 &sensor_dev_attr_pwm2_auto_channels_temp.dev_attr.attr,
2233
2234 &sensor_dev_attr_pwm3_enable.dev_attr.attr,
2235 &sensor_dev_attr_pwm3.dev_attr.attr,
2236 &sensor_dev_attr_pwm3_freq.dev_attr.attr,
2237 &sensor_dev_attr_pwm3_auto_channels_temp.dev_attr.attr,
2238
2239 &sensor_dev_attr_pwm4_enable.dev_attr.attr,
2240 &sensor_dev_attr_pwm4.dev_attr.attr,
2241 &sensor_dev_attr_pwm4_freq.dev_attr.attr,
2242 &sensor_dev_attr_pwm4_auto_channels_temp.dev_attr.attr,
2243
2244 &sensor_dev_attr_pwm5_enable.dev_attr.attr,
2245 &sensor_dev_attr_pwm5.dev_attr.attr,
2246 &sensor_dev_attr_pwm5_freq.dev_attr.attr,
2247 &sensor_dev_attr_pwm5_auto_channels_temp.dev_attr.attr,
2248
2249 &sensor_dev_attr_pwm6_enable.dev_attr.attr,
2250 &sensor_dev_attr_pwm6.dev_attr.attr,
2251 &sensor_dev_attr_pwm6_freq.dev_attr.attr,
2252 &sensor_dev_attr_pwm6_auto_channels_temp.dev_attr.attr,
2253
2254 NULL
Jean Delvare723a0aa2010-03-05 22:17:16 +01002255};
2256
Guenter Roeck5c391262013-03-30 15:02:12 -07002257static const struct attribute_group it87_group_pwm = {
2258 .attrs = it87_attributes_pwm,
2259 .is_visible = it87_pwm_is_visible,
2260};
2261
2262static umode_t it87_auto_pwm_is_visible(struct kobject *kobj,
2263 struct attribute *attr, int index)
2264{
2265 struct device *dev = container_of(kobj, struct device, kobj);
2266 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002267 int i = index / 11; /* pwm index */
2268 int a = index % 11; /* attribute index */
2269
2270 if (index >= 33) { /* pwm 4..6 */
2271 i = (index - 33) / 6 + 3;
2272 a = (index - 33) % 6 + 4;
2273 }
Guenter Roeck5c391262013-03-30 15:02:12 -07002274
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002275 if (!(data->has_pwm & BIT(i)))
Guenter Roeck5c391262013-03-30 15:02:12 -07002276 return 0;
2277
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002278 if (has_newer_autopwm(data)) {
2279 if (a < 4) /* no auto point pwm */
2280 return 0;
2281 if (a == 8) /* no auto_point4 */
2282 return 0;
2283 }
2284 if (has_old_autopwm(data)) {
2285 if (a >= 9) /* no pwm_auto_start, pwm_auto_slope */
2286 return 0;
2287 }
2288
Guenter Roeck5c391262013-03-30 15:02:12 -07002289 return attr->mode;
2290}
2291
2292static struct attribute *it87_attributes_auto_pwm[] = {
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002293 &sensor_dev_attr_pwm1_auto_point1_pwm.dev_attr.attr,
2294 &sensor_dev_attr_pwm1_auto_point2_pwm.dev_attr.attr,
2295 &sensor_dev_attr_pwm1_auto_point3_pwm.dev_attr.attr,
2296 &sensor_dev_attr_pwm1_auto_point4_pwm.dev_attr.attr,
2297 &sensor_dev_attr_pwm1_auto_point1_temp.dev_attr.attr,
2298 &sensor_dev_attr_pwm1_auto_point1_temp_hyst.dev_attr.attr,
2299 &sensor_dev_attr_pwm1_auto_point2_temp.dev_attr.attr,
2300 &sensor_dev_attr_pwm1_auto_point3_temp.dev_attr.attr,
2301 &sensor_dev_attr_pwm1_auto_point4_temp.dev_attr.attr,
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002302 &sensor_dev_attr_pwm1_auto_start.dev_attr.attr,
2303 &sensor_dev_attr_pwm1_auto_slope.dev_attr.attr,
Guenter Roeck5c391262013-03-30 15:02:12 -07002304
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002305 &sensor_dev_attr_pwm2_auto_point1_pwm.dev_attr.attr, /* 11 */
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002306 &sensor_dev_attr_pwm2_auto_point2_pwm.dev_attr.attr,
2307 &sensor_dev_attr_pwm2_auto_point3_pwm.dev_attr.attr,
2308 &sensor_dev_attr_pwm2_auto_point4_pwm.dev_attr.attr,
2309 &sensor_dev_attr_pwm2_auto_point1_temp.dev_attr.attr,
2310 &sensor_dev_attr_pwm2_auto_point1_temp_hyst.dev_attr.attr,
2311 &sensor_dev_attr_pwm2_auto_point2_temp.dev_attr.attr,
2312 &sensor_dev_attr_pwm2_auto_point3_temp.dev_attr.attr,
2313 &sensor_dev_attr_pwm2_auto_point4_temp.dev_attr.attr,
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002314 &sensor_dev_attr_pwm2_auto_start.dev_attr.attr,
2315 &sensor_dev_attr_pwm2_auto_slope.dev_attr.attr,
Guenter Roeck5c391262013-03-30 15:02:12 -07002316
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002317 &sensor_dev_attr_pwm3_auto_point1_pwm.dev_attr.attr, /* 22 */
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002318 &sensor_dev_attr_pwm3_auto_point2_pwm.dev_attr.attr,
2319 &sensor_dev_attr_pwm3_auto_point3_pwm.dev_attr.attr,
2320 &sensor_dev_attr_pwm3_auto_point4_pwm.dev_attr.attr,
2321 &sensor_dev_attr_pwm3_auto_point1_temp.dev_attr.attr,
2322 &sensor_dev_attr_pwm3_auto_point1_temp_hyst.dev_attr.attr,
2323 &sensor_dev_attr_pwm3_auto_point2_temp.dev_attr.attr,
2324 &sensor_dev_attr_pwm3_auto_point3_temp.dev_attr.attr,
2325 &sensor_dev_attr_pwm3_auto_point4_temp.dev_attr.attr,
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002326 &sensor_dev_attr_pwm3_auto_start.dev_attr.attr,
2327 &sensor_dev_attr_pwm3_auto_slope.dev_attr.attr,
2328
2329 &sensor_dev_attr_pwm4_auto_point1_temp.dev_attr.attr, /* 33 */
2330 &sensor_dev_attr_pwm4_auto_point1_temp_hyst.dev_attr.attr,
2331 &sensor_dev_attr_pwm4_auto_point2_temp.dev_attr.attr,
2332 &sensor_dev_attr_pwm4_auto_point3_temp.dev_attr.attr,
2333 &sensor_dev_attr_pwm4_auto_start.dev_attr.attr,
2334 &sensor_dev_attr_pwm4_auto_slope.dev_attr.attr,
2335
2336 &sensor_dev_attr_pwm5_auto_point1_temp.dev_attr.attr,
2337 &sensor_dev_attr_pwm5_auto_point1_temp_hyst.dev_attr.attr,
2338 &sensor_dev_attr_pwm5_auto_point2_temp.dev_attr.attr,
2339 &sensor_dev_attr_pwm5_auto_point3_temp.dev_attr.attr,
2340 &sensor_dev_attr_pwm5_auto_start.dev_attr.attr,
2341 &sensor_dev_attr_pwm5_auto_slope.dev_attr.attr,
2342
2343 &sensor_dev_attr_pwm6_auto_point1_temp.dev_attr.attr,
2344 &sensor_dev_attr_pwm6_auto_point1_temp_hyst.dev_attr.attr,
2345 &sensor_dev_attr_pwm6_auto_point2_temp.dev_attr.attr,
2346 &sensor_dev_attr_pwm6_auto_point3_temp.dev_attr.attr,
2347 &sensor_dev_attr_pwm6_auto_start.dev_attr.attr,
2348 &sensor_dev_attr_pwm6_auto_slope.dev_attr.attr,
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002349
Guenter Roeck5c391262013-03-30 15:02:12 -07002350 NULL,
2351};
2352
2353static const struct attribute_group it87_group_auto_pwm = {
2354 .attrs = it87_attributes_auto_pwm,
2355 .is_visible = it87_auto_pwm_is_visible,
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002356};
2357
Jean Delvare2d8672c2005-07-19 23:56:35 +02002358/* SuperIO detection - will change isa_address if a chip is found */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002359static int __init it87_find(int sioaddr, unsigned short *address,
2360 struct it87_sio_data *sio_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361{
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +02002362 int err;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002363 u16 chip_type;
Jean Delvare98dd22c2008-10-09 15:33:58 +02002364 const char *board_vendor, *board_name;
Guenter Roeckf83a9cb2015-03-31 09:31:34 -07002365 const struct it87_devices *config;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002367 err = superio_enter(sioaddr);
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +02002368 if (err)
2369 return err;
2370
2371 err = -ENODEV;
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002372 chip_type = force_id ? force_id : superio_inw(sioaddr, DEVID);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002373
2374 switch (chip_type) {
2375 case IT8705F_DEVID:
2376 sio_data->type = it87;
2377 break;
2378 case IT8712F_DEVID:
2379 sio_data->type = it8712;
2380 break;
2381 case IT8716F_DEVID:
2382 case IT8726F_DEVID:
2383 sio_data->type = it8716;
2384 break;
2385 case IT8718F_DEVID:
2386 sio_data->type = it8718;
2387 break;
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +01002388 case IT8720F_DEVID:
2389 sio_data->type = it8720;
2390 break;
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002391 case IT8721F_DEVID:
2392 sio_data->type = it8721;
2393 break;
Jean Delvare16b5dda2012-01-16 22:51:48 +01002394 case IT8728F_DEVID:
2395 sio_data->type = it8728;
2396 break;
Justin Maggardead80802015-08-05 12:53:08 -07002397 case IT8732F_DEVID:
2398 sio_data->type = it8732;
2399 break;
Guenter Roeckb0636702012-09-07 17:34:41 -06002400 case IT8771E_DEVID:
2401 sio_data->type = it8771;
2402 break;
2403 case IT8772E_DEVID:
2404 sio_data->type = it8772;
2405 break;
Guenter Roeck7bc32d22015-01-17 14:10:24 -08002406 case IT8781F_DEVID:
2407 sio_data->type = it8781;
2408 break;
Guenter Roeck0531d982012-03-02 11:46:44 -08002409 case IT8782F_DEVID:
2410 sio_data->type = it8782;
2411 break;
2412 case IT8783E_DEVID:
2413 sio_data->type = it8783;
2414 break;
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +01002415 case IT8786E_DEVID:
2416 sio_data->type = it8786;
2417 break;
Guenter Roeck4ee07152015-03-25 23:26:28 -07002418 case IT8790E_DEVID:
2419 sio_data->type = it8790;
2420 break;
Rudolf Marek7183ae82014-04-04 18:01:35 +02002421 case IT8603E_DEVID:
Rudolf Marek574e9bd2014-04-04 18:01:35 +02002422 case IT8623E_DEVID:
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002423 sio_data->type = it8603;
2424 break;
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002425 case IT8620E_DEVID:
2426 sio_data->type = it8620;
2427 break;
Guenter Roeck71a9c232016-01-18 00:35:58 -08002428 case IT8628E_DEVID:
2429 sio_data->type = it8628;
2430 break;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002431 case 0xffff: /* No device at all */
2432 goto exit;
2433 default:
Joe Perchesa8ca1032011-01-12 21:55:10 +01002434 pr_debug("Unsupported chip (DEVID=0x%x)\n", chip_type);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002435 goto exit;
2436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002438 superio_select(sioaddr, PME);
2439 if (!(superio_inb(sioaddr, IT87_ACT_REG) & 0x01)) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002440 pr_info("Device not activated, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 goto exit;
2442 }
2443
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002444 *address = superio_inw(sioaddr, IT87_BASE_REG) & ~(IT87_EXTENT - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 if (*address == 0) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002446 pr_info("Base address not set, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 goto exit;
2448 }
2449
2450 err = 0;
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002451 sio_data->revision = superio_inb(sioaddr, DEVREV) & 0x0f;
Guenter Roeckfaf392f2015-03-26 08:36:18 -07002452 pr_info("Found IT%04x%s chip at 0x%x, revision %d\n", chip_type,
2453 it87_devices[sio_data->type].suffix,
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +01002454 *address, sio_data->revision);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
Guenter Roeckf83a9cb2015-03-31 09:31:34 -07002456 config = &it87_devices[sio_data->type];
2457
Guenter Roeck7f5726c2015-03-26 08:49:18 -07002458 /* in7 (VSB or VCCH5V) is always internal on some chips */
Guenter Roeckf83a9cb2015-03-31 09:31:34 -07002459 if (has_in7_internal(config))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002460 sio_data->internal |= BIT(1);
Guenter Roeck7f5726c2015-03-26 08:49:18 -07002461
Jean Delvare738e5e02010-08-14 21:08:50 +02002462 /* in8 (Vbat) is always internal */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002463 sio_data->internal |= BIT(2);
Guenter Roeck7f5726c2015-03-26 08:49:18 -07002464
Guenter Roeck73055402015-03-26 09:16:32 -07002465 /* in9 (AVCC3), always internal if supported */
2466 if (has_avcc3(config))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002467 sio_data->internal |= BIT(3); /* in9 is AVCC */
Guenter Roeck73055402015-03-26 09:16:32 -07002468 else
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002469 sio_data->skip_in |= BIT(9);
Jean Delvare738e5e02010-08-14 21:08:50 +02002470
Guenter Roeck36c4d982015-03-26 18:18:19 -07002471 if (!has_six_pwm(config))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002472 sio_data->skip_pwm |= BIT(3) | BIT(4) | BIT(5);
Guenter Roeck36c4d982015-03-26 18:18:19 -07002473
Guenter Roeckf83a9cb2015-03-31 09:31:34 -07002474 if (!has_vid(config))
Jean Delvare895ff262009-12-09 20:35:47 +01002475 sio_data->skip_vid = 1;
Jean Delvared9b327c2010-03-05 22:17:17 +01002476
Guenter Roeck32dd7c42015-02-12 07:40:23 -08002477 /* Read GPIO config and VID value from LDN 7 (GPIO) */
2478 if (sio_data->type == it87) {
Jean Delvared9b327c2010-03-05 22:17:17 +01002479 /* The IT8705F has a different LD number for GPIO */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002480 superio_select(sioaddr, 5);
2481 sio_data->beep_pin = superio_inb(sioaddr,
2482 IT87_SIO_BEEP_PIN_REG) & 0x3f;
Guenter Roeck0531d982012-03-02 11:46:44 -08002483 } else if (sio_data->type == it8783) {
Guenter Roeck088ce2a2013-03-13 16:40:39 -07002484 int reg25, reg27, reg2a, reg2c, regef;
Guenter Roeck0531d982012-03-02 11:46:44 -08002485
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002486 superio_select(sioaddr, GPIO);
Guenter Roeck0531d982012-03-02 11:46:44 -08002487
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002488 reg25 = superio_inb(sioaddr, IT87_SIO_GPIO1_REG);
2489 reg27 = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
2490 reg2a = superio_inb(sioaddr, IT87_SIO_PINX1_REG);
2491 reg2c = superio_inb(sioaddr, IT87_SIO_PINX2_REG);
2492 regef = superio_inb(sioaddr, IT87_SIO_SPI_REG);
Guenter Roeck0531d982012-03-02 11:46:44 -08002493
Guenter Roeck0531d982012-03-02 11:46:44 -08002494 /* Check if fan3 is there or not */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002495 if ((reg27 & BIT(0)) || !(reg2c & BIT(2)))
2496 sio_data->skip_fan |= BIT(2);
Guenter Roeckc9620242015-04-04 09:05:57 -07002497 if ((reg25 & BIT(4)) ||
2498 (!(reg2a & BIT(1)) && (regef & BIT(0))))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002499 sio_data->skip_pwm |= BIT(2);
Guenter Roeck0531d982012-03-02 11:46:44 -08002500
2501 /* Check if fan2 is there or not */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002502 if (reg27 & BIT(7))
2503 sio_data->skip_fan |= BIT(1);
2504 if (reg27 & BIT(3))
2505 sio_data->skip_pwm |= BIT(1);
Guenter Roeck0531d982012-03-02 11:46:44 -08002506
2507 /* VIN5 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002508 if ((reg27 & BIT(0)) || (reg2c & BIT(2)))
2509 sio_data->skip_in |= BIT(5); /* No VIN5 */
Guenter Roeck0531d982012-03-02 11:46:44 -08002510
2511 /* VIN6 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002512 if (reg27 & BIT(1))
2513 sio_data->skip_in |= BIT(6); /* No VIN6 */
Guenter Roeck0531d982012-03-02 11:46:44 -08002514
2515 /*
2516 * VIN7
2517 * Does not depend on bit 2 of Reg2C, contrary to datasheet.
2518 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002519 if (reg27 & BIT(2)) {
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002520 /*
2521 * The data sheet is a bit unclear regarding the
2522 * internal voltage divider for VCCH5V. It says
2523 * "This bit enables and switches VIN7 (pin 91) to the
2524 * internal voltage divider for VCCH5V".
2525 * This is different to other chips, where the internal
2526 * voltage divider would connect VIN7 to an internal
2527 * voltage source. Maybe that is the case here as well.
2528 *
2529 * Since we don't know for sure, re-route it if that is
2530 * not the case, and ask the user to report if the
2531 * resulting voltage is sane.
2532 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002533 if (!(reg2c & BIT(1))) {
2534 reg2c |= BIT(1);
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002535 superio_outb(sioaddr, IT87_SIO_PINX2_REG,
2536 reg2c);
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002537 pr_notice("Routing internal VCCH5V to in7.\n");
2538 }
2539 pr_notice("in7 routed to internal voltage divider, with external pin disabled.\n");
2540 pr_notice("Please report if it displays a reasonable voltage.\n");
2541 }
Guenter Roeck0531d982012-03-02 11:46:44 -08002542
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002543 if (reg2c & BIT(0))
2544 sio_data->internal |= BIT(0);
2545 if (reg2c & BIT(1))
2546 sio_data->internal |= BIT(1);
Guenter Roeck0531d982012-03-02 11:46:44 -08002547
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002548 sio_data->beep_pin = superio_inb(sioaddr,
2549 IT87_SIO_BEEP_PIN_REG) & 0x3f;
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002550 } else if (sio_data->type == it8603) {
2551 int reg27, reg29;
Guenter Roeck0531d982012-03-02 11:46:44 -08002552
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002553 superio_select(sioaddr, GPIO);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002554
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002555 reg27 = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002556
2557 /* Check if fan3 is there or not */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002558 if (reg27 & BIT(6))
2559 sio_data->skip_pwm |= BIT(2);
2560 if (reg27 & BIT(7))
2561 sio_data->skip_fan |= BIT(2);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002562
2563 /* Check if fan2 is there or not */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002564 reg29 = superio_inb(sioaddr, IT87_SIO_GPIO5_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002565 if (reg29 & BIT(1))
2566 sio_data->skip_pwm |= BIT(1);
2567 if (reg29 & BIT(2))
2568 sio_data->skip_fan |= BIT(1);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002569
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002570 sio_data->skip_in |= BIT(5); /* No VIN5 */
2571 sio_data->skip_in |= BIT(6); /* No VIN6 */
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002572
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002573 sio_data->beep_pin = superio_inb(sioaddr,
2574 IT87_SIO_BEEP_PIN_REG) & 0x3f;
Guenter Roeck71a9c232016-01-18 00:35:58 -08002575 } else if (sio_data->type == it8620 || sio_data->type == it8628) {
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002576 int reg;
2577
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002578 superio_select(sioaddr, GPIO);
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002579
Guenter Roeck36c4d982015-03-26 18:18:19 -07002580 /* Check for pwm5 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002581 reg = superio_inb(sioaddr, IT87_SIO_GPIO1_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002582 if (reg & BIT(6))
2583 sio_data->skip_pwm |= BIT(4);
Guenter Roeck36c4d982015-03-26 18:18:19 -07002584
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002585 /* Check for fan4, fan5 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002586 reg = superio_inb(sioaddr, IT87_SIO_GPIO2_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002587 if (!(reg & BIT(5)))
2588 sio_data->skip_fan |= BIT(3);
2589 if (!(reg & BIT(4)))
2590 sio_data->skip_fan |= BIT(4);
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002591
2592 /* Check for pwm3, fan3 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002593 reg = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002594 if (reg & BIT(6))
2595 sio_data->skip_pwm |= BIT(2);
2596 if (reg & BIT(7))
2597 sio_data->skip_fan |= BIT(2);
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002598
Guenter Roeck36c4d982015-03-26 18:18:19 -07002599 /* Check for pwm4 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002600 reg = superio_inb(sioaddr, IT87_SIO_GPIO4_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002601 if (!(reg & BIT(2)))
2602 sio_data->skip_pwm |= BIT(3);
Guenter Roeck36c4d982015-03-26 18:18:19 -07002603
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002604 /* Check for pwm2, fan2 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002605 reg = superio_inb(sioaddr, IT87_SIO_GPIO5_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002606 if (reg & BIT(1))
2607 sio_data->skip_pwm |= BIT(1);
2608 if (reg & BIT(2))
2609 sio_data->skip_fan |= BIT(1);
Guenter Roeck36c4d982015-03-26 18:18:19 -07002610 /* Check for pwm6, fan6 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002611 if (!(reg & BIT(7))) {
2612 sio_data->skip_pwm |= BIT(5);
2613 sio_data->skip_fan |= BIT(5);
Guenter Roeck36c4d982015-03-26 18:18:19 -07002614 }
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002615
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002616 sio_data->beep_pin = superio_inb(sioaddr,
2617 IT87_SIO_BEEP_PIN_REG) & 0x3f;
Jean Delvare895ff262009-12-09 20:35:47 +01002618 } else {
Jean Delvare87673dd2006-08-28 14:37:19 +02002619 int reg;
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002620 bool uart6;
Jean Delvare87673dd2006-08-28 14:37:19 +02002621
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002622 superio_select(sioaddr, GPIO);
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002623
Guenter Roecka0df9262015-04-05 16:51:36 -07002624 /* Check for fan4, fan5 */
2625 if (has_five_fans(config)) {
2626 reg = superio_inb(sioaddr, IT87_SIO_GPIO2_REG);
2627 switch (sio_data->type) {
2628 case it8718:
2629 if (reg & BIT(5))
2630 sio_data->skip_fan |= BIT(3);
2631 if (reg & BIT(4))
2632 sio_data->skip_fan |= BIT(4);
2633 break;
2634 case it8720:
2635 case it8721:
2636 case it8728:
2637 if (!(reg & BIT(5)))
2638 sio_data->skip_fan |= BIT(3);
2639 if (!(reg & BIT(4)))
2640 sio_data->skip_fan |= BIT(4);
2641 break;
2642 default:
2643 break;
2644 }
2645 }
2646
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002647 reg = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
Guenter Roeck32dd7c42015-02-12 07:40:23 -08002648 if (!sio_data->skip_vid) {
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002649 /* We need at least 4 VID pins */
2650 if (reg & 0x0f) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002651 pr_info("VID is disabled (pins used for GPIO)\n");
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002652 sio_data->skip_vid = 1;
2653 }
Jean Delvare895ff262009-12-09 20:35:47 +01002654 }
2655
Jean Delvare591ec652009-12-09 20:35:48 +01002656 /* Check if fan3 is there or not */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002657 if (reg & BIT(6))
2658 sio_data->skip_pwm |= BIT(2);
2659 if (reg & BIT(7))
2660 sio_data->skip_fan |= BIT(2);
Jean Delvare591ec652009-12-09 20:35:48 +01002661
2662 /* Check if fan2 is there or not */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002663 reg = superio_inb(sioaddr, IT87_SIO_GPIO5_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002664 if (reg & BIT(1))
2665 sio_data->skip_pwm |= BIT(1);
2666 if (reg & BIT(2))
2667 sio_data->skip_fan |= BIT(1);
Jean Delvare591ec652009-12-09 20:35:48 +01002668
Guenter Roeckc9620242015-04-04 09:05:57 -07002669 if ((sio_data->type == it8718 || sio_data->type == it8720) &&
2670 !(sio_data->skip_vid))
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002671 sio_data->vid_value = superio_inb(sioaddr,
2672 IT87_SIO_VID_REG);
Jean Delvare87673dd2006-08-28 14:37:19 +02002673
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002674 reg = superio_inb(sioaddr, IT87_SIO_PINX2_REG);
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002675
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002676 uart6 = sio_data->type == it8782 && (reg & BIT(2));
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002677
Jean Delvare436cad22010-07-09 16:22:48 +02002678 /*
2679 * The IT8720F has no VIN7 pin, so VCCH should always be
2680 * routed internally to VIN7 with an internal divider.
2681 * Curiously, there still is a configuration bit to control
2682 * this, which means it can be set incorrectly. And even
2683 * more curiously, many boards out there are improperly
2684 * configured, even though the IT8720F datasheet claims
2685 * that the internal routing of VCCH to VIN7 is the default
2686 * setting. So we force the internal routing in this case.
Guenter Roeck0531d982012-03-02 11:46:44 -08002687 *
2688 * On IT8782F, VIN7 is multiplexed with one of the UART6 pins.
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002689 * If UART6 is enabled, re-route VIN7 to the internal divider
2690 * if that is not already the case.
Jean Delvare436cad22010-07-09 16:22:48 +02002691 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002692 if ((sio_data->type == it8720 || uart6) && !(reg & BIT(1))) {
2693 reg |= BIT(1);
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002694 superio_outb(sioaddr, IT87_SIO_PINX2_REG, reg);
Joe Perchesa8ca1032011-01-12 21:55:10 +01002695 pr_notice("Routing internal VCCH to in7\n");
Jean Delvare436cad22010-07-09 16:22:48 +02002696 }
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002697 if (reg & BIT(0))
2698 sio_data->internal |= BIT(0);
2699 if (reg & BIT(1))
2700 sio_data->internal |= BIT(1);
Jean Delvared9b327c2010-03-05 22:17:17 +01002701
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002702 /*
2703 * On IT8782F, UART6 pins overlap with VIN5, VIN6, and VIN7.
2704 * While VIN7 can be routed to the internal voltage divider,
2705 * VIN5 and VIN6 are not available if UART6 is enabled.
Guenter Roeck4573acb2012-03-26 16:17:41 -07002706 *
2707 * Also, temp3 is not available if UART6 is enabled and TEMPIN3
2708 * is the temperature source. Since we can not read the
2709 * temperature source here, skip_temp is preliminary.
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002710 */
Guenter Roeck4573acb2012-03-26 16:17:41 -07002711 if (uart6) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002712 sio_data->skip_in |= BIT(5) | BIT(6);
2713 sio_data->skip_temp |= BIT(2);
Guenter Roeck4573acb2012-03-26 16:17:41 -07002714 }
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002715
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002716 sio_data->beep_pin = superio_inb(sioaddr,
2717 IT87_SIO_BEEP_PIN_REG) & 0x3f;
Jean Delvare87673dd2006-08-28 14:37:19 +02002718 }
Jean Delvared9b327c2010-03-05 22:17:17 +01002719 if (sio_data->beep_pin)
Joe Perchesa8ca1032011-01-12 21:55:10 +01002720 pr_info("Beeping is supported\n");
Jean Delvare87673dd2006-08-28 14:37:19 +02002721
Jean Delvare98dd22c2008-10-09 15:33:58 +02002722 /* Disable specific features based on DMI strings */
2723 board_vendor = dmi_get_system_info(DMI_BOARD_VENDOR);
2724 board_name = dmi_get_system_info(DMI_BOARD_NAME);
2725 if (board_vendor && board_name) {
Guenter Roeckc9620242015-04-04 09:05:57 -07002726 if (strcmp(board_vendor, "nVIDIA") == 0 &&
2727 strcmp(board_name, "FN68PT") == 0) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002728 /*
2729 * On the Shuttle SN68PT, FAN_CTL2 is apparently not
2730 * connected to a fan, but to something else. One user
2731 * has reported instant system power-off when changing
2732 * the PWM2 duty cycle, so we disable it.
2733 * I use the board name string as the trigger in case
2734 * the same board is ever used in other systems.
2735 */
Joe Perchesa8ca1032011-01-12 21:55:10 +01002736 pr_info("Disabling pwm2 due to hardware constraints\n");
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002737 sio_data->skip_pwm = BIT(1);
Jean Delvare98dd22c2008-10-09 15:33:58 +02002738 }
2739 }
2740
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741exit:
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002742 superio_exit(sioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 return err;
2744}
2745
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002746/* Called when we have found a new IT87. */
2747static void it87_init_device(struct platform_device *pdev)
2748{
2749 struct it87_sio_data *sio_data = dev_get_platdata(&pdev->dev);
2750 struct it87_data *data = platform_get_drvdata(pdev);
2751 int tmp, i;
2752 u8 mask;
2753
2754 /*
2755 * For each PWM channel:
2756 * - If it is in automatic mode, setting to manual mode should set
2757 * the fan to full speed by default.
2758 * - If it is in manual mode, we need a mapping to temperature
2759 * channels to use when later setting to automatic mode later.
2760 * Use a 1:1 mapping by default (we are clueless.)
2761 * In both cases, the value can (and should) be changed by the user
2762 * prior to switching to a different mode.
2763 * Note that this is no longer needed for the IT8721F and later, as
2764 * these have separate registers for the temperature mapping and the
2765 * manual duty cycle.
2766 */
Guenter Roeck23100482015-04-02 08:23:45 -07002767 for (i = 0; i < NUM_AUTO_PWM; i++) {
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002768 data->pwm_temp_map[i] = i;
2769 data->pwm_duty[i] = 0x7f; /* Full speed */
2770 data->auto_pwm[i][3] = 0x7f; /* Full speed, hard-coded */
2771 }
2772
2773 /*
2774 * Some chips seem to have default value 0xff for all limit
2775 * registers. For low voltage limits it makes no sense and triggers
2776 * alarms, so change to 0 instead. For high temperature limits, it
2777 * means -1 degree C, which surprisingly doesn't trigger an alarm,
2778 * but is still confusing, so change to 127 degrees C.
2779 */
Guenter Roeck23100482015-04-02 08:23:45 -07002780 for (i = 0; i < NUM_VIN_LIMIT; i++) {
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002781 tmp = it87_read_value(data, IT87_REG_VIN_MIN(i));
2782 if (tmp == 0xff)
2783 it87_write_value(data, IT87_REG_VIN_MIN(i), 0);
2784 }
Guenter Roeck23100482015-04-02 08:23:45 -07002785 for (i = 0; i < NUM_TEMP_LIMIT; i++) {
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002786 tmp = it87_read_value(data, IT87_REG_TEMP_HIGH(i));
2787 if (tmp == 0xff)
2788 it87_write_value(data, IT87_REG_TEMP_HIGH(i), 127);
2789 }
2790
2791 /*
2792 * Temperature channels are not forcibly enabled, as they can be
2793 * set to two different sensor types and we can't guess which one
2794 * is correct for a given system. These channels can be enabled at
2795 * run-time through the temp{1-3}_type sysfs accessors if needed.
2796 */
2797
2798 /* Check if voltage monitors are reset manually or by some reason */
2799 tmp = it87_read_value(data, IT87_REG_VIN_ENABLE);
2800 if ((tmp & 0xff) == 0) {
2801 /* Enable all voltage monitors */
2802 it87_write_value(data, IT87_REG_VIN_ENABLE, 0xff);
2803 }
2804
2805 /* Check if tachometers are reset manually or by some reason */
2806 mask = 0x70 & ~(sio_data->skip_fan << 4);
2807 data->fan_main_ctrl = it87_read_value(data, IT87_REG_FAN_MAIN_CTRL);
2808 if ((data->fan_main_ctrl & mask) == 0) {
2809 /* Enable all fan tachometers */
2810 data->fan_main_ctrl |= mask;
2811 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
2812 data->fan_main_ctrl);
2813 }
2814 data->has_fan = (data->fan_main_ctrl >> 4) & 0x07;
2815
2816 tmp = it87_read_value(data, IT87_REG_FAN_16BIT);
2817
2818 /* Set tachometers to 16-bit mode if needed */
2819 if (has_fan16_config(data)) {
2820 if (~tmp & 0x07 & data->has_fan) {
2821 dev_dbg(&pdev->dev,
2822 "Setting fan1-3 to 16-bit mode\n");
2823 it87_write_value(data, IT87_REG_FAN_16BIT,
2824 tmp | 0x07);
2825 }
2826 }
2827
2828 /* Check for additional fans */
2829 if (has_five_fans(data)) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002830 if (tmp & BIT(4))
2831 data->has_fan |= BIT(3); /* fan4 enabled */
2832 if (tmp & BIT(5))
2833 data->has_fan |= BIT(4); /* fan5 enabled */
2834 if (has_six_fans(data) && (tmp & BIT(2)))
2835 data->has_fan |= BIT(5); /* fan6 enabled */
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002836 }
2837
2838 /* Fan input pins may be used for alternative functions */
2839 data->has_fan &= ~sio_data->skip_fan;
2840
2841 /* Check if pwm5, pwm6 are enabled */
2842 if (has_six_pwm(data)) {
2843 /* The following code may be IT8620E specific */
2844 tmp = it87_read_value(data, IT87_REG_FAN_DIV);
2845 if ((tmp & 0xc0) == 0xc0)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002846 sio_data->skip_pwm |= BIT(4);
2847 if (!(tmp & BIT(3)))
2848 sio_data->skip_pwm |= BIT(5);
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002849 }
2850
2851 /* Start monitoring */
2852 it87_write_value(data, IT87_REG_CONFIG,
2853 (it87_read_value(data, IT87_REG_CONFIG) & 0x3e)
2854 | (update_vbat ? 0x41 : 0x01));
2855}
2856
2857/* Return 1 if and only if the PWM interface is safe to use */
2858static int it87_check_pwm(struct device *dev)
2859{
2860 struct it87_data *data = dev_get_drvdata(dev);
2861 /*
2862 * Some BIOSes fail to correctly configure the IT87 fans. All fans off
2863 * and polarity set to active low is sign that this is the case so we
2864 * disable pwm control to protect the user.
2865 */
2866 int tmp = it87_read_value(data, IT87_REG_FAN_CTL);
2867
2868 if ((tmp & 0x87) == 0) {
2869 if (fix_pwm_polarity) {
2870 /*
2871 * The user asks us to attempt a chip reconfiguration.
2872 * This means switching to active high polarity and
2873 * inverting all fan speed values.
2874 */
2875 int i;
2876 u8 pwm[3];
2877
Guenter Roeck23100482015-04-02 08:23:45 -07002878 for (i = 0; i < ARRAY_SIZE(pwm); i++)
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002879 pwm[i] = it87_read_value(data,
2880 IT87_REG_PWM[i]);
2881
2882 /*
2883 * If any fan is in automatic pwm mode, the polarity
2884 * might be correct, as suspicious as it seems, so we
2885 * better don't change anything (but still disable the
2886 * PWM interface).
2887 */
2888 if (!((pwm[0] | pwm[1] | pwm[2]) & 0x80)) {
2889 dev_info(dev,
2890 "Reconfiguring PWM to active high polarity\n");
2891 it87_write_value(data, IT87_REG_FAN_CTL,
2892 tmp | 0x87);
2893 for (i = 0; i < 3; i++)
2894 it87_write_value(data,
2895 IT87_REG_PWM[i],
2896 0x7f & ~pwm[i]);
2897 return 1;
2898 }
2899
2900 dev_info(dev,
2901 "PWM configuration is too broken to be fixed\n");
2902 }
2903
2904 dev_info(dev,
2905 "Detected broken BIOS defaults, disabling PWM interface\n");
2906 return 0;
2907 } else if (fix_pwm_polarity) {
2908 dev_info(dev,
2909 "PWM configuration looks sane, won't touch\n");
2910 }
2911
2912 return 1;
2913}
2914
Bill Pemberton6c931ae2012-11-19 13:22:35 -05002915static int it87_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 struct it87_data *data;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002918 struct resource *res;
2919 struct device *dev = &pdev->dev;
Jingoo Hana8b3a3a2013-07-30 17:13:06 +09002920 struct it87_sio_data *sio_data = dev_get_platdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 int enable_pwm_interface;
Guenter Roeck8638d0a2015-03-30 11:13:49 -07002922 struct device *hwmon_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002924 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
Guenter Roeck62a1d052012-03-24 21:54:41 -07002925 if (!devm_request_region(&pdev->dev, res->start, IT87_EC_EXTENT,
2926 DRVNAME)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002927 dev_err(dev, "Failed to request region 0x%lx-0x%lx\n",
2928 (unsigned long)res->start,
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05002929 (unsigned long)(res->start + IT87_EC_EXTENT - 1));
Guenter Roeck62a1d052012-03-24 21:54:41 -07002930 return -EBUSY;
Jean Delvare8e9afcb2006-12-12 18:18:28 +01002931 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932
Guenter Roeck62a1d052012-03-24 21:54:41 -07002933 data = devm_kzalloc(&pdev->dev, sizeof(struct it87_data), GFP_KERNEL);
2934 if (!data)
2935 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002937 data->addr = res->start;
2938 data->type = sio_data->type;
Guenter Roeck483db432012-12-19 22:17:02 +01002939 data->features = it87_devices[sio_data->type].features;
Guenter Roeck5d8d2f22012-12-19 22:17:02 +01002940 data->peci_mask = it87_devices[sio_data->type].peci_mask;
Guenter Roeck19529782012-12-19 22:17:02 +01002941 data->old_peci_mask = it87_devices[sio_data->type].old_peci_mask;
Guenter Roeck483db432012-12-19 22:17:02 +01002942 /*
2943 * IT8705F Datasheet 0.4.1, 3h == Version G.
2944 * IT8712F Datasheet 0.9.1, section 8.3.5 indicates 8h == Version J.
2945 * These are the first revisions with 16-bit tachometer support.
2946 */
2947 switch (data->type) {
2948 case it87:
2949 if (sio_data->revision >= 0x03) {
2950 data->features &= ~FEAT_OLD_AUTOPWM;
Guenter Roeck9faf28c2015-02-12 07:11:38 -08002951 data->features |= FEAT_FAN16_CONFIG | FEAT_16BIT_FANS;
Guenter Roeck483db432012-12-19 22:17:02 +01002952 }
2953 break;
2954 case it8712:
2955 if (sio_data->revision >= 0x08) {
2956 data->features &= ~FEAT_OLD_AUTOPWM;
Guenter Roeck9faf28c2015-02-12 07:11:38 -08002957 data->features |= FEAT_FAN16_CONFIG | FEAT_16BIT_FANS |
2958 FEAT_FIVE_FANS;
Guenter Roeck483db432012-12-19 22:17:02 +01002959 }
2960 break;
2961 default:
2962 break;
2963 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964
2965 /* Now, we do the remaining detection. */
Guenter Roeckc9620242015-04-04 09:05:57 -07002966 if ((it87_read_value(data, IT87_REG_CONFIG) & 0x80) ||
2967 it87_read_value(data, IT87_REG_CHIPID) != 0x90)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002968 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002970 platform_set_drvdata(pdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971
Ingo Molnar9a61bf62006-01-18 23:19:26 +01002972 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 /* Check PWM configuration */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002975 enable_pwm_interface = it87_check_pwm(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002977 /* Starting with IT8721F, we handle scaling of internal voltages */
Jean Delvare16b5dda2012-01-16 22:51:48 +01002978 if (has_12mv_adc(data)) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002979 if (sio_data->internal & BIT(0))
2980 data->in_scaled |= BIT(3); /* in3 is AVCC */
2981 if (sio_data->internal & BIT(1))
2982 data->in_scaled |= BIT(7); /* in7 is VSB */
2983 if (sio_data->internal & BIT(2))
2984 data->in_scaled |= BIT(8); /* in8 is Vbat */
2985 if (sio_data->internal & BIT(3))
2986 data->in_scaled |= BIT(9); /* in9 is AVCC */
Guenter Roeck7bc32d22015-01-17 14:10:24 -08002987 } else if (sio_data->type == it8781 || sio_data->type == it8782 ||
2988 sio_data->type == it8783) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002989 if (sio_data->internal & BIT(0))
2990 data->in_scaled |= BIT(3); /* in3 is VCC5V */
2991 if (sio_data->internal & BIT(1))
2992 data->in_scaled |= BIT(7); /* in7 is VCCH5V */
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002993 }
2994
Guenter Roeck4573acb2012-03-26 16:17:41 -07002995 data->has_temp = 0x07;
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002996 if (sio_data->skip_temp & BIT(2)) {
Guenter Roeckc9620242015-04-04 09:05:57 -07002997 if (sio_data->type == it8782 &&
2998 !(it87_read_value(data, IT87_REG_TEMP_EXTRA) & 0x80))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002999 data->has_temp &= ~BIT(2);
Guenter Roeck4573acb2012-03-26 16:17:41 -07003000 }
3001
Guenter Roeckd3766842013-03-30 15:47:21 -07003002 data->in_internal = sio_data->internal;
Guenter Roeck52929712013-03-30 14:00:08 -07003003 data->has_in = 0x3ff & ~sio_data->skip_in;
3004
Guenter Roeckcc18da72015-04-01 10:03:01 -07003005 if (has_six_temp(data)) {
3006 u8 reg = it87_read_value(data, IT87_REG_TEMP456_ENABLE);
3007
Guenter Roeckf838aa22015-04-01 20:09:36 -07003008 /* Check for additional temperature sensors */
Guenter Roeckcc18da72015-04-01 10:03:01 -07003009 if ((reg & 0x03) >= 0x02)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003010 data->has_temp |= BIT(3);
Guenter Roeckcc18da72015-04-01 10:03:01 -07003011 if (((reg >> 2) & 0x03) >= 0x02)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003012 data->has_temp |= BIT(4);
Guenter Roeckcc18da72015-04-01 10:03:01 -07003013 if (((reg >> 4) & 0x03) >= 0x02)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003014 data->has_temp |= BIT(5);
Guenter Roeckf838aa22015-04-01 20:09:36 -07003015
3016 /* Check for additional voltage sensors */
3017 if ((reg & 0x03) == 0x01)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003018 data->has_in |= BIT(10);
Guenter Roeckf838aa22015-04-01 20:09:36 -07003019 if (((reg >> 2) & 0x03) == 0x01)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003020 data->has_in |= BIT(11);
Guenter Roeckf838aa22015-04-01 20:09:36 -07003021 if (((reg >> 4) & 0x03) == 0x01)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003022 data->has_in |= BIT(12);
Guenter Roeckcc18da72015-04-01 10:03:01 -07003023 }
3024
Guenter Roeck52929712013-03-30 14:00:08 -07003025 data->has_beep = !!sio_data->beep_pin;
3026
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 /* Initialize the IT87 chip */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003028 it87_init_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029
Guenter Roeckd3766842013-03-30 15:47:21 -07003030 if (!sio_data->skip_vid) {
3031 data->has_vid = true;
3032 data->vrm = vid_which_vrm();
3033 /* VID reading from Super-I/O config space if available */
3034 data->vid = sio_data->vid_value;
3035 }
3036
Guenter Roeck8638d0a2015-03-30 11:13:49 -07003037 /* Prepare for sysfs hooks */
3038 data->groups[0] = &it87_group;
3039 data->groups[1] = &it87_group_in;
3040 data->groups[2] = &it87_group_temp;
3041 data->groups[3] = &it87_group_fan;
Jean Delvare17d648b2006-08-28 14:23:46 +02003042
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 if (enable_pwm_interface) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003044 data->has_pwm = BIT(ARRAY_SIZE(IT87_REG_PWM)) - 1;
Guenter Roeck5c391262013-03-30 15:02:12 -07003045 data->has_pwm &= ~sio_data->skip_pwm;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01003046
Guenter Roeck8638d0a2015-03-30 11:13:49 -07003047 data->groups[4] = &it87_group_pwm;
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07003048 if (has_old_autopwm(data) || has_newer_autopwm(data))
Guenter Roeck8638d0a2015-03-30 11:13:49 -07003049 data->groups[5] = &it87_group_auto_pwm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 }
3051
Guenter Roeck8638d0a2015-03-30 11:13:49 -07003052 hwmon_dev = devm_hwmon_device_register_with_groups(dev,
3053 it87_devices[sio_data->type].name,
3054 data, data->groups);
3055 return PTR_ERR_OR_ZERO(hwmon_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056}
3057
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07003058static struct platform_driver it87_driver = {
3059 .driver = {
3060 .name = DRVNAME,
3061 },
3062 .probe = it87_probe,
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07003063};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064
Guenter Roecke84bd952015-03-28 08:24:29 -07003065static int __init it87_device_add(int index, unsigned short address,
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003066 const struct it87_sio_data *sio_data)
3067{
Guenter Roeck8e50e3c2015-03-28 07:49:14 -07003068 struct platform_device *pdev;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003069 struct resource res = {
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05003070 .start = address + IT87_EC_OFFSET,
3071 .end = address + IT87_EC_OFFSET + IT87_EC_EXTENT - 1,
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003072 .name = DRVNAME,
3073 .flags = IORESOURCE_IO,
3074 };
3075 int err;
3076
Jean Delvareb9acb642009-01-07 16:37:35 +01003077 err = acpi_check_resource_conflict(&res);
3078 if (err)
Guenter Roeck5cae84a2015-03-28 07:44:59 -07003079 return err;
Jean Delvareb9acb642009-01-07 16:37:35 +01003080
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003081 pdev = platform_device_alloc(DRVNAME, address);
Guenter Roeck5cae84a2015-03-28 07:44:59 -07003082 if (!pdev)
3083 return -ENOMEM;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003084
3085 err = platform_device_add_resources(pdev, &res, 1);
3086 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01003087 pr_err("Device resource addition failed (%d)\n", err);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003088 goto exit_device_put;
3089 }
3090
3091 err = platform_device_add_data(pdev, sio_data,
3092 sizeof(struct it87_sio_data));
3093 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01003094 pr_err("Platform data allocation failed\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003095 goto exit_device_put;
3096 }
3097
3098 err = platform_device_add(pdev);
3099 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01003100 pr_err("Device addition failed (%d)\n", err);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003101 goto exit_device_put;
3102 }
3103
Guenter Roecke84bd952015-03-28 08:24:29 -07003104 it87_pdev[index] = pdev;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003105 return 0;
3106
3107exit_device_put:
3108 platform_device_put(pdev);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003109 return err;
3110}
3111
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112static int __init sm_it87_init(void)
3113{
Guenter Roecke84bd952015-03-28 08:24:29 -07003114 int sioaddr[2] = { REG_2E, REG_4E };
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003115 struct it87_sio_data sio_data;
Guenter Roecke84bd952015-03-28 08:24:29 -07003116 unsigned short isa_address;
3117 bool found = false;
3118 int i, err;
Jean Delvarefde09502005-07-19 23:51:07 +02003119
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003120 err = platform_driver_register(&it87_driver);
3121 if (err)
3122 return err;
3123
Guenter Roecke84bd952015-03-28 08:24:29 -07003124 for (i = 0; i < ARRAY_SIZE(sioaddr); i++) {
3125 memset(&sio_data, 0, sizeof(struct it87_sio_data));
3126 isa_address = 0;
3127 err = it87_find(sioaddr[i], &isa_address, &sio_data);
3128 if (err || isa_address == 0)
3129 continue;
3130
3131 err = it87_device_add(i, isa_address, &sio_data);
3132 if (err)
3133 goto exit_dev_unregister;
3134 found = true;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003135 }
3136
Guenter Roecke84bd952015-03-28 08:24:29 -07003137 if (!found) {
3138 err = -ENODEV;
3139 goto exit_unregister;
3140 }
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003141 return 0;
Guenter Roecke84bd952015-03-28 08:24:29 -07003142
3143exit_dev_unregister:
3144 /* NULL check handled by platform_device_unregister */
3145 platform_device_unregister(it87_pdev[0]);
3146exit_unregister:
3147 platform_driver_unregister(&it87_driver);
3148 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149}
3150
3151static void __exit sm_it87_exit(void)
3152{
Guenter Roecke84bd952015-03-28 08:24:29 -07003153 /* NULL check handled by platform_device_unregister */
3154 platform_device_unregister(it87_pdev[1]);
3155 platform_device_unregister(it87_pdev[0]);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003156 platform_driver_unregister(&it87_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157}
3158
Jean Delvare7c81c602014-01-29 20:40:08 +01003159MODULE_AUTHOR("Chris Gauthron, Jean Delvare <jdelvare@suse.de>");
Jean Delvare44c1bcd2010-10-28 20:31:51 +02003160MODULE_DESCRIPTION("IT8705F/IT871xF/IT872xF hardware monitoring driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161module_param(update_vbat, bool, 0);
3162MODULE_PARM_DESC(update_vbat, "Update vbat if set else return powerup value");
3163module_param(fix_pwm_polarity, bool, 0);
Jean Delvare5f2dc792010-03-05 22:17:18 +01003164MODULE_PARM_DESC(fix_pwm_polarity,
3165 "Force PWM polarity to active high (DANGEROUS)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166MODULE_LICENSE("GPL");
3167
3168module_init(sm_it87_init);
3169module_exit(sm_it87_exit);