blob: 81853ee85f6a25824277da125d6c020d405e7a47 [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);
Guenter Roeck6c95eba2017-02-08 14:02:59 -08001357 it87_update_pwm_ctrl(data, nr);
Jean Delvare16b5dda2012-01-16 22:51:48 +01001358 if (has_newer_autopwm(data)) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001359 /*
1360 * If we are in automatic mode, the PWM duty cycle register
1361 * is read-only so we can't write the value.
1362 */
Jean Delvare6229cdb2010-12-08 16:27:22 +01001363 if (data->pwm_ctrl[nr] & 0x80) {
1364 mutex_unlock(&data->update_lock);
1365 return -EBUSY;
1366 }
1367 data->pwm_duty[nr] = pwm_to_reg(data, val);
Guenter Roeck36c4d982015-03-26 18:18:19 -07001368 it87_write_value(data, IT87_REG_PWM_DUTY[nr],
Jean Delvare6229cdb2010-12-08 16:27:22 +01001369 data->pwm_duty[nr]);
1370 } else {
1371 data->pwm_duty[nr] = pwm_to_reg(data, val);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001372 /*
1373 * If we are in manual mode, write the duty cycle immediately;
1374 * otherwise, just store it for later use.
1375 */
Jean Delvare6229cdb2010-12-08 16:27:22 +01001376 if (!(data->pwm_ctrl[nr] & 0x80)) {
1377 data->pwm_ctrl[nr] = data->pwm_duty[nr];
Guenter Roeck36c4d982015-03-26 18:18:19 -07001378 it87_write_value(data, IT87_REG_PWM[nr],
Jean Delvare6229cdb2010-12-08 16:27:22 +01001379 data->pwm_ctrl[nr]);
1380 }
Jean Delvareb99883d2010-03-05 22:17:15 +01001381 }
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001382 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 return count;
1384}
Guenter Roeckc9620242015-04-04 09:05:57 -07001385
1386static ssize_t set_pwm_freq(struct device *dev, struct device_attribute *attr,
1387 const char *buf, size_t count)
Jean Delvaref8d0c192007-02-14 21:15:02 +01001388{
Guenter Roeck60878bc2015-03-26 19:57:42 -07001389 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001390 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001391 int nr = sensor_attr->index;
Jean Delvaref5f64502010-03-05 22:17:19 +01001392 unsigned long val;
Jean Delvaref8d0c192007-02-14 21:15:02 +01001393 int i;
1394
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001395 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001396 return -EINVAL;
1397
Guenter Roeckf56c9c02015-03-26 20:01:24 -07001398 val = clamp_val(val, 0, 1000000);
1399 val *= has_newer_autopwm(data) ? 256 : 128;
1400
Jean Delvaref8d0c192007-02-14 21:15:02 +01001401 /* Search for the nearest available frequency */
1402 for (i = 0; i < 7; i++) {
Guenter Roeckc9620242015-04-04 09:05:57 -07001403 if (val > (pwm_freq[i] + pwm_freq[i + 1]) / 2)
Jean Delvaref8d0c192007-02-14 21:15:02 +01001404 break;
1405 }
1406
1407 mutex_lock(&data->update_lock);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001408 if (nr == 0) {
1409 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL) & 0x8f;
1410 data->fan_ctl |= i << 4;
1411 it87_write_value(data, IT87_REG_FAN_CTL, data->fan_ctl);
1412 } else {
1413 data->extra = it87_read_value(data, IT87_REG_TEMP_EXTRA) & 0x8f;
1414 data->extra |= i << 4;
1415 it87_write_value(data, IT87_REG_TEMP_EXTRA, data->extra);
1416 }
Jean Delvaref8d0c192007-02-14 21:15:02 +01001417 mutex_unlock(&data->update_lock);
1418
1419 return count;
1420}
Guenter Roeckc9620242015-04-04 09:05:57 -07001421
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001422static ssize_t show_pwm_temp_map(struct device *dev,
Guenter Roeckc9620242015-04-04 09:05:57 -07001423 struct device_attribute *attr, char *buf)
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001424{
1425 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001426 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001427 int nr = sensor_attr->index;
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001428 int map;
1429
Guenter Roeck0624d862015-04-06 21:04:18 -07001430 map = data->pwm_temp_map[nr];
1431 if (map >= 3)
1432 map = 0; /* Should never happen */
1433 if (nr >= 3) /* pwm channels 3..6 map to temp4..6 */
1434 map += 3;
1435
1436 return sprintf(buf, "%d\n", (int)BIT(map));
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001437}
Guenter Roeckc9620242015-04-04 09:05:57 -07001438
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001439static ssize_t set_pwm_temp_map(struct device *dev,
Guenter Roeckc9620242015-04-04 09:05:57 -07001440 struct device_attribute *attr, const char *buf,
1441 size_t count)
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001442{
1443 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001444 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001445 int nr = sensor_attr->index;
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001446 long val;
1447 u8 reg;
1448
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001449 if (kstrtol(buf, 10, &val) < 0)
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001450 return -EINVAL;
1451
Guenter Roeck0624d862015-04-06 21:04:18 -07001452 if (nr >= 3)
1453 val -= 3;
1454
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001455 switch (val) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001456 case BIT(0):
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001457 reg = 0x00;
1458 break;
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001459 case BIT(1):
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001460 reg = 0x01;
1461 break;
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001462 case BIT(2):
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001463 reg = 0x02;
1464 break;
1465 default:
1466 return -EINVAL;
1467 }
1468
1469 mutex_lock(&data->update_lock);
Guenter Roeck6c95eba2017-02-08 14:02:59 -08001470 it87_update_pwm_ctrl(data, nr);
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001471 data->pwm_temp_map[nr] = reg;
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001472 /*
1473 * If we are in automatic mode, write the temp mapping immediately;
1474 * otherwise, just store it for later use.
1475 */
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001476 if (data->pwm_ctrl[nr] & 0x80) {
Guenter Roeck4401e472017-02-08 14:07:42 -08001477 data->pwm_ctrl[nr] = (data->pwm_ctrl[nr] & 0xfc) |
1478 data->pwm_temp_map[nr];
Guenter Roeck36c4d982015-03-26 18:18:19 -07001479 it87_write_value(data, IT87_REG_PWM[nr], data->pwm_ctrl[nr]);
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001480 }
1481 mutex_unlock(&data->update_lock);
1482 return count;
1483}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Guenter Roeckc9620242015-04-04 09:05:57 -07001485static ssize_t show_auto_pwm(struct device *dev, struct device_attribute *attr,
1486 char *buf)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001487{
1488 struct it87_data *data = it87_update_device(dev);
1489 struct sensor_device_attribute_2 *sensor_attr =
1490 to_sensor_dev_attr_2(attr);
1491 int nr = sensor_attr->nr;
1492 int point = sensor_attr->index;
1493
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001494 return sprintf(buf, "%d\n",
1495 pwm_from_reg(data, data->auto_pwm[nr][point]));
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001496}
1497
Guenter Roeckc9620242015-04-04 09:05:57 -07001498static ssize_t set_auto_pwm(struct device *dev, struct device_attribute *attr,
1499 const char *buf, size_t count)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001500{
1501 struct it87_data *data = dev_get_drvdata(dev);
1502 struct sensor_device_attribute_2 *sensor_attr =
1503 to_sensor_dev_attr_2(attr);
1504 int nr = sensor_attr->nr;
1505 int point = sensor_attr->index;
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001506 int regaddr;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001507 long val;
1508
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001509 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001510 return -EINVAL;
1511
1512 mutex_lock(&data->update_lock);
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001513 data->auto_pwm[nr][point] = pwm_to_reg(data, val);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001514 if (has_newer_autopwm(data))
1515 regaddr = IT87_REG_AUTO_TEMP(nr, 3);
1516 else
1517 regaddr = IT87_REG_AUTO_PWM(nr, point);
1518 it87_write_value(data, regaddr, data->auto_pwm[nr][point]);
1519 mutex_unlock(&data->update_lock);
1520 return count;
1521}
1522
1523static ssize_t show_auto_pwm_slope(struct device *dev,
1524 struct device_attribute *attr, char *buf)
1525{
1526 struct it87_data *data = it87_update_device(dev);
1527 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1528 int nr = sensor_attr->index;
1529
1530 return sprintf(buf, "%d\n", data->auto_pwm[nr][1] & 0x7f);
1531}
1532
1533static ssize_t set_auto_pwm_slope(struct device *dev,
1534 struct device_attribute *attr,
1535 const char *buf, size_t count)
1536{
1537 struct it87_data *data = dev_get_drvdata(dev);
1538 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1539 int nr = sensor_attr->index;
1540 unsigned long val;
1541
1542 if (kstrtoul(buf, 10, &val) < 0 || val > 127)
1543 return -EINVAL;
1544
1545 mutex_lock(&data->update_lock);
1546 data->auto_pwm[nr][1] = (data->auto_pwm[nr][1] & 0x80) | val;
1547 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, 4),
1548 data->auto_pwm[nr][1]);
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001549 mutex_unlock(&data->update_lock);
1550 return count;
1551}
1552
Guenter Roeckc9620242015-04-04 09:05:57 -07001553static ssize_t show_auto_temp(struct device *dev, struct device_attribute *attr,
1554 char *buf)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001555{
1556 struct it87_data *data = it87_update_device(dev);
1557 struct sensor_device_attribute_2 *sensor_attr =
1558 to_sensor_dev_attr_2(attr);
1559 int nr = sensor_attr->nr;
1560 int point = sensor_attr->index;
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001561 int reg;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001562
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001563 if (has_old_autopwm(data) || point)
1564 reg = data->auto_temp[nr][point];
1565 else
1566 reg = data->auto_temp[nr][1] - (data->auto_temp[nr][0] & 0x1f);
1567
1568 return sprintf(buf, "%d\n", TEMP_FROM_REG(reg));
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001569}
1570
Guenter Roeckc9620242015-04-04 09:05:57 -07001571static ssize_t set_auto_temp(struct device *dev, struct device_attribute *attr,
1572 const char *buf, size_t count)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001573{
1574 struct it87_data *data = dev_get_drvdata(dev);
1575 struct sensor_device_attribute_2 *sensor_attr =
1576 to_sensor_dev_attr_2(attr);
1577 int nr = sensor_attr->nr;
1578 int point = sensor_attr->index;
1579 long val;
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001580 int reg;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001581
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001582 if (kstrtol(buf, 10, &val) < 0 || val < -128000 || val > 127000)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001583 return -EINVAL;
1584
1585 mutex_lock(&data->update_lock);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001586 if (has_newer_autopwm(data) && !point) {
1587 reg = data->auto_temp[nr][1] - TEMP_TO_REG(val);
1588 reg = clamp_val(reg, 0, 0x1f) | (data->auto_temp[nr][0] & 0xe0);
1589 data->auto_temp[nr][0] = reg;
1590 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, 5), reg);
1591 } else {
1592 reg = TEMP_TO_REG(val);
1593 data->auto_temp[nr][point] = reg;
1594 if (has_newer_autopwm(data))
1595 point--;
1596 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, point), reg);
1597 }
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001598 mutex_unlock(&data->update_lock);
1599 return count;
1600}
1601
Guenter Roecke1169ba2012-12-19 22:17:01 +01001602static SENSOR_DEVICE_ATTR_2(fan1_input, S_IRUGO, show_fan, NULL, 0, 0);
1603static SENSOR_DEVICE_ATTR_2(fan1_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1604 0, 1);
1605static SENSOR_DEVICE_ATTR(fan1_div, S_IRUGO | S_IWUSR, show_fan_div,
1606 set_fan_div, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Guenter Roecke1169ba2012-12-19 22:17:01 +01001608static SENSOR_DEVICE_ATTR_2(fan2_input, S_IRUGO, show_fan, NULL, 1, 0);
1609static SENSOR_DEVICE_ATTR_2(fan2_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1610 1, 1);
1611static SENSOR_DEVICE_ATTR(fan2_div, S_IRUGO | S_IWUSR, show_fan_div,
1612 set_fan_div, 1);
1613
1614static SENSOR_DEVICE_ATTR_2(fan3_input, S_IRUGO, show_fan, NULL, 2, 0);
1615static SENSOR_DEVICE_ATTR_2(fan3_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1616 2, 1);
1617static SENSOR_DEVICE_ATTR(fan3_div, S_IRUGO | S_IWUSR, show_fan_div,
1618 set_fan_div, 2);
1619
1620static SENSOR_DEVICE_ATTR_2(fan4_input, S_IRUGO, show_fan, NULL, 3, 0);
1621static SENSOR_DEVICE_ATTR_2(fan4_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1622 3, 1);
1623
1624static SENSOR_DEVICE_ATTR_2(fan5_input, S_IRUGO, show_fan, NULL, 4, 0);
1625static SENSOR_DEVICE_ATTR_2(fan5_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1626 4, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07001628static SENSOR_DEVICE_ATTR_2(fan6_input, S_IRUGO, show_fan, NULL, 5, 0);
1629static SENSOR_DEVICE_ATTR_2(fan6_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1630 5, 1);
1631
Guenter Roeckc4458db2012-12-19 22:17:02 +01001632static SENSOR_DEVICE_ATTR(pwm1_enable, S_IRUGO | S_IWUSR,
1633 show_pwm_enable, set_pwm_enable, 0);
1634static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 0);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001635static SENSOR_DEVICE_ATTR(pwm1_freq, S_IRUGO | S_IWUSR, show_pwm_freq,
1636 set_pwm_freq, 0);
Guenter Roeck5c391262013-03-30 15:02:12 -07001637static SENSOR_DEVICE_ATTR(pwm1_auto_channels_temp, S_IRUGO,
Guenter Roeckc4458db2012-12-19 22:17:02 +01001638 show_pwm_temp_map, set_pwm_temp_map, 0);
1639static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_pwm, S_IRUGO | S_IWUSR,
1640 show_auto_pwm, set_auto_pwm, 0, 0);
1641static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_pwm, S_IRUGO | S_IWUSR,
1642 show_auto_pwm, set_auto_pwm, 0, 1);
1643static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_pwm, S_IRUGO | S_IWUSR,
1644 show_auto_pwm, set_auto_pwm, 0, 2);
1645static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_pwm, S_IRUGO,
1646 show_auto_pwm, NULL, 0, 3);
1647static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp, S_IRUGO | S_IWUSR,
1648 show_auto_temp, set_auto_temp, 0, 1);
1649static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1650 show_auto_temp, set_auto_temp, 0, 0);
1651static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_temp, S_IRUGO | S_IWUSR,
1652 show_auto_temp, set_auto_temp, 0, 2);
1653static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_temp, S_IRUGO | S_IWUSR,
1654 show_auto_temp, set_auto_temp, 0, 3);
1655static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_temp, S_IRUGO | S_IWUSR,
1656 show_auto_temp, set_auto_temp, 0, 4);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001657static SENSOR_DEVICE_ATTR_2(pwm1_auto_start, S_IRUGO | S_IWUSR,
1658 show_auto_pwm, set_auto_pwm, 0, 0);
1659static SENSOR_DEVICE_ATTR(pwm1_auto_slope, S_IRUGO | S_IWUSR,
1660 show_auto_pwm_slope, set_auto_pwm_slope, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
Guenter Roeckc4458db2012-12-19 22:17:02 +01001662static SENSOR_DEVICE_ATTR(pwm2_enable, S_IRUGO | S_IWUSR,
1663 show_pwm_enable, set_pwm_enable, 1);
1664static SENSOR_DEVICE_ATTR(pwm2, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 1);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001665static SENSOR_DEVICE_ATTR(pwm2_freq, S_IRUGO, show_pwm_freq, set_pwm_freq, 1);
Guenter Roeck5c391262013-03-30 15:02:12 -07001666static SENSOR_DEVICE_ATTR(pwm2_auto_channels_temp, S_IRUGO,
Guenter Roeckc4458db2012-12-19 22:17:02 +01001667 show_pwm_temp_map, set_pwm_temp_map, 1);
1668static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_pwm, S_IRUGO | S_IWUSR,
1669 show_auto_pwm, set_auto_pwm, 1, 0);
1670static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_pwm, S_IRUGO | S_IWUSR,
1671 show_auto_pwm, set_auto_pwm, 1, 1);
1672static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_pwm, S_IRUGO | S_IWUSR,
1673 show_auto_pwm, set_auto_pwm, 1, 2);
1674static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_pwm, S_IRUGO,
1675 show_auto_pwm, NULL, 1, 3);
1676static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp, S_IRUGO | S_IWUSR,
1677 show_auto_temp, set_auto_temp, 1, 1);
1678static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1679 show_auto_temp, set_auto_temp, 1, 0);
1680static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_temp, S_IRUGO | S_IWUSR,
1681 show_auto_temp, set_auto_temp, 1, 2);
1682static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_temp, S_IRUGO | S_IWUSR,
1683 show_auto_temp, set_auto_temp, 1, 3);
1684static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_temp, S_IRUGO | S_IWUSR,
1685 show_auto_temp, set_auto_temp, 1, 4);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001686static SENSOR_DEVICE_ATTR_2(pwm2_auto_start, S_IRUGO | S_IWUSR,
1687 show_auto_pwm, set_auto_pwm, 1, 0);
1688static SENSOR_DEVICE_ATTR(pwm2_auto_slope, S_IRUGO | S_IWUSR,
1689 show_auto_pwm_slope, set_auto_pwm_slope, 1);
Guenter Roeckc4458db2012-12-19 22:17:02 +01001690
1691static SENSOR_DEVICE_ATTR(pwm3_enable, S_IRUGO | S_IWUSR,
1692 show_pwm_enable, set_pwm_enable, 2);
1693static SENSOR_DEVICE_ATTR(pwm3, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 2);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001694static SENSOR_DEVICE_ATTR(pwm3_freq, S_IRUGO, show_pwm_freq, NULL, 2);
Guenter Roeck5c391262013-03-30 15:02:12 -07001695static SENSOR_DEVICE_ATTR(pwm3_auto_channels_temp, S_IRUGO,
Guenter Roeckc4458db2012-12-19 22:17:02 +01001696 show_pwm_temp_map, set_pwm_temp_map, 2);
1697static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_pwm, S_IRUGO | S_IWUSR,
1698 show_auto_pwm, set_auto_pwm, 2, 0);
1699static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_pwm, S_IRUGO | S_IWUSR,
1700 show_auto_pwm, set_auto_pwm, 2, 1);
1701static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_pwm, S_IRUGO | S_IWUSR,
1702 show_auto_pwm, set_auto_pwm, 2, 2);
1703static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_pwm, S_IRUGO,
1704 show_auto_pwm, NULL, 2, 3);
1705static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp, S_IRUGO | S_IWUSR,
1706 show_auto_temp, set_auto_temp, 2, 1);
1707static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1708 show_auto_temp, set_auto_temp, 2, 0);
1709static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_temp, S_IRUGO | S_IWUSR,
1710 show_auto_temp, set_auto_temp, 2, 2);
1711static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_temp, S_IRUGO | S_IWUSR,
1712 show_auto_temp, set_auto_temp, 2, 3);
1713static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_temp, S_IRUGO | S_IWUSR,
1714 show_auto_temp, set_auto_temp, 2, 4);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001715static SENSOR_DEVICE_ATTR_2(pwm3_auto_start, S_IRUGO | S_IWUSR,
1716 show_auto_pwm, set_auto_pwm, 2, 0);
1717static SENSOR_DEVICE_ATTR(pwm3_auto_slope, S_IRUGO | S_IWUSR,
1718 show_auto_pwm_slope, set_auto_pwm_slope, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
Guenter Roeck36c4d982015-03-26 18:18:19 -07001720static SENSOR_DEVICE_ATTR(pwm4_enable, S_IRUGO | S_IWUSR,
1721 show_pwm_enable, set_pwm_enable, 3);
1722static SENSOR_DEVICE_ATTR(pwm4, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 3);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001723static SENSOR_DEVICE_ATTR(pwm4_freq, S_IRUGO, show_pwm_freq, NULL, 3);
Guenter Roeck5c391262013-03-30 15:02:12 -07001724static SENSOR_DEVICE_ATTR(pwm4_auto_channels_temp, S_IRUGO,
Guenter Roeck36c4d982015-03-26 18:18:19 -07001725 show_pwm_temp_map, set_pwm_temp_map, 3);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001726static SENSOR_DEVICE_ATTR_2(pwm4_auto_point1_temp, S_IRUGO | S_IWUSR,
1727 show_auto_temp, set_auto_temp, 2, 1);
1728static SENSOR_DEVICE_ATTR_2(pwm4_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1729 show_auto_temp, set_auto_temp, 2, 0);
1730static SENSOR_DEVICE_ATTR_2(pwm4_auto_point2_temp, S_IRUGO | S_IWUSR,
1731 show_auto_temp, set_auto_temp, 2, 2);
1732static SENSOR_DEVICE_ATTR_2(pwm4_auto_point3_temp, S_IRUGO | S_IWUSR,
1733 show_auto_temp, set_auto_temp, 2, 3);
1734static SENSOR_DEVICE_ATTR_2(pwm4_auto_start, S_IRUGO | S_IWUSR,
1735 show_auto_pwm, set_auto_pwm, 3, 0);
1736static SENSOR_DEVICE_ATTR(pwm4_auto_slope, S_IRUGO | S_IWUSR,
1737 show_auto_pwm_slope, set_auto_pwm_slope, 3);
Guenter Roeck36c4d982015-03-26 18:18:19 -07001738
1739static SENSOR_DEVICE_ATTR(pwm5_enable, S_IRUGO | S_IWUSR,
1740 show_pwm_enable, set_pwm_enable, 4);
1741static SENSOR_DEVICE_ATTR(pwm5, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 4);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001742static SENSOR_DEVICE_ATTR(pwm5_freq, S_IRUGO, show_pwm_freq, NULL, 4);
Guenter Roeck5c391262013-03-30 15:02:12 -07001743static SENSOR_DEVICE_ATTR(pwm5_auto_channels_temp, S_IRUGO,
Guenter Roeck36c4d982015-03-26 18:18:19 -07001744 show_pwm_temp_map, set_pwm_temp_map, 4);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001745static SENSOR_DEVICE_ATTR_2(pwm5_auto_point1_temp, S_IRUGO | S_IWUSR,
1746 show_auto_temp, set_auto_temp, 2, 1);
1747static SENSOR_DEVICE_ATTR_2(pwm5_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1748 show_auto_temp, set_auto_temp, 2, 0);
1749static SENSOR_DEVICE_ATTR_2(pwm5_auto_point2_temp, S_IRUGO | S_IWUSR,
1750 show_auto_temp, set_auto_temp, 2, 2);
1751static SENSOR_DEVICE_ATTR_2(pwm5_auto_point3_temp, S_IRUGO | S_IWUSR,
1752 show_auto_temp, set_auto_temp, 2, 3);
1753static SENSOR_DEVICE_ATTR_2(pwm5_auto_start, S_IRUGO | S_IWUSR,
1754 show_auto_pwm, set_auto_pwm, 4, 0);
1755static SENSOR_DEVICE_ATTR(pwm5_auto_slope, S_IRUGO | S_IWUSR,
1756 show_auto_pwm_slope, set_auto_pwm_slope, 4);
Guenter Roeck36c4d982015-03-26 18:18:19 -07001757
1758static SENSOR_DEVICE_ATTR(pwm6_enable, S_IRUGO | S_IWUSR,
1759 show_pwm_enable, set_pwm_enable, 5);
1760static SENSOR_DEVICE_ATTR(pwm6, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 5);
Guenter Roeck60878bc2015-03-26 19:57:42 -07001761static SENSOR_DEVICE_ATTR(pwm6_freq, S_IRUGO, show_pwm_freq, NULL, 5);
Guenter Roeck5c391262013-03-30 15:02:12 -07001762static SENSOR_DEVICE_ATTR(pwm6_auto_channels_temp, S_IRUGO,
Guenter Roeck36c4d982015-03-26 18:18:19 -07001763 show_pwm_temp_map, set_pwm_temp_map, 5);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07001764static SENSOR_DEVICE_ATTR_2(pwm6_auto_point1_temp, S_IRUGO | S_IWUSR,
1765 show_auto_temp, set_auto_temp, 2, 1);
1766static SENSOR_DEVICE_ATTR_2(pwm6_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1767 show_auto_temp, set_auto_temp, 2, 0);
1768static SENSOR_DEVICE_ATTR_2(pwm6_auto_point2_temp, S_IRUGO | S_IWUSR,
1769 show_auto_temp, set_auto_temp, 2, 2);
1770static SENSOR_DEVICE_ATTR_2(pwm6_auto_point3_temp, S_IRUGO | S_IWUSR,
1771 show_auto_temp, set_auto_temp, 2, 3);
1772static SENSOR_DEVICE_ATTR_2(pwm6_auto_start, S_IRUGO | S_IWUSR,
1773 show_auto_pwm, set_auto_pwm, 5, 0);
1774static SENSOR_DEVICE_ATTR(pwm6_auto_slope, S_IRUGO | S_IWUSR,
1775 show_auto_pwm_slope, set_auto_pwm_slope, 5);
Guenter Roeck36c4d982015-03-26 18:18:19 -07001776
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777/* Alarms */
Jean Delvare5f2dc792010-03-05 22:17:18 +01001778static ssize_t show_alarms(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001779 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780{
1781 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001782
Jean Delvare68188ba2005-05-16 18:52:38 +02001783 return sprintf(buf, "%u\n", data->alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784}
Jean Delvare1d66c642005-04-18 21:16:59 -07001785static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
Jean Delvare0124dd72007-11-25 16:16:41 +01001787static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001788 char *buf)
Jean Delvare0124dd72007-11-25 16:16:41 +01001789{
Jean Delvare0124dd72007-11-25 16:16:41 +01001790 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001791 int bitnr = to_sensor_dev_attr(attr)->index;
1792
Jean Delvare0124dd72007-11-25 16:16:41 +01001793 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
1794}
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001795
Guenter Roeckc9620242015-04-04 09:05:57 -07001796static ssize_t clear_intrusion(struct device *dev,
1797 struct device_attribute *attr, const char *buf,
1798 size_t count)
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001799{
1800 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001801 int config;
Guenter Roeckc9620242015-04-04 09:05:57 -07001802 long val;
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001803
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001804 if (kstrtol(buf, 10, &val) < 0 || val != 0)
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001805 return -EINVAL;
1806
1807 mutex_lock(&data->update_lock);
1808 config = it87_read_value(data, IT87_REG_CONFIG);
1809 if (config < 0) {
1810 count = config;
1811 } else {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001812 config |= BIT(5);
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001813 it87_write_value(data, IT87_REG_CONFIG, config);
1814 /* Invalidate cache to force re-read */
1815 data->valid = 0;
1816 }
1817 mutex_unlock(&data->update_lock);
1818
1819 return count;
1820}
1821
Jean Delvare0124dd72007-11-25 16:16:41 +01001822static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 8);
1823static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 9);
1824static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 10);
1825static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 11);
1826static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 12);
1827static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 13);
1828static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 14);
1829static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 15);
1830static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 0);
1831static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 1);
1832static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 2);
1833static SENSOR_DEVICE_ATTR(fan4_alarm, S_IRUGO, show_alarm, NULL, 3);
1834static SENSOR_DEVICE_ATTR(fan5_alarm, S_IRUGO, show_alarm, NULL, 6);
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07001835static SENSOR_DEVICE_ATTR(fan6_alarm, S_IRUGO, show_alarm, NULL, 7);
Jean Delvare0124dd72007-11-25 16:16:41 +01001836static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 16);
1837static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 17);
1838static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 18);
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001839static SENSOR_DEVICE_ATTR(intrusion0_alarm, S_IRUGO | S_IWUSR,
1840 show_alarm, clear_intrusion, 4);
Jean Delvare0124dd72007-11-25 16:16:41 +01001841
Jean Delvared9b327c2010-03-05 22:17:17 +01001842static ssize_t show_beep(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001843 char *buf)
Jean Delvared9b327c2010-03-05 22:17:17 +01001844{
Jean Delvared9b327c2010-03-05 22:17:17 +01001845 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001846 int bitnr = to_sensor_dev_attr(attr)->index;
1847
Jean Delvared9b327c2010-03-05 22:17:17 +01001848 return sprintf(buf, "%u\n", (data->beeps >> bitnr) & 1);
1849}
Guenter Roeckc9620242015-04-04 09:05:57 -07001850
Jean Delvared9b327c2010-03-05 22:17:17 +01001851static ssize_t set_beep(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001852 const char *buf, size_t count)
Jean Delvared9b327c2010-03-05 22:17:17 +01001853{
1854 int bitnr = to_sensor_dev_attr(attr)->index;
1855 struct it87_data *data = dev_get_drvdata(dev);
1856 long val;
1857
Guenter Roeckc9620242015-04-04 09:05:57 -07001858 if (kstrtol(buf, 10, &val) < 0 || (val != 0 && val != 1))
Jean Delvared9b327c2010-03-05 22:17:17 +01001859 return -EINVAL;
1860
1861 mutex_lock(&data->update_lock);
1862 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
1863 if (val)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001864 data->beeps |= BIT(bitnr);
Jean Delvared9b327c2010-03-05 22:17:17 +01001865 else
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001866 data->beeps &= ~BIT(bitnr);
Jean Delvared9b327c2010-03-05 22:17:17 +01001867 it87_write_value(data, IT87_REG_BEEP_ENABLE, data->beeps);
1868 mutex_unlock(&data->update_lock);
1869 return count;
1870}
1871
1872static SENSOR_DEVICE_ATTR(in0_beep, S_IRUGO | S_IWUSR,
1873 show_beep, set_beep, 1);
1874static SENSOR_DEVICE_ATTR(in1_beep, S_IRUGO, show_beep, NULL, 1);
1875static SENSOR_DEVICE_ATTR(in2_beep, S_IRUGO, show_beep, NULL, 1);
1876static SENSOR_DEVICE_ATTR(in3_beep, S_IRUGO, show_beep, NULL, 1);
1877static SENSOR_DEVICE_ATTR(in4_beep, S_IRUGO, show_beep, NULL, 1);
1878static SENSOR_DEVICE_ATTR(in5_beep, S_IRUGO, show_beep, NULL, 1);
1879static SENSOR_DEVICE_ATTR(in6_beep, S_IRUGO, show_beep, NULL, 1);
1880static SENSOR_DEVICE_ATTR(in7_beep, S_IRUGO, show_beep, NULL, 1);
1881/* fanX_beep writability is set later */
1882static SENSOR_DEVICE_ATTR(fan1_beep, S_IRUGO, show_beep, set_beep, 0);
1883static SENSOR_DEVICE_ATTR(fan2_beep, S_IRUGO, show_beep, set_beep, 0);
1884static SENSOR_DEVICE_ATTR(fan3_beep, S_IRUGO, show_beep, set_beep, 0);
1885static SENSOR_DEVICE_ATTR(fan4_beep, S_IRUGO, show_beep, set_beep, 0);
1886static SENSOR_DEVICE_ATTR(fan5_beep, S_IRUGO, show_beep, set_beep, 0);
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07001887static SENSOR_DEVICE_ATTR(fan6_beep, S_IRUGO, show_beep, set_beep, 0);
Jean Delvared9b327c2010-03-05 22:17:17 +01001888static SENSOR_DEVICE_ATTR(temp1_beep, S_IRUGO | S_IWUSR,
1889 show_beep, set_beep, 2);
1890static SENSOR_DEVICE_ATTR(temp2_beep, S_IRUGO, show_beep, NULL, 2);
1891static SENSOR_DEVICE_ATTR(temp3_beep, S_IRUGO, show_beep, NULL, 2);
1892
Jean Delvare5f2dc792010-03-05 22:17:18 +01001893static ssize_t show_vrm_reg(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001894 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895{
Jean Delvare90d66192007-10-08 18:24:35 +02001896 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001897
Jean Delvarea7be58a2005-12-18 16:40:14 +01001898 return sprintf(buf, "%u\n", data->vrm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899}
Guenter Roeckc9620242015-04-04 09:05:57 -07001900
Jean Delvare5f2dc792010-03-05 22:17:18 +01001901static ssize_t store_vrm_reg(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001902 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001904 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001905 unsigned long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001907 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001908 return -EINVAL;
1909
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 data->vrm = val;
1911
1912 return count;
1913}
1914static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm_reg, store_vrm_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
Jean Delvare5f2dc792010-03-05 22:17:18 +01001916static ssize_t show_vid_reg(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001917 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918{
1919 struct it87_data *data = it87_update_device(dev);
Guenter Roeckc9620242015-04-04 09:05:57 -07001920
1921 return sprintf(buf, "%ld\n", (long)vid_from_reg(data->vid, data->vrm));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922}
1923static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL);
Jean Delvare87808be2006-09-24 21:17:13 +02001924
Jean Delvare738e5e02010-08-14 21:08:50 +02001925static ssize_t show_label(struct device *dev, struct device_attribute *attr,
Guenter Roeckc9620242015-04-04 09:05:57 -07001926 char *buf)
Jean Delvare738e5e02010-08-14 21:08:50 +02001927{
Guenter Roeck3c4c4972012-01-20 09:29:44 -08001928 static const char * const labels[] = {
Jean Delvare738e5e02010-08-14 21:08:50 +02001929 "+5V",
1930 "5VSB",
1931 "Vbat",
1932 };
Guenter Roeck3c4c4972012-01-20 09:29:44 -08001933 static const char * const labels_it8721[] = {
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001934 "+3.3V",
1935 "3VSB",
1936 "Vbat",
1937 };
1938 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvare738e5e02010-08-14 21:08:50 +02001939 int nr = to_sensor_dev_attr(attr)->index;
Justin Maggardead80802015-08-05 12:53:08 -07001940 const char *label;
Jean Delvare738e5e02010-08-14 21:08:50 +02001941
Justin Maggardead80802015-08-05 12:53:08 -07001942 if (has_12mv_adc(data) || has_10_9mv_adc(data))
1943 label = labels_it8721[nr];
1944 else
1945 label = labels[nr];
1946
1947 return sprintf(buf, "%s\n", label);
Jean Delvare738e5e02010-08-14 21:08:50 +02001948}
1949static SENSOR_DEVICE_ATTR(in3_label, S_IRUGO, show_label, NULL, 0);
1950static SENSOR_DEVICE_ATTR(in7_label, S_IRUGO, show_label, NULL, 1);
1951static SENSOR_DEVICE_ATTR(in8_label, S_IRUGO, show_label, NULL, 2);
Guenter Roeck73055402015-03-26 09:16:32 -07001952/* AVCC3 */
Rudolf Marekc145d5c2014-01-29 20:40:08 +01001953static SENSOR_DEVICE_ATTR(in9_label, S_IRUGO, show_label, NULL, 0);
Jean Delvare738e5e02010-08-14 21:08:50 +02001954
Guenter Roeck52929712013-03-30 14:00:08 -07001955static umode_t it87_in_is_visible(struct kobject *kobj,
1956 struct attribute *attr, int index)
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001957{
Guenter Roeck52929712013-03-30 14:00:08 -07001958 struct device *dev = container_of(kobj, struct device, kobj);
1959 struct it87_data *data = dev_get_drvdata(dev);
1960 int i = index / 5; /* voltage index */
1961 int a = index % 5; /* attribute index */
1962
Guenter Roeckf838aa22015-04-01 20:09:36 -07001963 if (index >= 40) { /* in8 and higher only have input attributes */
Guenter Roeck52929712013-03-30 14:00:08 -07001964 i = index - 40 + 8;
1965 a = 0;
1966 }
1967
Guenter Roeck48b2ae72015-04-02 08:06:12 -07001968 if (!(data->has_in & BIT(i)))
Guenter Roeck52929712013-03-30 14:00:08 -07001969 return 0;
1970
1971 if (a == 4 && !data->has_beep)
1972 return 0;
1973
1974 return attr->mode;
1975}
1976
1977static struct attribute *it87_attributes_in[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02001978 &sensor_dev_attr_in0_input.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001979 &sensor_dev_attr_in0_min.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001980 &sensor_dev_attr_in0_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001981 &sensor_dev_attr_in0_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07001982 &sensor_dev_attr_in0_beep.dev_attr.attr, /* 4 */
1983
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001984 &sensor_dev_attr_in1_input.dev_attr.attr,
1985 &sensor_dev_attr_in1_min.dev_attr.attr,
1986 &sensor_dev_attr_in1_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001987 &sensor_dev_attr_in1_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07001988 &sensor_dev_attr_in1_beep.dev_attr.attr, /* 9 */
1989
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001990 &sensor_dev_attr_in2_input.dev_attr.attr,
1991 &sensor_dev_attr_in2_min.dev_attr.attr,
1992 &sensor_dev_attr_in2_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001993 &sensor_dev_attr_in2_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07001994 &sensor_dev_attr_in2_beep.dev_attr.attr, /* 14 */
1995
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001996 &sensor_dev_attr_in3_input.dev_attr.attr,
1997 &sensor_dev_attr_in3_min.dev_attr.attr,
1998 &sensor_dev_attr_in3_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001999 &sensor_dev_attr_in3_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002000 &sensor_dev_attr_in3_beep.dev_attr.attr, /* 19 */
2001
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002002 &sensor_dev_attr_in4_input.dev_attr.attr,
2003 &sensor_dev_attr_in4_min.dev_attr.attr,
2004 &sensor_dev_attr_in4_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002005 &sensor_dev_attr_in4_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002006 &sensor_dev_attr_in4_beep.dev_attr.attr, /* 24 */
2007
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002008 &sensor_dev_attr_in5_input.dev_attr.attr,
2009 &sensor_dev_attr_in5_min.dev_attr.attr,
2010 &sensor_dev_attr_in5_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002011 &sensor_dev_attr_in5_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002012 &sensor_dev_attr_in5_beep.dev_attr.attr, /* 29 */
2013
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002014 &sensor_dev_attr_in6_input.dev_attr.attr,
2015 &sensor_dev_attr_in6_min.dev_attr.attr,
2016 &sensor_dev_attr_in6_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002017 &sensor_dev_attr_in6_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002018 &sensor_dev_attr_in6_beep.dev_attr.attr, /* 34 */
2019
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002020 &sensor_dev_attr_in7_input.dev_attr.attr,
2021 &sensor_dev_attr_in7_min.dev_attr.attr,
2022 &sensor_dev_attr_in7_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002023 &sensor_dev_attr_in7_alarm.dev_attr.attr,
Guenter Roeck52929712013-03-30 14:00:08 -07002024 &sensor_dev_attr_in7_beep.dev_attr.attr, /* 39 */
Jean Delvare87808be2006-09-24 21:17:13 +02002025
Guenter Roeck52929712013-03-30 14:00:08 -07002026 &sensor_dev_attr_in8_input.dev_attr.attr, /* 40 */
Jean Delvared5f3f6c2016-08-29 13:33:29 +02002027 &sensor_dev_attr_in9_input.dev_attr.attr,
2028 &sensor_dev_attr_in10_input.dev_attr.attr,
2029 &sensor_dev_attr_in11_input.dev_attr.attr,
2030 &sensor_dev_attr_in12_input.dev_attr.attr,
Jean Delvare3c329262016-08-29 13:18:23 +02002031 NULL
Guenter Roeck52929712013-03-30 14:00:08 -07002032};
2033
2034static const struct attribute_group it87_group_in = {
2035 .attrs = it87_attributes_in,
2036 .is_visible = it87_in_is_visible,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002037};
2038
Guenter Roeck87533772013-03-30 14:23:20 -07002039static umode_t it87_temp_is_visible(struct kobject *kobj,
2040 struct attribute *attr, int index)
Guenter Roeck4573acb2012-03-26 16:17:41 -07002041{
Guenter Roeck87533772013-03-30 14:23:20 -07002042 struct device *dev = container_of(kobj, struct device, kobj);
2043 struct it87_data *data = dev_get_drvdata(dev);
2044 int i = index / 7; /* temperature index */
2045 int a = index % 7; /* attribute index */
2046
Guenter Roeckcc18da72015-04-01 10:03:01 -07002047 if (index >= 21) {
2048 i = index - 21 + 3;
2049 a = 0;
2050 }
2051
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002052 if (!(data->has_temp & BIT(i)))
Guenter Roeck87533772013-03-30 14:23:20 -07002053 return 0;
2054
2055 if (a == 5 && !has_temp_offset(data))
2056 return 0;
2057
2058 if (a == 6 && !data->has_beep)
2059 return 0;
2060
2061 return attr->mode;
2062}
2063
2064static struct attribute *it87_attributes_temp[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02002065 &sensor_dev_attr_temp1_input.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002066 &sensor_dev_attr_temp1_max.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002067 &sensor_dev_attr_temp1_min.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002068 &sensor_dev_attr_temp1_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002069 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
Guenter Roeck87533772013-03-30 14:23:20 -07002070 &sensor_dev_attr_temp1_offset.dev_attr.attr, /* 5 */
2071 &sensor_dev_attr_temp1_beep.dev_attr.attr, /* 6 */
2072
Guenter Roeckcc18da72015-04-01 10:03:01 -07002073 &sensor_dev_attr_temp2_input.dev_attr.attr, /* 7 */
Guenter Roeck4573acb2012-03-26 16:17:41 -07002074 &sensor_dev_attr_temp2_max.dev_attr.attr,
2075 &sensor_dev_attr_temp2_min.dev_attr.attr,
2076 &sensor_dev_attr_temp2_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002077 &sensor_dev_attr_temp2_alarm.dev_attr.attr,
Guenter Roeck87533772013-03-30 14:23:20 -07002078 &sensor_dev_attr_temp2_offset.dev_attr.attr,
2079 &sensor_dev_attr_temp2_beep.dev_attr.attr,
2080
Guenter Roeckcc18da72015-04-01 10:03:01 -07002081 &sensor_dev_attr_temp3_input.dev_attr.attr, /* 14 */
Guenter Roeck4573acb2012-03-26 16:17:41 -07002082 &sensor_dev_attr_temp3_max.dev_attr.attr,
2083 &sensor_dev_attr_temp3_min.dev_attr.attr,
2084 &sensor_dev_attr_temp3_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002085 &sensor_dev_attr_temp3_alarm.dev_attr.attr,
Guenter Roeck87533772013-03-30 14:23:20 -07002086 &sensor_dev_attr_temp3_offset.dev_attr.attr,
2087 &sensor_dev_attr_temp3_beep.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002088
Guenter Roeckcc18da72015-04-01 10:03:01 -07002089 &sensor_dev_attr_temp4_input.dev_attr.attr, /* 21 */
2090 &sensor_dev_attr_temp5_input.dev_attr.attr,
2091 &sensor_dev_attr_temp6_input.dev_attr.attr,
Guenter Roeck87533772013-03-30 14:23:20 -07002092 NULL
Guenter Roeck4573acb2012-03-26 16:17:41 -07002093};
2094
Guenter Roeck87533772013-03-30 14:23:20 -07002095static const struct attribute_group it87_group_temp = {
2096 .attrs = it87_attributes_temp,
2097 .is_visible = it87_temp_is_visible,
Guenter Roeck161d8982012-12-19 22:17:01 +01002098};
2099
Guenter Roeckd3766842013-03-30 15:47:21 -07002100static umode_t it87_is_visible(struct kobject *kobj,
2101 struct attribute *attr, int index)
2102{
2103 struct device *dev = container_of(kobj, struct device, kobj);
2104 struct it87_data *data = dev_get_drvdata(dev);
2105
Guenter Roeck8638d0a2015-03-30 11:13:49 -07002106 if ((index == 2 || index == 3) && !data->has_vid)
Guenter Roeckd3766842013-03-30 15:47:21 -07002107 return 0;
2108
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002109 if (index > 3 && !(data->in_internal & BIT(index - 4)))
Guenter Roeckd3766842013-03-30 15:47:21 -07002110 return 0;
2111
2112 return attr->mode;
2113}
2114
Guenter Roeck4573acb2012-03-26 16:17:41 -07002115static struct attribute *it87_attributes[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02002116 &dev_attr_alarms.attr,
Jean Delvare3d30f9e2011-07-25 21:46:10 +02002117 &sensor_dev_attr_intrusion0_alarm.dev_attr.attr,
Guenter Roeck8638d0a2015-03-30 11:13:49 -07002118 &dev_attr_vrm.attr, /* 2 */
2119 &dev_attr_cpu0_vid.attr, /* 3 */
2120 &sensor_dev_attr_in3_label.dev_attr.attr, /* 4 .. 7 */
Guenter Roeckd3766842013-03-30 15:47:21 -07002121 &sensor_dev_attr_in7_label.dev_attr.attr,
2122 &sensor_dev_attr_in8_label.dev_attr.attr,
2123 &sensor_dev_attr_in9_label.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02002124 NULL
2125};
2126
2127static const struct attribute_group it87_group = {
2128 .attrs = it87_attributes,
Guenter Roeckd3766842013-03-30 15:47:21 -07002129 .is_visible = it87_is_visible,
Jean Delvare87808be2006-09-24 21:17:13 +02002130};
2131
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002132static umode_t it87_fan_is_visible(struct kobject *kobj,
2133 struct attribute *attr, int index)
2134{
2135 struct device *dev = container_of(kobj, struct device, kobj);
2136 struct it87_data *data = dev_get_drvdata(dev);
2137 int i = index / 5; /* fan index */
2138 int a = index % 5; /* attribute index */
2139
2140 if (index >= 15) { /* fan 4..6 don't have divisor attributes */
2141 i = (index - 15) / 4 + 3;
2142 a = (index - 15) % 4;
2143 }
2144
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002145 if (!(data->has_fan & BIT(i)))
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002146 return 0;
2147
2148 if (a == 3) { /* beep */
2149 if (!data->has_beep)
2150 return 0;
2151 /* first fan beep attribute is writable */
2152 if (i == __ffs(data->has_fan))
2153 return attr->mode | S_IWUSR;
2154 }
2155
2156 if (a == 4 && has_16bit_fans(data)) /* divisor */
2157 return 0;
2158
2159 return attr->mode;
2160}
2161
2162static struct attribute *it87_attributes_fan[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02002163 &sensor_dev_attr_fan1_input.dev_attr.attr,
2164 &sensor_dev_attr_fan1_min.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01002165 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002166 &sensor_dev_attr_fan1_beep.dev_attr.attr, /* 3 */
2167 &sensor_dev_attr_fan1_div.dev_attr.attr, /* 4 */
2168
Jean Delvare87808be2006-09-24 21:17:13 +02002169 &sensor_dev_attr_fan2_input.dev_attr.attr,
2170 &sensor_dev_attr_fan2_min.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01002171 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002172 &sensor_dev_attr_fan2_beep.dev_attr.attr,
2173 &sensor_dev_attr_fan2_div.dev_attr.attr, /* 9 */
2174
Jean Delvare87808be2006-09-24 21:17:13 +02002175 &sensor_dev_attr_fan3_input.dev_attr.attr,
2176 &sensor_dev_attr_fan3_min.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01002177 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002178 &sensor_dev_attr_fan3_beep.dev_attr.attr,
2179 &sensor_dev_attr_fan3_div.dev_attr.attr, /* 14 */
2180
2181 &sensor_dev_attr_fan4_input.dev_attr.attr, /* 15 */
Guenter Roecke1169ba2012-12-19 22:17:01 +01002182 &sensor_dev_attr_fan4_min.dev_attr.attr,
2183 &sensor_dev_attr_fan4_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002184 &sensor_dev_attr_fan4_beep.dev_attr.attr,
2185
2186 &sensor_dev_attr_fan5_input.dev_attr.attr, /* 19 */
Guenter Roecke1169ba2012-12-19 22:17:01 +01002187 &sensor_dev_attr_fan5_min.dev_attr.attr,
2188 &sensor_dev_attr_fan5_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002189 &sensor_dev_attr_fan5_beep.dev_attr.attr,
2190
2191 &sensor_dev_attr_fan6_input.dev_attr.attr, /* 23 */
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07002192 &sensor_dev_attr_fan6_min.dev_attr.attr,
2193 &sensor_dev_attr_fan6_alarm.dev_attr.attr,
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002194 &sensor_dev_attr_fan6_beep.dev_attr.attr,
Guenter Roeckfa3f70d2015-03-25 23:15:32 -07002195 NULL
Jean Delvare723a0aa2010-03-05 22:17:16 +01002196};
2197
Guenter Roeck9a70ee82013-03-30 14:51:20 -07002198static const struct attribute_group it87_group_fan = {
2199 .attrs = it87_attributes_fan,
2200 .is_visible = it87_fan_is_visible,
Guenter Roecke1169ba2012-12-19 22:17:01 +01002201};
Jean Delvare723a0aa2010-03-05 22:17:16 +01002202
Guenter Roeck5c391262013-03-30 15:02:12 -07002203static umode_t it87_pwm_is_visible(struct kobject *kobj,
2204 struct attribute *attr, int index)
Guenter Roeck60878bc2015-03-26 19:57:42 -07002205{
2206 struct device *dev = container_of(kobj, struct device, kobj);
2207 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeck5c391262013-03-30 15:02:12 -07002208 int i = index / 4; /* pwm index */
2209 int a = index % 4; /* attribute index */
Guenter Roeck60878bc2015-03-26 19:57:42 -07002210
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002211 if (!(data->has_pwm & BIT(i)))
Guenter Roeck5c391262013-03-30 15:02:12 -07002212 return 0;
2213
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002214 /* pwmX_auto_channels_temp is only writable if auto pwm is supported */
2215 if (a == 3 && (has_old_autopwm(data) || has_newer_autopwm(data)))
Guenter Roeck5c391262013-03-30 15:02:12 -07002216 return attr->mode | S_IWUSR;
2217
2218 /* pwm2_freq is writable if there are two pwm frequency selects */
2219 if (has_pwm_freq2(data) && i == 1 && a == 2)
Guenter Roeck60878bc2015-03-26 19:57:42 -07002220 return attr->mode | S_IWUSR;
2221
2222 return attr->mode;
2223}
2224
Guenter Roeck5c391262013-03-30 15:02:12 -07002225static struct attribute *it87_attributes_pwm[] = {
2226 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
2227 &sensor_dev_attr_pwm1.dev_attr.attr,
2228 &sensor_dev_attr_pwm1_freq.dev_attr.attr,
2229 &sensor_dev_attr_pwm1_auto_channels_temp.dev_attr.attr,
2230
2231 &sensor_dev_attr_pwm2_enable.dev_attr.attr,
2232 &sensor_dev_attr_pwm2.dev_attr.attr,
2233 &sensor_dev_attr_pwm2_freq.dev_attr.attr,
2234 &sensor_dev_attr_pwm2_auto_channels_temp.dev_attr.attr,
2235
2236 &sensor_dev_attr_pwm3_enable.dev_attr.attr,
2237 &sensor_dev_attr_pwm3.dev_attr.attr,
2238 &sensor_dev_attr_pwm3_freq.dev_attr.attr,
2239 &sensor_dev_attr_pwm3_auto_channels_temp.dev_attr.attr,
2240
2241 &sensor_dev_attr_pwm4_enable.dev_attr.attr,
2242 &sensor_dev_attr_pwm4.dev_attr.attr,
2243 &sensor_dev_attr_pwm4_freq.dev_attr.attr,
2244 &sensor_dev_attr_pwm4_auto_channels_temp.dev_attr.attr,
2245
2246 &sensor_dev_attr_pwm5_enable.dev_attr.attr,
2247 &sensor_dev_attr_pwm5.dev_attr.attr,
2248 &sensor_dev_attr_pwm5_freq.dev_attr.attr,
2249 &sensor_dev_attr_pwm5_auto_channels_temp.dev_attr.attr,
2250
2251 &sensor_dev_attr_pwm6_enable.dev_attr.attr,
2252 &sensor_dev_attr_pwm6.dev_attr.attr,
2253 &sensor_dev_attr_pwm6_freq.dev_attr.attr,
2254 &sensor_dev_attr_pwm6_auto_channels_temp.dev_attr.attr,
2255
2256 NULL
Jean Delvare723a0aa2010-03-05 22:17:16 +01002257};
2258
Guenter Roeck5c391262013-03-30 15:02:12 -07002259static const struct attribute_group it87_group_pwm = {
2260 .attrs = it87_attributes_pwm,
2261 .is_visible = it87_pwm_is_visible,
2262};
2263
2264static umode_t it87_auto_pwm_is_visible(struct kobject *kobj,
2265 struct attribute *attr, int index)
2266{
2267 struct device *dev = container_of(kobj, struct device, kobj);
2268 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002269 int i = index / 11; /* pwm index */
2270 int a = index % 11; /* attribute index */
2271
2272 if (index >= 33) { /* pwm 4..6 */
2273 i = (index - 33) / 6 + 3;
2274 a = (index - 33) % 6 + 4;
2275 }
Guenter Roeck5c391262013-03-30 15:02:12 -07002276
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002277 if (!(data->has_pwm & BIT(i)))
Guenter Roeck5c391262013-03-30 15:02:12 -07002278 return 0;
2279
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002280 if (has_newer_autopwm(data)) {
2281 if (a < 4) /* no auto point pwm */
2282 return 0;
2283 if (a == 8) /* no auto_point4 */
2284 return 0;
2285 }
2286 if (has_old_autopwm(data)) {
2287 if (a >= 9) /* no pwm_auto_start, pwm_auto_slope */
2288 return 0;
2289 }
2290
Guenter Roeck5c391262013-03-30 15:02:12 -07002291 return attr->mode;
2292}
2293
2294static struct attribute *it87_attributes_auto_pwm[] = {
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002295 &sensor_dev_attr_pwm1_auto_point1_pwm.dev_attr.attr,
2296 &sensor_dev_attr_pwm1_auto_point2_pwm.dev_attr.attr,
2297 &sensor_dev_attr_pwm1_auto_point3_pwm.dev_attr.attr,
2298 &sensor_dev_attr_pwm1_auto_point4_pwm.dev_attr.attr,
2299 &sensor_dev_attr_pwm1_auto_point1_temp.dev_attr.attr,
2300 &sensor_dev_attr_pwm1_auto_point1_temp_hyst.dev_attr.attr,
2301 &sensor_dev_attr_pwm1_auto_point2_temp.dev_attr.attr,
2302 &sensor_dev_attr_pwm1_auto_point3_temp.dev_attr.attr,
2303 &sensor_dev_attr_pwm1_auto_point4_temp.dev_attr.attr,
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002304 &sensor_dev_attr_pwm1_auto_start.dev_attr.attr,
2305 &sensor_dev_attr_pwm1_auto_slope.dev_attr.attr,
Guenter Roeck5c391262013-03-30 15:02:12 -07002306
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002307 &sensor_dev_attr_pwm2_auto_point1_pwm.dev_attr.attr, /* 11 */
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002308 &sensor_dev_attr_pwm2_auto_point2_pwm.dev_attr.attr,
2309 &sensor_dev_attr_pwm2_auto_point3_pwm.dev_attr.attr,
2310 &sensor_dev_attr_pwm2_auto_point4_pwm.dev_attr.attr,
2311 &sensor_dev_attr_pwm2_auto_point1_temp.dev_attr.attr,
2312 &sensor_dev_attr_pwm2_auto_point1_temp_hyst.dev_attr.attr,
2313 &sensor_dev_attr_pwm2_auto_point2_temp.dev_attr.attr,
2314 &sensor_dev_attr_pwm2_auto_point3_temp.dev_attr.attr,
2315 &sensor_dev_attr_pwm2_auto_point4_temp.dev_attr.attr,
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002316 &sensor_dev_attr_pwm2_auto_start.dev_attr.attr,
2317 &sensor_dev_attr_pwm2_auto_slope.dev_attr.attr,
Guenter Roeck5c391262013-03-30 15:02:12 -07002318
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002319 &sensor_dev_attr_pwm3_auto_point1_pwm.dev_attr.attr, /* 22 */
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002320 &sensor_dev_attr_pwm3_auto_point2_pwm.dev_attr.attr,
2321 &sensor_dev_attr_pwm3_auto_point3_pwm.dev_attr.attr,
2322 &sensor_dev_attr_pwm3_auto_point4_pwm.dev_attr.attr,
2323 &sensor_dev_attr_pwm3_auto_point1_temp.dev_attr.attr,
2324 &sensor_dev_attr_pwm3_auto_point1_temp_hyst.dev_attr.attr,
2325 &sensor_dev_attr_pwm3_auto_point2_temp.dev_attr.attr,
2326 &sensor_dev_attr_pwm3_auto_point3_temp.dev_attr.attr,
2327 &sensor_dev_attr_pwm3_auto_point4_temp.dev_attr.attr,
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07002328 &sensor_dev_attr_pwm3_auto_start.dev_attr.attr,
2329 &sensor_dev_attr_pwm3_auto_slope.dev_attr.attr,
2330
2331 &sensor_dev_attr_pwm4_auto_point1_temp.dev_attr.attr, /* 33 */
2332 &sensor_dev_attr_pwm4_auto_point1_temp_hyst.dev_attr.attr,
2333 &sensor_dev_attr_pwm4_auto_point2_temp.dev_attr.attr,
2334 &sensor_dev_attr_pwm4_auto_point3_temp.dev_attr.attr,
2335 &sensor_dev_attr_pwm4_auto_start.dev_attr.attr,
2336 &sensor_dev_attr_pwm4_auto_slope.dev_attr.attr,
2337
2338 &sensor_dev_attr_pwm5_auto_point1_temp.dev_attr.attr,
2339 &sensor_dev_attr_pwm5_auto_point1_temp_hyst.dev_attr.attr,
2340 &sensor_dev_attr_pwm5_auto_point2_temp.dev_attr.attr,
2341 &sensor_dev_attr_pwm5_auto_point3_temp.dev_attr.attr,
2342 &sensor_dev_attr_pwm5_auto_start.dev_attr.attr,
2343 &sensor_dev_attr_pwm5_auto_slope.dev_attr.attr,
2344
2345 &sensor_dev_attr_pwm6_auto_point1_temp.dev_attr.attr,
2346 &sensor_dev_attr_pwm6_auto_point1_temp_hyst.dev_attr.attr,
2347 &sensor_dev_attr_pwm6_auto_point2_temp.dev_attr.attr,
2348 &sensor_dev_attr_pwm6_auto_point3_temp.dev_attr.attr,
2349 &sensor_dev_attr_pwm6_auto_start.dev_attr.attr,
2350 &sensor_dev_attr_pwm6_auto_slope.dev_attr.attr,
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002351
Guenter Roeck5c391262013-03-30 15:02:12 -07002352 NULL,
2353};
2354
2355static const struct attribute_group it87_group_auto_pwm = {
2356 .attrs = it87_attributes_auto_pwm,
2357 .is_visible = it87_auto_pwm_is_visible,
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002358};
2359
Jean Delvare2d8672c2005-07-19 23:56:35 +02002360/* SuperIO detection - will change isa_address if a chip is found */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002361static int __init it87_find(int sioaddr, unsigned short *address,
2362 struct it87_sio_data *sio_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363{
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +02002364 int err;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002365 u16 chip_type;
Jean Delvare98dd22c2008-10-09 15:33:58 +02002366 const char *board_vendor, *board_name;
Guenter Roeckf83a9cb2015-03-31 09:31:34 -07002367 const struct it87_devices *config;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002369 err = superio_enter(sioaddr);
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +02002370 if (err)
2371 return err;
2372
2373 err = -ENODEV;
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002374 chip_type = force_id ? force_id : superio_inw(sioaddr, DEVID);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002375
2376 switch (chip_type) {
2377 case IT8705F_DEVID:
2378 sio_data->type = it87;
2379 break;
2380 case IT8712F_DEVID:
2381 sio_data->type = it8712;
2382 break;
2383 case IT8716F_DEVID:
2384 case IT8726F_DEVID:
2385 sio_data->type = it8716;
2386 break;
2387 case IT8718F_DEVID:
2388 sio_data->type = it8718;
2389 break;
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +01002390 case IT8720F_DEVID:
2391 sio_data->type = it8720;
2392 break;
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002393 case IT8721F_DEVID:
2394 sio_data->type = it8721;
2395 break;
Jean Delvare16b5dda2012-01-16 22:51:48 +01002396 case IT8728F_DEVID:
2397 sio_data->type = it8728;
2398 break;
Justin Maggardead80802015-08-05 12:53:08 -07002399 case IT8732F_DEVID:
2400 sio_data->type = it8732;
2401 break;
Guenter Roeckb0636702012-09-07 17:34:41 -06002402 case IT8771E_DEVID:
2403 sio_data->type = it8771;
2404 break;
2405 case IT8772E_DEVID:
2406 sio_data->type = it8772;
2407 break;
Guenter Roeck7bc32d22015-01-17 14:10:24 -08002408 case IT8781F_DEVID:
2409 sio_data->type = it8781;
2410 break;
Guenter Roeck0531d982012-03-02 11:46:44 -08002411 case IT8782F_DEVID:
2412 sio_data->type = it8782;
2413 break;
2414 case IT8783E_DEVID:
2415 sio_data->type = it8783;
2416 break;
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +01002417 case IT8786E_DEVID:
2418 sio_data->type = it8786;
2419 break;
Guenter Roeck4ee07152015-03-25 23:26:28 -07002420 case IT8790E_DEVID:
2421 sio_data->type = it8790;
2422 break;
Rudolf Marek7183ae82014-04-04 18:01:35 +02002423 case IT8603E_DEVID:
Rudolf Marek574e9bd2014-04-04 18:01:35 +02002424 case IT8623E_DEVID:
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002425 sio_data->type = it8603;
2426 break;
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002427 case IT8620E_DEVID:
2428 sio_data->type = it8620;
2429 break;
Guenter Roeck71a9c232016-01-18 00:35:58 -08002430 case IT8628E_DEVID:
2431 sio_data->type = it8628;
2432 break;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002433 case 0xffff: /* No device at all */
2434 goto exit;
2435 default:
Joe Perchesa8ca1032011-01-12 21:55:10 +01002436 pr_debug("Unsupported chip (DEVID=0x%x)\n", chip_type);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002437 goto exit;
2438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002440 superio_select(sioaddr, PME);
2441 if (!(superio_inb(sioaddr, IT87_ACT_REG) & 0x01)) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002442 pr_info("Device not activated, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 goto exit;
2444 }
2445
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002446 *address = superio_inw(sioaddr, IT87_BASE_REG) & ~(IT87_EXTENT - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 if (*address == 0) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002448 pr_info("Base address not set, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 goto exit;
2450 }
2451
2452 err = 0;
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002453 sio_data->revision = superio_inb(sioaddr, DEVREV) & 0x0f;
Guenter Roeckfaf392f2015-03-26 08:36:18 -07002454 pr_info("Found IT%04x%s chip at 0x%x, revision %d\n", chip_type,
2455 it87_devices[sio_data->type].suffix,
Thomas Lorblanchesa0c14242015-02-13 13:19:06 +01002456 *address, sio_data->revision);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457
Guenter Roeckf83a9cb2015-03-31 09:31:34 -07002458 config = &it87_devices[sio_data->type];
2459
Guenter Roeck7f5726c2015-03-26 08:49:18 -07002460 /* in7 (VSB or VCCH5V) is always internal on some chips */
Guenter Roeckf83a9cb2015-03-31 09:31:34 -07002461 if (has_in7_internal(config))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002462 sio_data->internal |= BIT(1);
Guenter Roeck7f5726c2015-03-26 08:49:18 -07002463
Jean Delvare738e5e02010-08-14 21:08:50 +02002464 /* in8 (Vbat) is always internal */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002465 sio_data->internal |= BIT(2);
Guenter Roeck7f5726c2015-03-26 08:49:18 -07002466
Guenter Roeck73055402015-03-26 09:16:32 -07002467 /* in9 (AVCC3), always internal if supported */
2468 if (has_avcc3(config))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002469 sio_data->internal |= BIT(3); /* in9 is AVCC */
Guenter Roeck73055402015-03-26 09:16:32 -07002470 else
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002471 sio_data->skip_in |= BIT(9);
Jean Delvare738e5e02010-08-14 21:08:50 +02002472
Guenter Roeck36c4d982015-03-26 18:18:19 -07002473 if (!has_six_pwm(config))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002474 sio_data->skip_pwm |= BIT(3) | BIT(4) | BIT(5);
Guenter Roeck36c4d982015-03-26 18:18:19 -07002475
Guenter Roeckf83a9cb2015-03-31 09:31:34 -07002476 if (!has_vid(config))
Jean Delvare895ff262009-12-09 20:35:47 +01002477 sio_data->skip_vid = 1;
Jean Delvared9b327c2010-03-05 22:17:17 +01002478
Guenter Roeck32dd7c42015-02-12 07:40:23 -08002479 /* Read GPIO config and VID value from LDN 7 (GPIO) */
2480 if (sio_data->type == it87) {
Jean Delvared9b327c2010-03-05 22:17:17 +01002481 /* The IT8705F has a different LD number for GPIO */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002482 superio_select(sioaddr, 5);
2483 sio_data->beep_pin = superio_inb(sioaddr,
2484 IT87_SIO_BEEP_PIN_REG) & 0x3f;
Guenter Roeck0531d982012-03-02 11:46:44 -08002485 } else if (sio_data->type == it8783) {
Guenter Roeck088ce2a2013-03-13 16:40:39 -07002486 int reg25, reg27, reg2a, reg2c, regef;
Guenter Roeck0531d982012-03-02 11:46:44 -08002487
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002488 superio_select(sioaddr, GPIO);
Guenter Roeck0531d982012-03-02 11:46:44 -08002489
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002490 reg25 = superio_inb(sioaddr, IT87_SIO_GPIO1_REG);
2491 reg27 = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
2492 reg2a = superio_inb(sioaddr, IT87_SIO_PINX1_REG);
2493 reg2c = superio_inb(sioaddr, IT87_SIO_PINX2_REG);
2494 regef = superio_inb(sioaddr, IT87_SIO_SPI_REG);
Guenter Roeck0531d982012-03-02 11:46:44 -08002495
Guenter Roeck0531d982012-03-02 11:46:44 -08002496 /* Check if fan3 is there or not */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002497 if ((reg27 & BIT(0)) || !(reg2c & BIT(2)))
2498 sio_data->skip_fan |= BIT(2);
Guenter Roeckc9620242015-04-04 09:05:57 -07002499 if ((reg25 & BIT(4)) ||
2500 (!(reg2a & BIT(1)) && (regef & BIT(0))))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002501 sio_data->skip_pwm |= BIT(2);
Guenter Roeck0531d982012-03-02 11:46:44 -08002502
2503 /* Check if fan2 is there or not */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002504 if (reg27 & BIT(7))
2505 sio_data->skip_fan |= BIT(1);
2506 if (reg27 & BIT(3))
2507 sio_data->skip_pwm |= BIT(1);
Guenter Roeck0531d982012-03-02 11:46:44 -08002508
2509 /* VIN5 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002510 if ((reg27 & BIT(0)) || (reg2c & BIT(2)))
2511 sio_data->skip_in |= BIT(5); /* No VIN5 */
Guenter Roeck0531d982012-03-02 11:46:44 -08002512
2513 /* VIN6 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002514 if (reg27 & BIT(1))
2515 sio_data->skip_in |= BIT(6); /* No VIN6 */
Guenter Roeck0531d982012-03-02 11:46:44 -08002516
2517 /*
2518 * VIN7
2519 * Does not depend on bit 2 of Reg2C, contrary to datasheet.
2520 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002521 if (reg27 & BIT(2)) {
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002522 /*
2523 * The data sheet is a bit unclear regarding the
2524 * internal voltage divider for VCCH5V. It says
2525 * "This bit enables and switches VIN7 (pin 91) to the
2526 * internal voltage divider for VCCH5V".
2527 * This is different to other chips, where the internal
2528 * voltage divider would connect VIN7 to an internal
2529 * voltage source. Maybe that is the case here as well.
2530 *
2531 * Since we don't know for sure, re-route it if that is
2532 * not the case, and ask the user to report if the
2533 * resulting voltage is sane.
2534 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002535 if (!(reg2c & BIT(1))) {
2536 reg2c |= BIT(1);
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002537 superio_outb(sioaddr, IT87_SIO_PINX2_REG,
2538 reg2c);
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002539 pr_notice("Routing internal VCCH5V to in7.\n");
2540 }
2541 pr_notice("in7 routed to internal voltage divider, with external pin disabled.\n");
2542 pr_notice("Please report if it displays a reasonable voltage.\n");
2543 }
Guenter Roeck0531d982012-03-02 11:46:44 -08002544
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002545 if (reg2c & BIT(0))
2546 sio_data->internal |= BIT(0);
2547 if (reg2c & BIT(1))
2548 sio_data->internal |= BIT(1);
Guenter Roeck0531d982012-03-02 11:46:44 -08002549
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002550 sio_data->beep_pin = superio_inb(sioaddr,
2551 IT87_SIO_BEEP_PIN_REG) & 0x3f;
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002552 } else if (sio_data->type == it8603) {
2553 int reg27, reg29;
Guenter Roeck0531d982012-03-02 11:46:44 -08002554
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002555 superio_select(sioaddr, GPIO);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002556
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002557 reg27 = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002558
2559 /* Check if fan3 is there or not */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002560 if (reg27 & BIT(6))
2561 sio_data->skip_pwm |= BIT(2);
2562 if (reg27 & BIT(7))
2563 sio_data->skip_fan |= BIT(2);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002564
2565 /* Check if fan2 is there or not */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002566 reg29 = superio_inb(sioaddr, IT87_SIO_GPIO5_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002567 if (reg29 & BIT(1))
2568 sio_data->skip_pwm |= BIT(1);
2569 if (reg29 & BIT(2))
2570 sio_data->skip_fan |= BIT(1);
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002571
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002572 sio_data->skip_in |= BIT(5); /* No VIN5 */
2573 sio_data->skip_in |= BIT(6); /* No VIN6 */
Rudolf Marekc145d5c2014-01-29 20:40:08 +01002574
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002575 sio_data->beep_pin = superio_inb(sioaddr,
2576 IT87_SIO_BEEP_PIN_REG) & 0x3f;
Guenter Roeck71a9c232016-01-18 00:35:58 -08002577 } else if (sio_data->type == it8620 || sio_data->type == it8628) {
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002578 int reg;
2579
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002580 superio_select(sioaddr, GPIO);
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002581
Guenter Roeck36c4d982015-03-26 18:18:19 -07002582 /* Check for pwm5 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002583 reg = superio_inb(sioaddr, IT87_SIO_GPIO1_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002584 if (reg & BIT(6))
2585 sio_data->skip_pwm |= BIT(4);
Guenter Roeck36c4d982015-03-26 18:18:19 -07002586
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002587 /* Check for fan4, fan5 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002588 reg = superio_inb(sioaddr, IT87_SIO_GPIO2_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002589 if (!(reg & BIT(5)))
2590 sio_data->skip_fan |= BIT(3);
2591 if (!(reg & BIT(4)))
2592 sio_data->skip_fan |= BIT(4);
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002593
2594 /* Check for pwm3, fan3 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002595 reg = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002596 if (reg & BIT(6))
2597 sio_data->skip_pwm |= BIT(2);
2598 if (reg & BIT(7))
2599 sio_data->skip_fan |= BIT(2);
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002600
Guenter Roeck36c4d982015-03-26 18:18:19 -07002601 /* Check for pwm4 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002602 reg = superio_inb(sioaddr, IT87_SIO_GPIO4_REG);
Guenter Roecka941f262017-02-08 14:05:56 -08002603 if (reg & BIT(2))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002604 sio_data->skip_pwm |= BIT(3);
Guenter Roeck36c4d982015-03-26 18:18:19 -07002605
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002606 /* Check for pwm2, fan2 */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002607 reg = superio_inb(sioaddr, IT87_SIO_GPIO5_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002608 if (reg & BIT(1))
2609 sio_data->skip_pwm |= BIT(1);
2610 if (reg & BIT(2))
2611 sio_data->skip_fan |= BIT(1);
Guenter Roeck36c4d982015-03-26 18:18:19 -07002612 /* Check for pwm6, fan6 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002613 if (!(reg & BIT(7))) {
2614 sio_data->skip_pwm |= BIT(5);
2615 sio_data->skip_fan |= BIT(5);
Guenter Roeck36c4d982015-03-26 18:18:19 -07002616 }
Guenter Roeck3ba9d972015-02-13 20:13:20 -08002617
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002618 sio_data->beep_pin = superio_inb(sioaddr,
2619 IT87_SIO_BEEP_PIN_REG) & 0x3f;
Jean Delvare895ff262009-12-09 20:35:47 +01002620 } else {
Jean Delvare87673dd2006-08-28 14:37:19 +02002621 int reg;
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002622 bool uart6;
Jean Delvare87673dd2006-08-28 14:37:19 +02002623
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002624 superio_select(sioaddr, GPIO);
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002625
Guenter Roecka0df9262015-04-05 16:51:36 -07002626 /* Check for fan4, fan5 */
2627 if (has_five_fans(config)) {
2628 reg = superio_inb(sioaddr, IT87_SIO_GPIO2_REG);
2629 switch (sio_data->type) {
2630 case it8718:
2631 if (reg & BIT(5))
2632 sio_data->skip_fan |= BIT(3);
2633 if (reg & BIT(4))
2634 sio_data->skip_fan |= BIT(4);
2635 break;
2636 case it8720:
2637 case it8721:
2638 case it8728:
2639 if (!(reg & BIT(5)))
2640 sio_data->skip_fan |= BIT(3);
2641 if (!(reg & BIT(4)))
2642 sio_data->skip_fan |= BIT(4);
2643 break;
2644 default:
2645 break;
2646 }
2647 }
2648
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002649 reg = superio_inb(sioaddr, IT87_SIO_GPIO3_REG);
Guenter Roeck32dd7c42015-02-12 07:40:23 -08002650 if (!sio_data->skip_vid) {
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002651 /* We need at least 4 VID pins */
2652 if (reg & 0x0f) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002653 pr_info("VID is disabled (pins used for GPIO)\n");
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002654 sio_data->skip_vid = 1;
2655 }
Jean Delvare895ff262009-12-09 20:35:47 +01002656 }
2657
Jean Delvare591ec652009-12-09 20:35:48 +01002658 /* Check if fan3 is there or not */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002659 if (reg & BIT(6))
2660 sio_data->skip_pwm |= BIT(2);
2661 if (reg & BIT(7))
2662 sio_data->skip_fan |= BIT(2);
Jean Delvare591ec652009-12-09 20:35:48 +01002663
2664 /* Check if fan2 is there or not */
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002665 reg = superio_inb(sioaddr, IT87_SIO_GPIO5_REG);
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002666 if (reg & BIT(1))
2667 sio_data->skip_pwm |= BIT(1);
2668 if (reg & BIT(2))
2669 sio_data->skip_fan |= BIT(1);
Jean Delvare591ec652009-12-09 20:35:48 +01002670
Guenter Roeckc9620242015-04-04 09:05:57 -07002671 if ((sio_data->type == it8718 || sio_data->type == it8720) &&
2672 !(sio_data->skip_vid))
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002673 sio_data->vid_value = superio_inb(sioaddr,
2674 IT87_SIO_VID_REG);
Jean Delvare87673dd2006-08-28 14:37:19 +02002675
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002676 reg = superio_inb(sioaddr, IT87_SIO_PINX2_REG);
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002677
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002678 uart6 = sio_data->type == it8782 && (reg & BIT(2));
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002679
Jean Delvare436cad22010-07-09 16:22:48 +02002680 /*
2681 * The IT8720F has no VIN7 pin, so VCCH should always be
2682 * routed internally to VIN7 with an internal divider.
2683 * Curiously, there still is a configuration bit to control
2684 * this, which means it can be set incorrectly. And even
2685 * more curiously, many boards out there are improperly
2686 * configured, even though the IT8720F datasheet claims
2687 * that the internal routing of VCCH to VIN7 is the default
2688 * setting. So we force the internal routing in this case.
Guenter Roeck0531d982012-03-02 11:46:44 -08002689 *
2690 * On IT8782F, VIN7 is multiplexed with one of the UART6 pins.
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002691 * If UART6 is enabled, re-route VIN7 to the internal divider
2692 * if that is not already the case.
Jean Delvare436cad22010-07-09 16:22:48 +02002693 */
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002694 if ((sio_data->type == it8720 || uart6) && !(reg & BIT(1))) {
2695 reg |= BIT(1);
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002696 superio_outb(sioaddr, IT87_SIO_PINX2_REG, reg);
Joe Perchesa8ca1032011-01-12 21:55:10 +01002697 pr_notice("Routing internal VCCH to in7\n");
Jean Delvare436cad22010-07-09 16:22:48 +02002698 }
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002699 if (reg & BIT(0))
2700 sio_data->internal |= BIT(0);
2701 if (reg & BIT(1))
2702 sio_data->internal |= BIT(1);
Jean Delvared9b327c2010-03-05 22:17:17 +01002703
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002704 /*
2705 * On IT8782F, UART6 pins overlap with VIN5, VIN6, and VIN7.
2706 * While VIN7 can be routed to the internal voltage divider,
2707 * VIN5 and VIN6 are not available if UART6 is enabled.
Guenter Roeck4573acb2012-03-26 16:17:41 -07002708 *
2709 * Also, temp3 is not available if UART6 is enabled and TEMPIN3
2710 * is the temperature source. Since we can not read the
2711 * temperature source here, skip_temp is preliminary.
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002712 */
Guenter Roeck4573acb2012-03-26 16:17:41 -07002713 if (uart6) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002714 sio_data->skip_in |= BIT(5) | BIT(6);
2715 sio_data->skip_temp |= BIT(2);
Guenter Roeck4573acb2012-03-26 16:17:41 -07002716 }
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002717
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002718 sio_data->beep_pin = superio_inb(sioaddr,
2719 IT87_SIO_BEEP_PIN_REG) & 0x3f;
Jean Delvare87673dd2006-08-28 14:37:19 +02002720 }
Jean Delvared9b327c2010-03-05 22:17:17 +01002721 if (sio_data->beep_pin)
Joe Perchesa8ca1032011-01-12 21:55:10 +01002722 pr_info("Beeping is supported\n");
Jean Delvare87673dd2006-08-28 14:37:19 +02002723
Jean Delvare98dd22c2008-10-09 15:33:58 +02002724 /* Disable specific features based on DMI strings */
2725 board_vendor = dmi_get_system_info(DMI_BOARD_VENDOR);
2726 board_name = dmi_get_system_info(DMI_BOARD_NAME);
2727 if (board_vendor && board_name) {
Guenter Roeckc9620242015-04-04 09:05:57 -07002728 if (strcmp(board_vendor, "nVIDIA") == 0 &&
2729 strcmp(board_name, "FN68PT") == 0) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002730 /*
2731 * On the Shuttle SN68PT, FAN_CTL2 is apparently not
2732 * connected to a fan, but to something else. One user
2733 * has reported instant system power-off when changing
2734 * the PWM2 duty cycle, so we disable it.
2735 * I use the board name string as the trigger in case
2736 * the same board is ever used in other systems.
2737 */
Joe Perchesa8ca1032011-01-12 21:55:10 +01002738 pr_info("Disabling pwm2 due to hardware constraints\n");
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002739 sio_data->skip_pwm = BIT(1);
Jean Delvare98dd22c2008-10-09 15:33:58 +02002740 }
2741 }
2742
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743exit:
Guenter Roeck3c2e3512015-03-28 08:03:10 -07002744 superio_exit(sioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 return err;
2746}
2747
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002748/* Called when we have found a new IT87. */
2749static void it87_init_device(struct platform_device *pdev)
2750{
2751 struct it87_sio_data *sio_data = dev_get_platdata(&pdev->dev);
2752 struct it87_data *data = platform_get_drvdata(pdev);
2753 int tmp, i;
2754 u8 mask;
2755
2756 /*
2757 * For each PWM channel:
2758 * - If it is in automatic mode, setting to manual mode should set
2759 * the fan to full speed by default.
2760 * - If it is in manual mode, we need a mapping to temperature
2761 * channels to use when later setting to automatic mode later.
2762 * Use a 1:1 mapping by default (we are clueless.)
2763 * In both cases, the value can (and should) be changed by the user
2764 * prior to switching to a different mode.
2765 * Note that this is no longer needed for the IT8721F and later, as
2766 * these have separate registers for the temperature mapping and the
2767 * manual duty cycle.
2768 */
Guenter Roeck23100482015-04-02 08:23:45 -07002769 for (i = 0; i < NUM_AUTO_PWM; i++) {
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002770 data->pwm_temp_map[i] = i;
2771 data->pwm_duty[i] = 0x7f; /* Full speed */
2772 data->auto_pwm[i][3] = 0x7f; /* Full speed, hard-coded */
2773 }
2774
2775 /*
2776 * Some chips seem to have default value 0xff for all limit
2777 * registers. For low voltage limits it makes no sense and triggers
2778 * alarms, so change to 0 instead. For high temperature limits, it
2779 * means -1 degree C, which surprisingly doesn't trigger an alarm,
2780 * but is still confusing, so change to 127 degrees C.
2781 */
Guenter Roeck23100482015-04-02 08:23:45 -07002782 for (i = 0; i < NUM_VIN_LIMIT; i++) {
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002783 tmp = it87_read_value(data, IT87_REG_VIN_MIN(i));
2784 if (tmp == 0xff)
2785 it87_write_value(data, IT87_REG_VIN_MIN(i), 0);
2786 }
Guenter Roeck23100482015-04-02 08:23:45 -07002787 for (i = 0; i < NUM_TEMP_LIMIT; i++) {
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002788 tmp = it87_read_value(data, IT87_REG_TEMP_HIGH(i));
2789 if (tmp == 0xff)
2790 it87_write_value(data, IT87_REG_TEMP_HIGH(i), 127);
2791 }
2792
2793 /*
2794 * Temperature channels are not forcibly enabled, as they can be
2795 * set to two different sensor types and we can't guess which one
2796 * is correct for a given system. These channels can be enabled at
2797 * run-time through the temp{1-3}_type sysfs accessors if needed.
2798 */
2799
2800 /* Check if voltage monitors are reset manually or by some reason */
2801 tmp = it87_read_value(data, IT87_REG_VIN_ENABLE);
2802 if ((tmp & 0xff) == 0) {
2803 /* Enable all voltage monitors */
2804 it87_write_value(data, IT87_REG_VIN_ENABLE, 0xff);
2805 }
2806
2807 /* Check if tachometers are reset manually or by some reason */
2808 mask = 0x70 & ~(sio_data->skip_fan << 4);
2809 data->fan_main_ctrl = it87_read_value(data, IT87_REG_FAN_MAIN_CTRL);
2810 if ((data->fan_main_ctrl & mask) == 0) {
2811 /* Enable all fan tachometers */
2812 data->fan_main_ctrl |= mask;
2813 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
2814 data->fan_main_ctrl);
2815 }
2816 data->has_fan = (data->fan_main_ctrl >> 4) & 0x07;
2817
2818 tmp = it87_read_value(data, IT87_REG_FAN_16BIT);
2819
2820 /* Set tachometers to 16-bit mode if needed */
2821 if (has_fan16_config(data)) {
2822 if (~tmp & 0x07 & data->has_fan) {
2823 dev_dbg(&pdev->dev,
2824 "Setting fan1-3 to 16-bit mode\n");
2825 it87_write_value(data, IT87_REG_FAN_16BIT,
2826 tmp | 0x07);
2827 }
2828 }
2829
2830 /* Check for additional fans */
2831 if (has_five_fans(data)) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002832 if (tmp & BIT(4))
2833 data->has_fan |= BIT(3); /* fan4 enabled */
2834 if (tmp & BIT(5))
2835 data->has_fan |= BIT(4); /* fan5 enabled */
2836 if (has_six_fans(data) && (tmp & BIT(2)))
2837 data->has_fan |= BIT(5); /* fan6 enabled */
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002838 }
2839
2840 /* Fan input pins may be used for alternative functions */
2841 data->has_fan &= ~sio_data->skip_fan;
2842
2843 /* Check if pwm5, pwm6 are enabled */
2844 if (has_six_pwm(data)) {
2845 /* The following code may be IT8620E specific */
2846 tmp = it87_read_value(data, IT87_REG_FAN_DIV);
2847 if ((tmp & 0xc0) == 0xc0)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002848 sio_data->skip_pwm |= BIT(4);
2849 if (!(tmp & BIT(3)))
2850 sio_data->skip_pwm |= BIT(5);
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002851 }
2852
2853 /* Start monitoring */
2854 it87_write_value(data, IT87_REG_CONFIG,
2855 (it87_read_value(data, IT87_REG_CONFIG) & 0x3e)
2856 | (update_vbat ? 0x41 : 0x01));
2857}
2858
2859/* Return 1 if and only if the PWM interface is safe to use */
2860static int it87_check_pwm(struct device *dev)
2861{
2862 struct it87_data *data = dev_get_drvdata(dev);
2863 /*
2864 * Some BIOSes fail to correctly configure the IT87 fans. All fans off
2865 * and polarity set to active low is sign that this is the case so we
2866 * disable pwm control to protect the user.
2867 */
2868 int tmp = it87_read_value(data, IT87_REG_FAN_CTL);
2869
2870 if ((tmp & 0x87) == 0) {
2871 if (fix_pwm_polarity) {
2872 /*
2873 * The user asks us to attempt a chip reconfiguration.
2874 * This means switching to active high polarity and
2875 * inverting all fan speed values.
2876 */
2877 int i;
2878 u8 pwm[3];
2879
Guenter Roeck23100482015-04-02 08:23:45 -07002880 for (i = 0; i < ARRAY_SIZE(pwm); i++)
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07002881 pwm[i] = it87_read_value(data,
2882 IT87_REG_PWM[i]);
2883
2884 /*
2885 * If any fan is in automatic pwm mode, the polarity
2886 * might be correct, as suspicious as it seems, so we
2887 * better don't change anything (but still disable the
2888 * PWM interface).
2889 */
2890 if (!((pwm[0] | pwm[1] | pwm[2]) & 0x80)) {
2891 dev_info(dev,
2892 "Reconfiguring PWM to active high polarity\n");
2893 it87_write_value(data, IT87_REG_FAN_CTL,
2894 tmp | 0x87);
2895 for (i = 0; i < 3; i++)
2896 it87_write_value(data,
2897 IT87_REG_PWM[i],
2898 0x7f & ~pwm[i]);
2899 return 1;
2900 }
2901
2902 dev_info(dev,
2903 "PWM configuration is too broken to be fixed\n");
2904 }
2905
2906 dev_info(dev,
2907 "Detected broken BIOS defaults, disabling PWM interface\n");
2908 return 0;
2909 } else if (fix_pwm_polarity) {
2910 dev_info(dev,
2911 "PWM configuration looks sane, won't touch\n");
2912 }
2913
2914 return 1;
2915}
2916
Bill Pemberton6c931ae2012-11-19 13:22:35 -05002917static int it87_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 struct it87_data *data;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002920 struct resource *res;
2921 struct device *dev = &pdev->dev;
Jingoo Hana8b3a3a2013-07-30 17:13:06 +09002922 struct it87_sio_data *sio_data = dev_get_platdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 int enable_pwm_interface;
Guenter Roeck8638d0a2015-03-30 11:13:49 -07002924 struct device *hwmon_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002926 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
Guenter Roeck62a1d052012-03-24 21:54:41 -07002927 if (!devm_request_region(&pdev->dev, res->start, IT87_EC_EXTENT,
2928 DRVNAME)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002929 dev_err(dev, "Failed to request region 0x%lx-0x%lx\n",
2930 (unsigned long)res->start,
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05002931 (unsigned long)(res->start + IT87_EC_EXTENT - 1));
Guenter Roeck62a1d052012-03-24 21:54:41 -07002932 return -EBUSY;
Jean Delvare8e9afcb2006-12-12 18:18:28 +01002933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
Guenter Roeck62a1d052012-03-24 21:54:41 -07002935 data = devm_kzalloc(&pdev->dev, sizeof(struct it87_data), GFP_KERNEL);
2936 if (!data)
2937 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002939 data->addr = res->start;
2940 data->type = sio_data->type;
Guenter Roeck483db432012-12-19 22:17:02 +01002941 data->features = it87_devices[sio_data->type].features;
Guenter Roeck5d8d2f22012-12-19 22:17:02 +01002942 data->peci_mask = it87_devices[sio_data->type].peci_mask;
Guenter Roeck19529782012-12-19 22:17:02 +01002943 data->old_peci_mask = it87_devices[sio_data->type].old_peci_mask;
Guenter Roeck483db432012-12-19 22:17:02 +01002944 /*
2945 * IT8705F Datasheet 0.4.1, 3h == Version G.
2946 * IT8712F Datasheet 0.9.1, section 8.3.5 indicates 8h == Version J.
2947 * These are the first revisions with 16-bit tachometer support.
2948 */
2949 switch (data->type) {
2950 case it87:
2951 if (sio_data->revision >= 0x03) {
2952 data->features &= ~FEAT_OLD_AUTOPWM;
Guenter Roeck9faf28c2015-02-12 07:11:38 -08002953 data->features |= FEAT_FAN16_CONFIG | FEAT_16BIT_FANS;
Guenter Roeck483db432012-12-19 22:17:02 +01002954 }
2955 break;
2956 case it8712:
2957 if (sio_data->revision >= 0x08) {
2958 data->features &= ~FEAT_OLD_AUTOPWM;
Guenter Roeck9faf28c2015-02-12 07:11:38 -08002959 data->features |= FEAT_FAN16_CONFIG | FEAT_16BIT_FANS |
2960 FEAT_FIVE_FANS;
Guenter Roeck483db432012-12-19 22:17:02 +01002961 }
2962 break;
2963 default:
2964 break;
2965 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966
2967 /* Now, we do the remaining detection. */
Guenter Roeckc9620242015-04-04 09:05:57 -07002968 if ((it87_read_value(data, IT87_REG_CONFIG) & 0x80) ||
2969 it87_read_value(data, IT87_REG_CHIPID) != 0x90)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002970 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002972 platform_set_drvdata(pdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973
Ingo Molnar9a61bf62006-01-18 23:19:26 +01002974 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 /* Check PWM configuration */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002977 enable_pwm_interface = it87_check_pwm(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002979 /* Starting with IT8721F, we handle scaling of internal voltages */
Jean Delvare16b5dda2012-01-16 22:51:48 +01002980 if (has_12mv_adc(data)) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002981 if (sio_data->internal & BIT(0))
2982 data->in_scaled |= BIT(3); /* in3 is AVCC */
2983 if (sio_data->internal & BIT(1))
2984 data->in_scaled |= BIT(7); /* in7 is VSB */
2985 if (sio_data->internal & BIT(2))
2986 data->in_scaled |= BIT(8); /* in8 is Vbat */
2987 if (sio_data->internal & BIT(3))
2988 data->in_scaled |= BIT(9); /* in9 is AVCC */
Guenter Roeck7bc32d22015-01-17 14:10:24 -08002989 } else if (sio_data->type == it8781 || sio_data->type == it8782 ||
2990 sio_data->type == it8783) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002991 if (sio_data->internal & BIT(0))
2992 data->in_scaled |= BIT(3); /* in3 is VCC5V */
2993 if (sio_data->internal & BIT(1))
2994 data->in_scaled |= BIT(7); /* in7 is VCCH5V */
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002995 }
2996
Guenter Roeck4573acb2012-03-26 16:17:41 -07002997 data->has_temp = 0x07;
Guenter Roeck48b2ae72015-04-02 08:06:12 -07002998 if (sio_data->skip_temp & BIT(2)) {
Guenter Roeckc9620242015-04-04 09:05:57 -07002999 if (sio_data->type == it8782 &&
3000 !(it87_read_value(data, IT87_REG_TEMP_EXTRA) & 0x80))
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003001 data->has_temp &= ~BIT(2);
Guenter Roeck4573acb2012-03-26 16:17:41 -07003002 }
3003
Guenter Roeckd3766842013-03-30 15:47:21 -07003004 data->in_internal = sio_data->internal;
Guenter Roeck52929712013-03-30 14:00:08 -07003005 data->has_in = 0x3ff & ~sio_data->skip_in;
3006
Guenter Roeckcc18da72015-04-01 10:03:01 -07003007 if (has_six_temp(data)) {
3008 u8 reg = it87_read_value(data, IT87_REG_TEMP456_ENABLE);
3009
Guenter Roeckf838aa22015-04-01 20:09:36 -07003010 /* Check for additional temperature sensors */
Guenter Roeckcc18da72015-04-01 10:03:01 -07003011 if ((reg & 0x03) >= 0x02)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003012 data->has_temp |= BIT(3);
Guenter Roeckcc18da72015-04-01 10:03:01 -07003013 if (((reg >> 2) & 0x03) >= 0x02)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003014 data->has_temp |= BIT(4);
Guenter Roeckcc18da72015-04-01 10:03:01 -07003015 if (((reg >> 4) & 0x03) >= 0x02)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003016 data->has_temp |= BIT(5);
Guenter Roeckf838aa22015-04-01 20:09:36 -07003017
3018 /* Check for additional voltage sensors */
3019 if ((reg & 0x03) == 0x01)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003020 data->has_in |= BIT(10);
Guenter Roeckf838aa22015-04-01 20:09:36 -07003021 if (((reg >> 2) & 0x03) == 0x01)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003022 data->has_in |= BIT(11);
Guenter Roeckf838aa22015-04-01 20:09:36 -07003023 if (((reg >> 4) & 0x03) == 0x01)
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003024 data->has_in |= BIT(12);
Guenter Roeckcc18da72015-04-01 10:03:01 -07003025 }
3026
Guenter Roeck52929712013-03-30 14:00:08 -07003027 data->has_beep = !!sio_data->beep_pin;
3028
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 /* Initialize the IT87 chip */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003030 it87_init_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031
Guenter Roeckd3766842013-03-30 15:47:21 -07003032 if (!sio_data->skip_vid) {
3033 data->has_vid = true;
3034 data->vrm = vid_which_vrm();
3035 /* VID reading from Super-I/O config space if available */
3036 data->vid = sio_data->vid_value;
3037 }
3038
Guenter Roeck8638d0a2015-03-30 11:13:49 -07003039 /* Prepare for sysfs hooks */
3040 data->groups[0] = &it87_group;
3041 data->groups[1] = &it87_group_in;
3042 data->groups[2] = &it87_group_temp;
3043 data->groups[3] = &it87_group_fan;
Jean Delvare17d648b2006-08-28 14:23:46 +02003044
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 if (enable_pwm_interface) {
Guenter Roeck48b2ae72015-04-02 08:06:12 -07003046 data->has_pwm = BIT(ARRAY_SIZE(IT87_REG_PWM)) - 1;
Guenter Roeck5c391262013-03-30 15:02:12 -07003047 data->has_pwm &= ~sio_data->skip_pwm;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01003048
Guenter Roeck8638d0a2015-03-30 11:13:49 -07003049 data->groups[4] = &it87_group_pwm;
Guenter Roeck2cbb9c32015-04-05 11:53:29 -07003050 if (has_old_autopwm(data) || has_newer_autopwm(data))
Guenter Roeck8638d0a2015-03-30 11:13:49 -07003051 data->groups[5] = &it87_group_auto_pwm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 }
3053
Guenter Roeck8638d0a2015-03-30 11:13:49 -07003054 hwmon_dev = devm_hwmon_device_register_with_groups(dev,
3055 it87_devices[sio_data->type].name,
3056 data, data->groups);
3057 return PTR_ERR_OR_ZERO(hwmon_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058}
3059
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07003060static struct platform_driver it87_driver = {
3061 .driver = {
3062 .name = DRVNAME,
3063 },
3064 .probe = it87_probe,
Guenter Roeckc1e7a4c2015-03-28 09:27:27 -07003065};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066
Guenter Roecke84bd952015-03-28 08:24:29 -07003067static int __init it87_device_add(int index, unsigned short address,
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003068 const struct it87_sio_data *sio_data)
3069{
Guenter Roeck8e50e3c2015-03-28 07:49:14 -07003070 struct platform_device *pdev;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003071 struct resource res = {
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05003072 .start = address + IT87_EC_OFFSET,
3073 .end = address + IT87_EC_OFFSET + IT87_EC_EXTENT - 1,
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003074 .name = DRVNAME,
3075 .flags = IORESOURCE_IO,
3076 };
3077 int err;
3078
Jean Delvareb9acb642009-01-07 16:37:35 +01003079 err = acpi_check_resource_conflict(&res);
3080 if (err)
Guenter Roeck5cae84a2015-03-28 07:44:59 -07003081 return err;
Jean Delvareb9acb642009-01-07 16:37:35 +01003082
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003083 pdev = platform_device_alloc(DRVNAME, address);
Guenter Roeck5cae84a2015-03-28 07:44:59 -07003084 if (!pdev)
3085 return -ENOMEM;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003086
3087 err = platform_device_add_resources(pdev, &res, 1);
3088 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01003089 pr_err("Device resource addition failed (%d)\n", err);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003090 goto exit_device_put;
3091 }
3092
3093 err = platform_device_add_data(pdev, sio_data,
3094 sizeof(struct it87_sio_data));
3095 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01003096 pr_err("Platform data allocation failed\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003097 goto exit_device_put;
3098 }
3099
3100 err = platform_device_add(pdev);
3101 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01003102 pr_err("Device addition failed (%d)\n", err);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003103 goto exit_device_put;
3104 }
3105
Guenter Roecke84bd952015-03-28 08:24:29 -07003106 it87_pdev[index] = pdev;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003107 return 0;
3108
3109exit_device_put:
3110 platform_device_put(pdev);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003111 return err;
3112}
3113
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114static int __init sm_it87_init(void)
3115{
Guenter Roecke84bd952015-03-28 08:24:29 -07003116 int sioaddr[2] = { REG_2E, REG_4E };
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003117 struct it87_sio_data sio_data;
Guenter Roeck3fbd2ba2017-03-12 06:18:58 -07003118 unsigned short isa_address[2];
Guenter Roecke84bd952015-03-28 08:24:29 -07003119 bool found = false;
3120 int i, err;
Jean Delvarefde09502005-07-19 23:51:07 +02003121
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003122 err = platform_driver_register(&it87_driver);
3123 if (err)
3124 return err;
3125
Guenter Roecke84bd952015-03-28 08:24:29 -07003126 for (i = 0; i < ARRAY_SIZE(sioaddr); i++) {
3127 memset(&sio_data, 0, sizeof(struct it87_sio_data));
Guenter Roeck3fbd2ba2017-03-12 06:18:58 -07003128 isa_address[i] = 0;
3129 err = it87_find(sioaddr[i], &isa_address[i], &sio_data);
3130 if (err || isa_address[i] == 0)
Guenter Roecke84bd952015-03-28 08:24:29 -07003131 continue;
Guenter Roeck3fbd2ba2017-03-12 06:18:58 -07003132 /*
3133 * Don't register second chip if its ISA address matches
3134 * the first chip's ISA address.
3135 */
3136 if (i && isa_address[i] == isa_address[0])
3137 break;
Guenter Roecke84bd952015-03-28 08:24:29 -07003138
Guenter Roeck3fbd2ba2017-03-12 06:18:58 -07003139 err = it87_device_add(i, isa_address[i], &sio_data);
Guenter Roecke84bd952015-03-28 08:24:29 -07003140 if (err)
3141 goto exit_dev_unregister;
Guenter Roeck3fbd2ba2017-03-12 06:18:58 -07003142
Guenter Roecke84bd952015-03-28 08:24:29 -07003143 found = true;
Guenter Roeck3fbd2ba2017-03-12 06:18:58 -07003144
3145 /*
3146 * IT8705F may respond on both SIO addresses.
3147 * Stop probing after finding one.
3148 */
3149 if (sio_data.type == it87)
3150 break;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003151 }
3152
Guenter Roecke84bd952015-03-28 08:24:29 -07003153 if (!found) {
3154 err = -ENODEV;
3155 goto exit_unregister;
3156 }
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003157 return 0;
Guenter Roecke84bd952015-03-28 08:24:29 -07003158
3159exit_dev_unregister:
3160 /* NULL check handled by platform_device_unregister */
3161 platform_device_unregister(it87_pdev[0]);
3162exit_unregister:
3163 platform_driver_unregister(&it87_driver);
3164 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165}
3166
3167static void __exit sm_it87_exit(void)
3168{
Guenter Roecke84bd952015-03-28 08:24:29 -07003169 /* NULL check handled by platform_device_unregister */
3170 platform_device_unregister(it87_pdev[1]);
3171 platform_device_unregister(it87_pdev[0]);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02003172 platform_driver_unregister(&it87_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173}
3174
Jean Delvare7c81c602014-01-29 20:40:08 +01003175MODULE_AUTHOR("Chris Gauthron, Jean Delvare <jdelvare@suse.de>");
Jean Delvare44c1bcd2010-10-28 20:31:51 +02003176MODULE_DESCRIPTION("IT8705F/IT871xF/IT872xF hardware monitoring driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177module_param(update_vbat, bool, 0);
3178MODULE_PARM_DESC(update_vbat, "Update vbat if set else return powerup value");
3179module_param(fix_pwm_polarity, bool, 0);
Jean Delvare5f2dc792010-03-05 22:17:18 +01003180MODULE_PARM_DESC(fix_pwm_polarity,
3181 "Force PWM polarity to active high (DANGEROUS)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182MODULE_LICENSE("GPL");
3183
3184module_init(sm_it87_init);
3185module_exit(sm_it87_exit);