blob: e8fdc438df0a5ff5eb555f8824f68796180878f4 [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 *
13 * Supports: IT8705F Super I/O chip w/LPC interface
14 * IT8712F Super I/O chip w/LPC interface
15 * IT8716F Super I/O chip w/LPC interface
16 * IT8718F Super I/O chip w/LPC interface
17 * IT8720F Super I/O chip w/LPC interface
Jean Delvare44c1bcd2010-10-28 20:31:51 +020018 * IT8721F Super I/O chip w/LPC interface
Jean Delvare5f2dc792010-03-05 22:17:18 +010019 * IT8726F Super I/O chip w/LPC interface
Jean Delvare16b5dda2012-01-16 22:51:48 +010020 * IT8728F Super I/O chip w/LPC interface
Jean Delvare44c1bcd2010-10-28 20:31:51 +020021 * IT8758E Super I/O chip w/LPC interface
Guenter Roeck0531d982012-03-02 11:46:44 -080022 * IT8782F Super I/O chip w/LPC interface
23 * IT8783E/F Super I/O chip w/LPC interface
Jean Delvare5f2dc792010-03-05 22:17:18 +010024 * Sis950 A clone of the IT8705F
25 *
26 * Copyright (C) 2001 Chris Gauthron
27 * Copyright (C) 2005-2010 Jean Delvare <khali@linux-fr.org>
28 *
29 * This program is free software; you can redistribute it and/or modify
30 * it under the terms of the GNU General Public License as published by
31 * the Free Software Foundation; either version 2 of the License, or
32 * (at your option) any later version.
33 *
34 * This program is distributed in the hope that it will be useful,
35 * but WITHOUT ANY WARRANTY; without even the implied warranty of
36 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
37 * GNU General Public License for more details.
38 *
39 * You should have received a copy of the GNU General Public License
40 * along with this program; if not, write to the Free Software
41 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
42 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Joe Perchesa8ca1032011-01-12 21:55:10 +010044#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/module.h>
47#include <linux/init.h>
48#include <linux/slab.h>
49#include <linux/jiffies.h>
corentin.labbeb74f3fd2007-06-13 20:27:36 +020050#include <linux/platform_device.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040051#include <linux/hwmon.h>
Jean Delvare303760b2005-07-31 21:52:01 +020052#include <linux/hwmon-sysfs.h>
53#include <linux/hwmon-vid.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040054#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010055#include <linux/mutex.h>
Jean Delvare87808be2006-09-24 21:17:13 +020056#include <linux/sysfs.h>
Jean Delvare98dd22c2008-10-09 15:33:58 +020057#include <linux/string.h>
58#include <linux/dmi.h>
Jean Delvareb9acb642009-01-07 16:37:35 +010059#include <linux/acpi.h>
H Hartley Sweeten6055fae2009-09-15 17:18:13 +020060#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
corentin.labbeb74f3fd2007-06-13 20:27:36 +020062#define DRVNAME "it87"
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Guenter Roeck0531d982012-03-02 11:46:44 -080064enum chips { it87, it8712, it8716, it8718, it8720, it8721, it8728, it8782,
65 it8783 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Jean Delvare67b671b2007-12-06 23:13:42 +010067static unsigned short force_id;
68module_param(force_id, ushort, 0);
69MODULE_PARM_DESC(force_id, "Override the detected device ID");
70
corentin.labbeb74f3fd2007-06-13 20:27:36 +020071static struct platform_device *pdev;
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#define REG 0x2e /* The register to read/write */
74#define DEV 0x07 /* Register: Logical device select */
75#define VAL 0x2f /* The value to read/write */
76#define PME 0x04 /* The device with the fan registers in it */
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +010077
78/* The device with the IT8718F/IT8720F VID value in it */
79#define GPIO 0x07
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#define DEVID 0x20 /* Register: Device ID */
82#define DEVREV 0x22 /* Register: Device Revision */
83
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +020084static inline int superio_inb(int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
86 outb(reg, REG);
87 return inb(VAL);
88}
89
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +020090static inline void superio_outb(int reg, int val)
Jean Delvare436cad22010-07-09 16:22:48 +020091{
92 outb(reg, REG);
93 outb(val, VAL);
94}
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096static int superio_inw(int reg)
97{
98 int val;
99 outb(reg++, REG);
100 val = inb(VAL) << 8;
101 outb(reg, REG);
102 val |= inb(VAL);
103 return val;
104}
105
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200106static inline void superio_select(int ldn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
108 outb(DEV, REG);
Jean Delvare87673dd2006-08-28 14:37:19 +0200109 outb(ldn, VAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200112static inline int superio_enter(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200114 /*
115 * Try to reserve REG and REG + 1 for exclusive access.
116 */
117 if (!request_muxed_region(REG, 2, DRVNAME))
118 return -EBUSY;
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 outb(0x87, REG);
121 outb(0x01, REG);
122 outb(0x55, REG);
123 outb(0x55, REG);
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200124 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200127static inline void superio_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
129 outb(0x02, REG);
130 outb(0x02, VAL);
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +0200131 release_region(REG, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
Jean Delvare87673dd2006-08-28 14:37:19 +0200134/* Logical device 4 registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135#define IT8712F_DEVID 0x8712
136#define IT8705F_DEVID 0x8705
Jean Delvare17d648b2006-08-28 14:23:46 +0200137#define IT8716F_DEVID 0x8716
Jean Delvare87673dd2006-08-28 14:37:19 +0200138#define IT8718F_DEVID 0x8718
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +0100139#define IT8720F_DEVID 0x8720
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200140#define IT8721F_DEVID 0x8721
Rudolf Marek08a8f6e2007-06-09 10:11:16 -0400141#define IT8726F_DEVID 0x8726
Jean Delvare16b5dda2012-01-16 22:51:48 +0100142#define IT8728F_DEVID 0x8728
Guenter Roeck0531d982012-03-02 11:46:44 -0800143#define IT8782F_DEVID 0x8782
144#define IT8783E_DEVID 0x8783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145#define IT87_ACT_REG 0x30
146#define IT87_BASE_REG 0x60
147
Jean Delvare87673dd2006-08-28 14:37:19 +0200148/* Logical device 7 registers (IT8712F and later) */
Guenter Roeck0531d982012-03-02 11:46:44 -0800149#define IT87_SIO_GPIO1_REG 0x25
Jean Delvare895ff262009-12-09 20:35:47 +0100150#define IT87_SIO_GPIO3_REG 0x27
Jean Delvare591ec652009-12-09 20:35:48 +0100151#define IT87_SIO_GPIO5_REG 0x29
Guenter Roeck0531d982012-03-02 11:46:44 -0800152#define IT87_SIO_PINX1_REG 0x2a /* Pin selection */
Jean Delvare87673dd2006-08-28 14:37:19 +0200153#define IT87_SIO_PINX2_REG 0x2c /* Pin selection */
Guenter Roeck0531d982012-03-02 11:46:44 -0800154#define IT87_SIO_SPI_REG 0xef /* SPI function pin select */
Jean Delvare87673dd2006-08-28 14:37:19 +0200155#define IT87_SIO_VID_REG 0xfc /* VID value */
Jean Delvared9b327c2010-03-05 22:17:17 +0100156#define IT87_SIO_BEEP_PIN_REG 0xf6 /* Beep pin mapping */
Jean Delvare87673dd2006-08-28 14:37:19 +0200157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158/* Update battery voltage after every reading if true */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030159static bool update_vbat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161/* Not all BIOSes properly configure the PWM registers */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030162static bool fix_pwm_polarity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164/* Many IT87 constants specified below */
165
166/* Length of ISA address segment */
167#define IT87_EXTENT 8
168
Bjorn Helgaas87b4b662008-01-22 07:21:03 -0500169/* Length of ISA address segment for Environmental Controller */
170#define IT87_EC_EXTENT 2
171
172/* Offset of EC registers from ISA base address */
173#define IT87_EC_OFFSET 5
174
175/* Where are the ISA address/data registers relative to the EC base address */
176#define IT87_ADDR_REG_OFFSET 0
177#define IT87_DATA_REG_OFFSET 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179/*----- The IT87 registers -----*/
180
181#define IT87_REG_CONFIG 0x00
182
183#define IT87_REG_ALARM1 0x01
184#define IT87_REG_ALARM2 0x02
185#define IT87_REG_ALARM3 0x03
186
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800187/*
188 * The IT8718F and IT8720F have the VID value in a different register, in
189 * Super-I/O configuration space.
190 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191#define IT87_REG_VID 0x0a
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800192/*
193 * The IT8705F and IT8712F earlier than revision 0x08 use register 0x0b
194 * for fan divisors. Later IT8712F revisions must use 16-bit tachometer
195 * mode.
196 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197#define IT87_REG_FAN_DIV 0x0b
Jean Delvare17d648b2006-08-28 14:23:46 +0200198#define IT87_REG_FAN_16BIT 0x0c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200/* Monitors: 9 voltage (0 to 7, battery), 3 temp (1 to 3), 3 fan (1 to 3) */
201
Jean Delvarec7f1f712007-09-03 17:11:46 +0200202static const u8 IT87_REG_FAN[] = { 0x0d, 0x0e, 0x0f, 0x80, 0x82 };
203static const u8 IT87_REG_FAN_MIN[] = { 0x10, 0x11, 0x12, 0x84, 0x86 };
204static const u8 IT87_REG_FANX[] = { 0x18, 0x19, 0x1a, 0x81, 0x83 };
205static const u8 IT87_REG_FANX_MIN[] = { 0x1b, 0x1c, 0x1d, 0x85, 0x87 };
Guenter Roeck161d8982012-12-19 22:17:01 +0100206static const u8 IT87_REG_TEMP_OFFSET[] = { 0x56, 0x57, 0x59 };
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208#define IT87_REG_FAN_MAIN_CTRL 0x13
209#define IT87_REG_FAN_CTL 0x14
210#define IT87_REG_PWM(nr) (0x15 + (nr))
Jean Delvare6229cdb2010-12-08 16:27:22 +0100211#define IT87_REG_PWM_DUTY(nr) (0x63 + (nr) * 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213#define IT87_REG_VIN(nr) (0x20 + (nr))
214#define IT87_REG_TEMP(nr) (0x29 + (nr))
215
216#define IT87_REG_VIN_MAX(nr) (0x30 + (nr) * 2)
217#define IT87_REG_VIN_MIN(nr) (0x31 + (nr) * 2)
218#define IT87_REG_TEMP_HIGH(nr) (0x40 + (nr) * 2)
219#define IT87_REG_TEMP_LOW(nr) (0x41 + (nr) * 2)
220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221#define IT87_REG_VIN_ENABLE 0x50
222#define IT87_REG_TEMP_ENABLE 0x51
Guenter Roeck4573acb2012-03-26 16:17:41 -0700223#define IT87_REG_TEMP_EXTRA 0x55
Jean Delvared9b327c2010-03-05 22:17:17 +0100224#define IT87_REG_BEEP_ENABLE 0x5c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226#define IT87_REG_CHIPID 0x58
227
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100228#define IT87_REG_AUTO_TEMP(nr, i) (0x60 + (nr) * 8 + (i))
229#define IT87_REG_AUTO_PWM(nr, i) (0x65 + (nr) * 8 + (i))
230
Guenter Roeck483db432012-12-19 22:17:02 +0100231struct it87_devices {
232 const char *name;
233 u16 features;
234};
235
236#define FEAT_12MV_ADC (1 << 0)
237#define FEAT_NEWER_AUTOPWM (1 << 1)
238#define FEAT_OLD_AUTOPWM (1 << 2)
239#define FEAT_16BIT_FANS (1 << 3)
240#define FEAT_TEMP_OFFSET (1 << 4)
241
242static const struct it87_devices it87_devices[] = {
243 [it87] = {
244 .name = "it87",
245 .features = FEAT_OLD_AUTOPWM, /* may need to overwrite */
246 },
247 [it8712] = {
248 .name = "it8712",
249 .features = FEAT_OLD_AUTOPWM, /* may need to overwrite */
250 },
251 [it8716] = {
252 .name = "it8716",
253 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET,
254 },
255 [it8718] = {
256 .name = "it8718",
257 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET,
258 },
259 [it8720] = {
260 .name = "it8720",
261 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET,
262 },
263 [it8721] = {
264 .name = "it8721",
265 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
266 | FEAT_TEMP_OFFSET,
267 },
268 [it8728] = {
269 .name = "it8728",
270 .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS
271 | FEAT_TEMP_OFFSET,
272 },
273 [it8782] = {
274 .name = "it8782",
275 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET,
276 },
277 [it8783] = {
278 .name = "it8783",
279 .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET,
280 },
281};
282
283#define has_16bit_fans(data) ((data)->features & FEAT_16BIT_FANS)
284#define has_12mv_adc(data) ((data)->features & FEAT_12MV_ADC)
285#define has_newer_autopwm(data) ((data)->features & FEAT_NEWER_AUTOPWM)
286#define has_old_autopwm(data) ((data)->features & FEAT_OLD_AUTOPWM)
287#define has_temp_offset(data) ((data)->features & FEAT_TEMP_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200289struct it87_sio_data {
290 enum chips type;
291 /* Values read from Super-I/O config space */
Andrew Paprocki04751692008-08-06 22:41:06 +0200292 u8 revision;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200293 u8 vid_value;
Jean Delvared9b327c2010-03-05 22:17:17 +0100294 u8 beep_pin;
Jean Delvare738e5e02010-08-14 21:08:50 +0200295 u8 internal; /* Internal sensors can be labeled */
Jean Delvare591ec652009-12-09 20:35:48 +0100296 /* Features skipped based on config or DMI */
Guenter Roeck9172b5d2012-03-24 21:49:54 -0700297 u16 skip_in;
Jean Delvare895ff262009-12-09 20:35:47 +0100298 u8 skip_vid;
Jean Delvare591ec652009-12-09 20:35:48 +0100299 u8 skip_fan;
Jean Delvare98dd22c2008-10-09 15:33:58 +0200300 u8 skip_pwm;
Guenter Roeck4573acb2012-03-26 16:17:41 -0700301 u8 skip_temp;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200302};
303
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800304/*
305 * For each registered chip, we need to keep some data in memory.
306 * The structure is dynamically allocated.
307 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308struct it87_data {
Tony Jones1beeffe2007-08-20 13:46:20 -0700309 struct device *hwmon_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 enum chips type;
Guenter Roeck483db432012-12-19 22:17:02 +0100311 u16 features;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200313 unsigned short addr;
314 const char *name;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100315 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 char valid; /* !=0 if following fields are valid */
317 unsigned long last_updated; /* In jiffies */
318
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200319 u16 in_scaled; /* Internal voltage sensors are scaled */
Guenter Roeck929c6a52012-12-19 22:17:00 +0100320 u8 in[9][3]; /* [nr][0]=in, [1]=min, [2]=max */
Jean Delvare9060f8b2006-08-28 14:24:17 +0200321 u8 has_fan; /* Bitfield, fans enabled */
Guenter Roecke1169ba2012-12-19 22:17:01 +0100322 u16 fan[5][2]; /* Register values, [nr][0]=fan, [1]=min */
Guenter Roeck4573acb2012-03-26 16:17:41 -0700323 u8 has_temp; /* Bitfield, temp sensors enabled */
Guenter Roeck161d8982012-12-19 22:17:01 +0100324 s8 temp[3][4]; /* [nr][0]=temp, [1]=min, [2]=max, [3]=offset */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 u8 sensor; /* Register value */
326 u8 fan_div[3]; /* Register encoding, shifted right */
327 u8 vid; /* Register encoding, combined */
Jean Delvarea7be58a2005-12-18 16:40:14 +0100328 u8 vrm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 u32 alarms; /* Register encoding, combined */
Jean Delvared9b327c2010-03-05 22:17:17 +0100330 u8 beeps; /* Register encoding */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 u8 fan_main_ctrl; /* Register value */
Jean Delvaref8d0c192007-02-14 21:15:02 +0100332 u8 fan_ctl; /* Register value */
Jean Delvareb99883d2010-03-05 22:17:15 +0100333
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800334 /*
335 * The following 3 arrays correspond to the same registers up to
Jean Delvare6229cdb2010-12-08 16:27:22 +0100336 * the IT8720F. The meaning of bits 6-0 depends on the value of bit
337 * 7, and we want to preserve settings on mode changes, so we have
338 * to track all values separately.
339 * Starting with the IT8721F, the manual PWM duty cycles are stored
340 * in separate registers (8-bit values), so the separate tracking
341 * is no longer needed, but it is still done to keep the driver
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800342 * simple.
343 */
Jean Delvareb99883d2010-03-05 22:17:15 +0100344 u8 pwm_ctrl[3]; /* Register value */
Jean Delvare6229cdb2010-12-08 16:27:22 +0100345 u8 pwm_duty[3]; /* Manual PWM value set by user */
Jean Delvareb99883d2010-03-05 22:17:15 +0100346 u8 pwm_temp_map[3]; /* PWM to temp. chan. mapping (bits 1-0) */
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100347
348 /* Automatic fan speed control registers */
349 u8 auto_pwm[3][4]; /* [nr][3] is hard-coded */
350 s8 auto_temp[3][5]; /* [nr][0] is point1_temp_hyst */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351};
352
Guenter Roeck0531d982012-03-02 11:46:44 -0800353static int adc_lsb(const struct it87_data *data, int nr)
354{
355 int lsb = has_12mv_adc(data) ? 12 : 16;
356 if (data->in_scaled & (1 << nr))
357 lsb <<= 1;
358 return lsb;
359}
360
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200361static u8 in_to_reg(const struct it87_data *data, int nr, long val)
362{
Guenter Roeck0531d982012-03-02 11:46:44 -0800363 val = DIV_ROUND_CLOSEST(val, adc_lsb(data, nr));
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200364 return SENSORS_LIMIT(val, 0, 255);
365}
366
367static int in_from_reg(const struct it87_data *data, int nr, int val)
368{
Guenter Roeck0531d982012-03-02 11:46:44 -0800369 return val * adc_lsb(data, nr);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200370}
Jean Delvare0df6454d2010-10-28 20:31:51 +0200371
372static inline u8 FAN_TO_REG(long rpm, int div)
373{
374 if (rpm == 0)
375 return 255;
376 rpm = SENSORS_LIMIT(rpm, 1, 1000000);
377 return SENSORS_LIMIT((1350000 + rpm * div / 2) / (rpm * div), 1,
378 254);
379}
380
381static inline u16 FAN16_TO_REG(long rpm)
382{
383 if (rpm == 0)
384 return 0xffff;
385 return SENSORS_LIMIT((1350000 + rpm) / (rpm * 2), 1, 0xfffe);
386}
387
388#define FAN_FROM_REG(val, div) ((val) == 0 ? -1 : (val) == 255 ? 0 : \
389 1350000 / ((val) * (div)))
390/* The divider is fixed to 2 in 16-bit mode */
391#define FAN16_FROM_REG(val) ((val) == 0 ? -1 : (val) == 0xffff ? 0 : \
392 1350000 / ((val) * 2))
393
394#define TEMP_TO_REG(val) (SENSORS_LIMIT(((val) < 0 ? (((val) - 500) / 1000) : \
395 ((val) + 500) / 1000), -128, 127))
396#define TEMP_FROM_REG(val) ((val) * 1000)
397
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200398static u8 pwm_to_reg(const struct it87_data *data, long val)
399{
Jean Delvare16b5dda2012-01-16 22:51:48 +0100400 if (has_newer_autopwm(data))
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200401 return val;
402 else
403 return val >> 1;
404}
405
406static int pwm_from_reg(const struct it87_data *data, u8 reg)
407{
Jean Delvare16b5dda2012-01-16 22:51:48 +0100408 if (has_newer_autopwm(data))
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200409 return reg;
410 else
411 return (reg & 0x7f) << 1;
412}
413
Jean Delvare0df6454d2010-10-28 20:31:51 +0200414
415static int DIV_TO_REG(int val)
416{
417 int answer = 0;
418 while (answer < 7 && (val >>= 1))
419 answer++;
420 return answer;
421}
422#define DIV_FROM_REG(val) (1 << (val))
423
424static const unsigned int pwm_freq[8] = {
425 48000000 / 128,
426 24000000 / 128,
427 12000000 / 128,
428 8000000 / 128,
429 6000000 / 128,
430 3000000 / 128,
431 1500000 / 128,
432 750000 / 128,
433};
434
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200435static int it87_probe(struct platform_device *pdev);
Bill Pemberton281dfd02012-11-19 13:25:51 -0500436static int it87_remove(struct platform_device *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200438static int it87_read_value(struct it87_data *data, u8 reg);
439static void it87_write_value(struct it87_data *data, u8 reg, u8 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440static struct it87_data *it87_update_device(struct device *dev);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200441static int it87_check_pwm(struct device *dev);
442static void it87_init_device(struct platform_device *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200445static struct platform_driver it87_driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100446 .driver = {
Jean Delvare87218842006-09-03 22:36:14 +0200447 .owner = THIS_MODULE,
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200448 .name = DRVNAME,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100449 },
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200450 .probe = it87_probe,
Bill Pemberton9e5e9b72012-11-19 13:21:20 -0500451 .remove = it87_remove,
Jean Delvarefde09502005-07-19 23:51:07 +0200452};
453
Jean Delvare20ad93d2005-06-05 11:53:25 +0200454static ssize_t show_in(struct device *dev, struct device_attribute *attr,
Guenter Roeck929c6a52012-12-19 22:17:00 +0100455 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
Guenter Roeck929c6a52012-12-19 22:17:00 +0100457 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
458 int nr = sattr->nr;
459 int index = sattr->index;
Jean Delvare20ad93d2005-06-05 11:53:25 +0200460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 struct it87_data *data = it87_update_device(dev);
Guenter Roeck929c6a52012-12-19 22:17:00 +0100462 return sprintf(buf, "%d\n", in_from_reg(data, nr, data->in[nr][index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
Guenter Roeck929c6a52012-12-19 22:17:00 +0100465static ssize_t set_in(struct device *dev, struct device_attribute *attr,
466 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
Guenter Roeck929c6a52012-12-19 22:17:00 +0100468 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
469 int nr = sattr->nr;
470 int index = sattr->index;
Jean Delvare20ad93d2005-06-05 11:53:25 +0200471
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200472 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100473 unsigned long val;
474
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100475 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100476 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100478 mutex_lock(&data->update_lock);
Guenter Roeck929c6a52012-12-19 22:17:00 +0100479 data->in[nr][index] = in_to_reg(data, nr, val);
480 it87_write_value(data,
481 index == 1 ? IT87_REG_VIN_MIN(nr)
482 : IT87_REG_VIN_MAX(nr),
483 data->in[nr][index]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100484 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 return count;
486}
487
Guenter Roeck929c6a52012-12-19 22:17:00 +0100488static SENSOR_DEVICE_ATTR_2(in0_input, S_IRUGO, show_in, NULL, 0, 0);
489static SENSOR_DEVICE_ATTR_2(in0_min, S_IRUGO | S_IWUSR, show_in, set_in,
490 0, 1);
491static SENSOR_DEVICE_ATTR_2(in0_max, S_IRUGO | S_IWUSR, show_in, set_in,
492 0, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Guenter Roeck929c6a52012-12-19 22:17:00 +0100494static SENSOR_DEVICE_ATTR_2(in1_input, S_IRUGO, show_in, NULL, 1, 0);
495static SENSOR_DEVICE_ATTR_2(in1_min, S_IRUGO | S_IWUSR, show_in, set_in,
496 1, 1);
497static SENSOR_DEVICE_ATTR_2(in1_max, S_IRUGO | S_IWUSR, show_in, set_in,
498 1, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Guenter Roeck929c6a52012-12-19 22:17:00 +0100500static SENSOR_DEVICE_ATTR_2(in2_input, S_IRUGO, show_in, NULL, 2, 0);
501static SENSOR_DEVICE_ATTR_2(in2_min, S_IRUGO | S_IWUSR, show_in, set_in,
502 2, 1);
503static SENSOR_DEVICE_ATTR_2(in2_max, S_IRUGO | S_IWUSR, show_in, set_in,
504 2, 2);
505
506static SENSOR_DEVICE_ATTR_2(in3_input, S_IRUGO, show_in, NULL, 3, 0);
507static SENSOR_DEVICE_ATTR_2(in3_min, S_IRUGO | S_IWUSR, show_in, set_in,
508 3, 1);
509static SENSOR_DEVICE_ATTR_2(in3_max, S_IRUGO | S_IWUSR, show_in, set_in,
510 3, 2);
511
512static SENSOR_DEVICE_ATTR_2(in4_input, S_IRUGO, show_in, NULL, 4, 0);
513static SENSOR_DEVICE_ATTR_2(in4_min, S_IRUGO | S_IWUSR, show_in, set_in,
514 4, 1);
515static SENSOR_DEVICE_ATTR_2(in4_max, S_IRUGO | S_IWUSR, show_in, set_in,
516 4, 2);
517
518static SENSOR_DEVICE_ATTR_2(in5_input, S_IRUGO, show_in, NULL, 5, 0);
519static SENSOR_DEVICE_ATTR_2(in5_min, S_IRUGO | S_IWUSR, show_in, set_in,
520 5, 1);
521static SENSOR_DEVICE_ATTR_2(in5_max, S_IRUGO | S_IWUSR, show_in, set_in,
522 5, 2);
523
524static SENSOR_DEVICE_ATTR_2(in6_input, S_IRUGO, show_in, NULL, 6, 0);
525static SENSOR_DEVICE_ATTR_2(in6_min, S_IRUGO | S_IWUSR, show_in, set_in,
526 6, 1);
527static SENSOR_DEVICE_ATTR_2(in6_max, S_IRUGO | S_IWUSR, show_in, set_in,
528 6, 2);
529
530static SENSOR_DEVICE_ATTR_2(in7_input, S_IRUGO, show_in, NULL, 7, 0);
531static SENSOR_DEVICE_ATTR_2(in7_min, S_IRUGO | S_IWUSR, show_in, set_in,
532 7, 1);
533static SENSOR_DEVICE_ATTR_2(in7_max, S_IRUGO | S_IWUSR, show_in, set_in,
534 7, 2);
535
536static SENSOR_DEVICE_ATTR_2(in8_input, S_IRUGO, show_in, NULL, 8, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538/* 3 temperatures */
Jean Delvare20ad93d2005-06-05 11:53:25 +0200539static ssize_t show_temp(struct device *dev, struct device_attribute *attr,
Guenter Roeck60ca3852012-12-19 22:17:00 +0100540 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
Guenter Roeck60ca3852012-12-19 22:17:00 +0100542 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
543 int nr = sattr->nr;
544 int index = sattr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +0200546
Guenter Roeck60ca3852012-12-19 22:17:00 +0100547 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[nr][index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200549
Guenter Roeck60ca3852012-12-19 22:17:00 +0100550static ssize_t set_temp(struct device *dev, struct device_attribute *attr,
551 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Guenter Roeck60ca3852012-12-19 22:17:00 +0100553 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
554 int nr = sattr->nr;
555 int index = sattr->index;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200556 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100557 long val;
Guenter Roeck161d8982012-12-19 22:17:01 +0100558 u8 reg, regval;
Jean Delvaref5f64502010-03-05 22:17:19 +0100559
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100560 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100561 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100563 mutex_lock(&data->update_lock);
Guenter Roeck161d8982012-12-19 22:17:01 +0100564
565 switch (index) {
566 default:
567 case 1:
568 reg = IT87_REG_TEMP_LOW(nr);
569 break;
570 case 2:
571 reg = IT87_REG_TEMP_HIGH(nr);
572 break;
573 case 3:
574 regval = it87_read_value(data, IT87_REG_BEEP_ENABLE);
575 if (!(regval & 0x80)) {
576 regval |= 0x80;
577 it87_write_value(data, IT87_REG_BEEP_ENABLE, regval);
578 }
579 data->valid = 0;
580 reg = IT87_REG_TEMP_OFFSET[nr];
581 break;
582 }
583
Guenter Roeck60ca3852012-12-19 22:17:00 +0100584 data->temp[nr][index] = TEMP_TO_REG(val);
Guenter Roeck161d8982012-12-19 22:17:01 +0100585 it87_write_value(data, reg, data->temp[nr][index]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100586 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 return count;
588}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200589
Guenter Roeck60ca3852012-12-19 22:17:00 +0100590static SENSOR_DEVICE_ATTR_2(temp1_input, S_IRUGO, show_temp, NULL, 0, 0);
591static SENSOR_DEVICE_ATTR_2(temp1_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
592 0, 1);
593static SENSOR_DEVICE_ATTR_2(temp1_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
594 0, 2);
Guenter Roeck161d8982012-12-19 22:17:01 +0100595static SENSOR_DEVICE_ATTR_2(temp1_offset, S_IRUGO | S_IWUSR, show_temp,
596 set_temp, 0, 3);
Guenter Roeck60ca3852012-12-19 22:17:00 +0100597static SENSOR_DEVICE_ATTR_2(temp2_input, S_IRUGO, show_temp, NULL, 1, 0);
598static SENSOR_DEVICE_ATTR_2(temp2_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
599 1, 1);
600static SENSOR_DEVICE_ATTR_2(temp2_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
601 1, 2);
Guenter Roeck161d8982012-12-19 22:17:01 +0100602static SENSOR_DEVICE_ATTR_2(temp2_offset, S_IRUGO | S_IWUSR, show_temp,
603 set_temp, 1, 3);
Guenter Roeck60ca3852012-12-19 22:17:00 +0100604static SENSOR_DEVICE_ATTR_2(temp3_input, S_IRUGO, show_temp, NULL, 2, 0);
605static SENSOR_DEVICE_ATTR_2(temp3_min, S_IRUGO | S_IWUSR, show_temp, set_temp,
606 2, 1);
607static SENSOR_DEVICE_ATTR_2(temp3_max, S_IRUGO | S_IWUSR, show_temp, set_temp,
608 2, 2);
Guenter Roeck161d8982012-12-19 22:17:01 +0100609static SENSOR_DEVICE_ATTR_2(temp3_offset, S_IRUGO | S_IWUSR, show_temp,
610 set_temp, 2, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Guenter Roeck2cece012012-12-19 22:17:01 +0100612static ssize_t show_temp_type(struct device *dev, struct device_attribute *attr,
613 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200615 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
616 int nr = sensor_attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 struct it87_data *data = it87_update_device(dev);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800618 u8 reg = data->sensor; /* In case value is updated while used */
Jean Delvare5f2dc792010-03-05 22:17:18 +0100619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 if (reg & (1 << nr))
621 return sprintf(buf, "3\n"); /* thermal diode */
622 if (reg & (8 << nr))
Jean Delvare4ed10772008-10-17 17:51:16 +0200623 return sprintf(buf, "4\n"); /* thermistor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 return sprintf(buf, "0\n"); /* disabled */
625}
Guenter Roeck2cece012012-12-19 22:17:01 +0100626
627static ssize_t set_temp_type(struct device *dev, struct device_attribute *attr,
628 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200630 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
631 int nr = sensor_attr->index;
632
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200633 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100634 long val;
Jean Delvare8acf07c2010-04-14 16:14:09 +0200635 u8 reg;
Jean Delvaref5f64502010-03-05 22:17:19 +0100636
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100637 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100638 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Jean Delvare8acf07c2010-04-14 16:14:09 +0200640 reg = it87_read_value(data, IT87_REG_TEMP_ENABLE);
641 reg &= ~(1 << nr);
642 reg &= ~(8 << nr);
Jean Delvare4ed10772008-10-17 17:51:16 +0200643 if (val == 2) { /* backwards compatibility */
Guenter Roeck1d9bcf62012-12-19 22:17:01 +0100644 dev_warn(dev,
645 "Sensor type 2 is deprecated, please use 4 instead\n");
Jean Delvare4ed10772008-10-17 17:51:16 +0200646 val = 4;
647 }
648 /* 3 = thermal diode; 4 = thermistor; 0 = disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 if (val == 3)
Jean Delvare8acf07c2010-04-14 16:14:09 +0200650 reg |= 1 << nr;
Jean Delvare4ed10772008-10-17 17:51:16 +0200651 else if (val == 4)
Jean Delvare8acf07c2010-04-14 16:14:09 +0200652 reg |= 8 << nr;
653 else if (val != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 return -EINVAL;
Jean Delvare8acf07c2010-04-14 16:14:09 +0200655
656 mutex_lock(&data->update_lock);
657 data->sensor = reg;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200658 it87_write_value(data, IT87_REG_TEMP_ENABLE, data->sensor);
Jean Delvare2b3d1d82010-04-14 16:14:10 +0200659 data->valid = 0; /* Force cache refresh */
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100660 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 return count;
662}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Guenter Roeck2cece012012-12-19 22:17:01 +0100664static SENSOR_DEVICE_ATTR(temp1_type, S_IRUGO | S_IWUSR, show_temp_type,
665 set_temp_type, 0);
666static SENSOR_DEVICE_ATTR(temp2_type, S_IRUGO | S_IWUSR, show_temp_type,
667 set_temp_type, 1);
668static SENSOR_DEVICE_ATTR(temp3_type, S_IRUGO | S_IWUSR, show_temp_type,
669 set_temp_type, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671/* 3 Fans */
Jean Delvareb99883d2010-03-05 22:17:15 +0100672
673static int pwm_mode(const struct it87_data *data, int nr)
674{
675 int ctrl = data->fan_main_ctrl & (1 << nr);
676
677 if (ctrl == 0) /* Full speed */
678 return 0;
679 if (data->pwm_ctrl[nr] & 0x80) /* Automatic mode */
680 return 2;
681 else /* Manual mode */
682 return 1;
683}
684
Jean Delvare20ad93d2005-06-05 11:53:25 +0200685static ssize_t show_fan(struct device *dev, struct device_attribute *attr,
Guenter Roecke1169ba2012-12-19 22:17:01 +0100686 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
Guenter Roecke1169ba2012-12-19 22:17:01 +0100688 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
689 int nr = sattr->nr;
690 int index = sattr->index;
691 int speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 struct it87_data *data = it87_update_device(dev);
Jean Delvare20ad93d2005-06-05 11:53:25 +0200693
Guenter Roecke1169ba2012-12-19 22:17:01 +0100694 speed = has_16bit_fans(data) ?
695 FAN16_FROM_REG(data->fan[nr][index]) :
696 FAN_FROM_REG(data->fan[nr][index],
697 DIV_FROM_REG(data->fan_div[nr]));
698 return sprintf(buf, "%d\n", speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699}
Guenter Roecke1169ba2012-12-19 22:17:01 +0100700
Jean Delvare20ad93d2005-06-05 11:53:25 +0200701static ssize_t show_fan_div(struct device *dev, struct device_attribute *attr,
702 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200704 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
705 int nr = sensor_attr->index;
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 struct it87_data *data = it87_update_device(dev);
708 return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[nr]));
709}
Jean Delvare5f2dc792010-03-05 22:17:18 +0100710static ssize_t show_pwm_enable(struct device *dev,
711 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200713 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
714 int nr = sensor_attr->index;
715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 struct it87_data *data = it87_update_device(dev);
Jean Delvareb99883d2010-03-05 22:17:15 +0100717 return sprintf(buf, "%d\n", pwm_mode(data, nr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200719static ssize_t show_pwm(struct device *dev, struct device_attribute *attr,
720 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200722 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
723 int nr = sensor_attr->index;
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 struct it87_data *data = it87_update_device(dev);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200726 return sprintf(buf, "%d\n",
727 pwm_from_reg(data, data->pwm_duty[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
Jean Delvaref8d0c192007-02-14 21:15:02 +0100729static ssize_t show_pwm_freq(struct device *dev, struct device_attribute *attr,
730 char *buf)
731{
732 struct it87_data *data = it87_update_device(dev);
733 int index = (data->fan_ctl >> 4) & 0x07;
734
735 return sprintf(buf, "%u\n", pwm_freq[index]);
736}
Guenter Roecke1169ba2012-12-19 22:17:01 +0100737
738static ssize_t set_fan(struct device *dev, struct device_attribute *attr,
739 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
Guenter Roecke1169ba2012-12-19 22:17:01 +0100741 struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr);
742 int nr = sattr->nr;
743 int index = sattr->index;
Jean Delvare20ad93d2005-06-05 11:53:25 +0200744
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200745 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100746 long val;
Jean Delvare7f999aa2007-02-14 21:15:03 +0100747 u8 reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100749 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100750 return -EINVAL;
751
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100752 mutex_lock(&data->update_lock);
Guenter Roecke1169ba2012-12-19 22:17:01 +0100753
754 if (has_16bit_fans(data)) {
755 data->fan[nr][index] = FAN16_TO_REG(val);
756 it87_write_value(data, IT87_REG_FAN_MIN[nr],
757 data->fan[nr][index] & 0xff);
758 it87_write_value(data, IT87_REG_FANX_MIN[nr],
759 data->fan[nr][index] >> 8);
760 } else {
761 reg = it87_read_value(data, IT87_REG_FAN_DIV);
762 switch (nr) {
763 case 0:
764 data->fan_div[nr] = reg & 0x07;
765 break;
766 case 1:
767 data->fan_div[nr] = (reg >> 3) & 0x07;
768 break;
769 case 2:
770 data->fan_div[nr] = (reg & 0x40) ? 3 : 1;
771 break;
772 }
773 data->fan[nr][index] =
774 FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
775 it87_write_value(data, IT87_REG_FAN_MIN[nr],
776 data->fan[nr][index]);
Jean Delvare07eab462005-11-23 15:44:31 -0800777 }
778
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100779 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 return count;
781}
Guenter Roecke1169ba2012-12-19 22:17:01 +0100782
Jean Delvare20ad93d2005-06-05 11:53:25 +0200783static ssize_t set_fan_div(struct device *dev, struct device_attribute *attr,
784 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200786 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
787 int nr = sensor_attr->index;
788
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200789 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100790 unsigned long val;
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200791 int min;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 u8 old;
793
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100794 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100795 return -EINVAL;
796
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100797 mutex_lock(&data->update_lock);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200798 old = it87_read_value(data, IT87_REG_FAN_DIV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200800 /* Save fan min limit */
Guenter Roecke1169ba2012-12-19 22:17:01 +0100801 min = FAN_FROM_REG(data->fan[nr][1], DIV_FROM_REG(data->fan_div[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
803 switch (nr) {
804 case 0:
805 case 1:
806 data->fan_div[nr] = DIV_TO_REG(val);
807 break;
808 case 2:
809 if (val < 8)
810 data->fan_div[nr] = 1;
811 else
812 data->fan_div[nr] = 3;
813 }
814 val = old & 0x80;
815 val |= (data->fan_div[0] & 0x07);
816 val |= (data->fan_div[1] & 0x07) << 3;
817 if (data->fan_div[2] == 3)
818 val |= 0x1 << 6;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200819 it87_write_value(data, IT87_REG_FAN_DIV, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200821 /* Restore fan min limit */
Guenter Roecke1169ba2012-12-19 22:17:01 +0100822 data->fan[nr][1] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
823 it87_write_value(data, IT87_REG_FAN_MIN[nr], data->fan[nr][1]);
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200824
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100825 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 return count;
827}
Jean Delvarecccfc9c2010-03-05 22:17:21 +0100828
829/* Returns 0 if OK, -EINVAL otherwise */
830static int check_trip_points(struct device *dev, int nr)
831{
832 const struct it87_data *data = dev_get_drvdata(dev);
833 int i, err = 0;
834
835 if (has_old_autopwm(data)) {
836 for (i = 0; i < 3; i++) {
837 if (data->auto_temp[nr][i] > data->auto_temp[nr][i + 1])
838 err = -EINVAL;
839 }
840 for (i = 0; i < 2; i++) {
841 if (data->auto_pwm[nr][i] > data->auto_pwm[nr][i + 1])
842 err = -EINVAL;
843 }
844 }
845
846 if (err) {
Guenter Roeck1d9bcf62012-12-19 22:17:01 +0100847 dev_err(dev,
848 "Inconsistent trip points, not switching to automatic mode\n");
Jean Delvarecccfc9c2010-03-05 22:17:21 +0100849 dev_err(dev, "Adjust the trip points and try again\n");
850 }
851 return err;
852}
853
Jean Delvare20ad93d2005-06-05 11:53:25 +0200854static ssize_t set_pwm_enable(struct device *dev,
855 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200857 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
858 int nr = sensor_attr->index;
859
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200860 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100861 long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100863 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 2)
Jean Delvareb99883d2010-03-05 22:17:15 +0100864 return -EINVAL;
865
Jean Delvarecccfc9c2010-03-05 22:17:21 +0100866 /* Check trip points before switching to automatic mode */
867 if (val == 2) {
868 if (check_trip_points(dev, nr) < 0)
869 return -EINVAL;
870 }
871
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100872 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874 if (val == 0) {
875 int tmp;
876 /* make sure the fan is on when in on/off mode */
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200877 tmp = it87_read_value(data, IT87_REG_FAN_CTL);
878 it87_write_value(data, IT87_REG_FAN_CTL, tmp | (1 << nr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 /* set on/off mode */
880 data->fan_main_ctrl &= ~(1 << nr);
Jean Delvare5f2dc792010-03-05 22:17:18 +0100881 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
882 data->fan_main_ctrl);
Jean Delvareb99883d2010-03-05 22:17:15 +0100883 } else {
884 if (val == 1) /* Manual mode */
Jean Delvare16b5dda2012-01-16 22:51:48 +0100885 data->pwm_ctrl[nr] = has_newer_autopwm(data) ?
Jean Delvare6229cdb2010-12-08 16:27:22 +0100886 data->pwm_temp_map[nr] :
887 data->pwm_duty[nr];
Jean Delvareb99883d2010-03-05 22:17:15 +0100888 else /* Automatic mode */
889 data->pwm_ctrl[nr] = 0x80 | data->pwm_temp_map[nr];
890 it87_write_value(data, IT87_REG_PWM(nr), data->pwm_ctrl[nr]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 /* set SmartGuardian mode */
892 data->fan_main_ctrl |= (1 << nr);
Jean Delvare5f2dc792010-03-05 22:17:18 +0100893 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
894 data->fan_main_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 }
896
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100897 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 return count;
899}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200900static ssize_t set_pwm(struct device *dev, struct device_attribute *attr,
901 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200903 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
904 int nr = sensor_attr->index;
905
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200906 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100907 long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100909 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 return -EINVAL;
911
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100912 mutex_lock(&data->update_lock);
Jean Delvare16b5dda2012-01-16 22:51:48 +0100913 if (has_newer_autopwm(data)) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800914 /*
915 * If we are in automatic mode, the PWM duty cycle register
916 * is read-only so we can't write the value.
917 */
Jean Delvare6229cdb2010-12-08 16:27:22 +0100918 if (data->pwm_ctrl[nr] & 0x80) {
919 mutex_unlock(&data->update_lock);
920 return -EBUSY;
921 }
922 data->pwm_duty[nr] = pwm_to_reg(data, val);
923 it87_write_value(data, IT87_REG_PWM_DUTY(nr),
924 data->pwm_duty[nr]);
925 } else {
926 data->pwm_duty[nr] = pwm_to_reg(data, val);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800927 /*
928 * If we are in manual mode, write the duty cycle immediately;
929 * otherwise, just store it for later use.
930 */
Jean Delvare6229cdb2010-12-08 16:27:22 +0100931 if (!(data->pwm_ctrl[nr] & 0x80)) {
932 data->pwm_ctrl[nr] = data->pwm_duty[nr];
933 it87_write_value(data, IT87_REG_PWM(nr),
934 data->pwm_ctrl[nr]);
935 }
Jean Delvareb99883d2010-03-05 22:17:15 +0100936 }
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100937 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 return count;
939}
Jean Delvaref8d0c192007-02-14 21:15:02 +0100940static ssize_t set_pwm_freq(struct device *dev,
941 struct device_attribute *attr, const char *buf, size_t count)
942{
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200943 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100944 unsigned long val;
Jean Delvaref8d0c192007-02-14 21:15:02 +0100945 int i;
946
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100947 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100948 return -EINVAL;
949
Jean Delvaref8d0c192007-02-14 21:15:02 +0100950 /* Search for the nearest available frequency */
951 for (i = 0; i < 7; i++) {
952 if (val > (pwm_freq[i] + pwm_freq[i+1]) / 2)
953 break;
954 }
955
956 mutex_lock(&data->update_lock);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200957 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL) & 0x8f;
Jean Delvaref8d0c192007-02-14 21:15:02 +0100958 data->fan_ctl |= i << 4;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200959 it87_write_value(data, IT87_REG_FAN_CTL, data->fan_ctl);
Jean Delvaref8d0c192007-02-14 21:15:02 +0100960 mutex_unlock(&data->update_lock);
961
962 return count;
963}
Jean Delvare94ac7ee2010-03-05 22:17:16 +0100964static ssize_t show_pwm_temp_map(struct device *dev,
965 struct device_attribute *attr, char *buf)
966{
967 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
968 int nr = sensor_attr->index;
969
970 struct it87_data *data = it87_update_device(dev);
971 int map;
972
973 if (data->pwm_temp_map[nr] < 3)
974 map = 1 << data->pwm_temp_map[nr];
975 else
976 map = 0; /* Should never happen */
977 return sprintf(buf, "%d\n", map);
978}
979static ssize_t set_pwm_temp_map(struct device *dev,
980 struct device_attribute *attr, const char *buf, size_t count)
981{
982 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
983 int nr = sensor_attr->index;
984
985 struct it87_data *data = dev_get_drvdata(dev);
986 long val;
987 u8 reg;
988
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800989 /*
990 * This check can go away if we ever support automatic fan speed
991 * control on newer chips.
992 */
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100993 if (!has_old_autopwm(data)) {
994 dev_notice(dev, "Mapping change disabled for safety reasons\n");
995 return -EINVAL;
996 }
997
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100998 if (kstrtol(buf, 10, &val) < 0)
Jean Delvare94ac7ee2010-03-05 22:17:16 +0100999 return -EINVAL;
1000
1001 switch (val) {
1002 case (1 << 0):
1003 reg = 0x00;
1004 break;
1005 case (1 << 1):
1006 reg = 0x01;
1007 break;
1008 case (1 << 2):
1009 reg = 0x02;
1010 break;
1011 default:
1012 return -EINVAL;
1013 }
1014
1015 mutex_lock(&data->update_lock);
1016 data->pwm_temp_map[nr] = reg;
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001017 /*
1018 * If we are in automatic mode, write the temp mapping immediately;
1019 * otherwise, just store it for later use.
1020 */
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001021 if (data->pwm_ctrl[nr] & 0x80) {
1022 data->pwm_ctrl[nr] = 0x80 | data->pwm_temp_map[nr];
1023 it87_write_value(data, IT87_REG_PWM(nr), data->pwm_ctrl[nr]);
1024 }
1025 mutex_unlock(&data->update_lock);
1026 return count;
1027}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001029static ssize_t show_auto_pwm(struct device *dev,
1030 struct device_attribute *attr, char *buf)
1031{
1032 struct it87_data *data = it87_update_device(dev);
1033 struct sensor_device_attribute_2 *sensor_attr =
1034 to_sensor_dev_attr_2(attr);
1035 int nr = sensor_attr->nr;
1036 int point = sensor_attr->index;
1037
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001038 return sprintf(buf, "%d\n",
1039 pwm_from_reg(data, data->auto_pwm[nr][point]));
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001040}
1041
1042static ssize_t set_auto_pwm(struct device *dev,
1043 struct device_attribute *attr, const char *buf, size_t count)
1044{
1045 struct it87_data *data = dev_get_drvdata(dev);
1046 struct sensor_device_attribute_2 *sensor_attr =
1047 to_sensor_dev_attr_2(attr);
1048 int nr = sensor_attr->nr;
1049 int point = sensor_attr->index;
1050 long val;
1051
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001052 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001053 return -EINVAL;
1054
1055 mutex_lock(&data->update_lock);
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001056 data->auto_pwm[nr][point] = pwm_to_reg(data, val);
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001057 it87_write_value(data, IT87_REG_AUTO_PWM(nr, point),
1058 data->auto_pwm[nr][point]);
1059 mutex_unlock(&data->update_lock);
1060 return count;
1061}
1062
1063static ssize_t show_auto_temp(struct device *dev,
1064 struct device_attribute *attr, char *buf)
1065{
1066 struct it87_data *data = it87_update_device(dev);
1067 struct sensor_device_attribute_2 *sensor_attr =
1068 to_sensor_dev_attr_2(attr);
1069 int nr = sensor_attr->nr;
1070 int point = sensor_attr->index;
1071
1072 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->auto_temp[nr][point]));
1073}
1074
1075static ssize_t set_auto_temp(struct device *dev,
1076 struct device_attribute *attr, const char *buf, size_t count)
1077{
1078 struct it87_data *data = dev_get_drvdata(dev);
1079 struct sensor_device_attribute_2 *sensor_attr =
1080 to_sensor_dev_attr_2(attr);
1081 int nr = sensor_attr->nr;
1082 int point = sensor_attr->index;
1083 long val;
1084
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001085 if (kstrtol(buf, 10, &val) < 0 || val < -128000 || val > 127000)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001086 return -EINVAL;
1087
1088 mutex_lock(&data->update_lock);
1089 data->auto_temp[nr][point] = TEMP_TO_REG(val);
1090 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, point),
1091 data->auto_temp[nr][point]);
1092 mutex_unlock(&data->update_lock);
1093 return count;
1094}
1095
Guenter Roecke1169ba2012-12-19 22:17:01 +01001096static SENSOR_DEVICE_ATTR_2(fan1_input, S_IRUGO, show_fan, NULL, 0, 0);
1097static SENSOR_DEVICE_ATTR_2(fan1_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1098 0, 1);
1099static SENSOR_DEVICE_ATTR(fan1_div, S_IRUGO | S_IWUSR, show_fan_div,
1100 set_fan_div, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Guenter Roecke1169ba2012-12-19 22:17:01 +01001102static SENSOR_DEVICE_ATTR_2(fan2_input, S_IRUGO, show_fan, NULL, 1, 0);
1103static SENSOR_DEVICE_ATTR_2(fan2_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1104 1, 1);
1105static SENSOR_DEVICE_ATTR(fan2_div, S_IRUGO | S_IWUSR, show_fan_div,
1106 set_fan_div, 1);
1107
1108static SENSOR_DEVICE_ATTR_2(fan3_input, S_IRUGO, show_fan, NULL, 2, 0);
1109static SENSOR_DEVICE_ATTR_2(fan3_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1110 2, 1);
1111static SENSOR_DEVICE_ATTR(fan3_div, S_IRUGO | S_IWUSR, show_fan_div,
1112 set_fan_div, 2);
1113
1114static SENSOR_DEVICE_ATTR_2(fan4_input, S_IRUGO, show_fan, NULL, 3, 0);
1115static SENSOR_DEVICE_ATTR_2(fan4_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1116 3, 1);
1117
1118static SENSOR_DEVICE_ATTR_2(fan5_input, S_IRUGO, show_fan, NULL, 4, 0);
1119static SENSOR_DEVICE_ATTR_2(fan5_min, S_IRUGO | S_IWUSR, show_fan, set_fan,
1120 4, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Guenter Roeckc4458db2012-12-19 22:17:02 +01001122static SENSOR_DEVICE_ATTR(pwm1_enable, S_IRUGO | S_IWUSR,
1123 show_pwm_enable, set_pwm_enable, 0);
1124static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 0);
1125static DEVICE_ATTR(pwm1_freq, S_IRUGO | S_IWUSR, show_pwm_freq, set_pwm_freq);
1126static SENSOR_DEVICE_ATTR(pwm1_auto_channels_temp, S_IRUGO | S_IWUSR,
1127 show_pwm_temp_map, set_pwm_temp_map, 0);
1128static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_pwm, S_IRUGO | S_IWUSR,
1129 show_auto_pwm, set_auto_pwm, 0, 0);
1130static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_pwm, S_IRUGO | S_IWUSR,
1131 show_auto_pwm, set_auto_pwm, 0, 1);
1132static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_pwm, S_IRUGO | S_IWUSR,
1133 show_auto_pwm, set_auto_pwm, 0, 2);
1134static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_pwm, S_IRUGO,
1135 show_auto_pwm, NULL, 0, 3);
1136static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp, S_IRUGO | S_IWUSR,
1137 show_auto_temp, set_auto_temp, 0, 1);
1138static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1139 show_auto_temp, set_auto_temp, 0, 0);
1140static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_temp, S_IRUGO | S_IWUSR,
1141 show_auto_temp, set_auto_temp, 0, 2);
1142static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_temp, S_IRUGO | S_IWUSR,
1143 show_auto_temp, set_auto_temp, 0, 3);
1144static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_temp, S_IRUGO | S_IWUSR,
1145 show_auto_temp, set_auto_temp, 0, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
Guenter Roeckc4458db2012-12-19 22:17:02 +01001147static SENSOR_DEVICE_ATTR(pwm2_enable, S_IRUGO | S_IWUSR,
1148 show_pwm_enable, set_pwm_enable, 1);
1149static SENSOR_DEVICE_ATTR(pwm2, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 1);
1150static DEVICE_ATTR(pwm2_freq, S_IRUGO, show_pwm_freq, NULL);
1151static SENSOR_DEVICE_ATTR(pwm2_auto_channels_temp, S_IRUGO | S_IWUSR,
1152 show_pwm_temp_map, set_pwm_temp_map, 1);
1153static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_pwm, S_IRUGO | S_IWUSR,
1154 show_auto_pwm, set_auto_pwm, 1, 0);
1155static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_pwm, S_IRUGO | S_IWUSR,
1156 show_auto_pwm, set_auto_pwm, 1, 1);
1157static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_pwm, S_IRUGO | S_IWUSR,
1158 show_auto_pwm, set_auto_pwm, 1, 2);
1159static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_pwm, S_IRUGO,
1160 show_auto_pwm, NULL, 1, 3);
1161static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp, S_IRUGO | S_IWUSR,
1162 show_auto_temp, set_auto_temp, 1, 1);
1163static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1164 show_auto_temp, set_auto_temp, 1, 0);
1165static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_temp, S_IRUGO | S_IWUSR,
1166 show_auto_temp, set_auto_temp, 1, 2);
1167static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_temp, S_IRUGO | S_IWUSR,
1168 show_auto_temp, set_auto_temp, 1, 3);
1169static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_temp, S_IRUGO | S_IWUSR,
1170 show_auto_temp, set_auto_temp, 1, 4);
1171
1172static SENSOR_DEVICE_ATTR(pwm3_enable, S_IRUGO | S_IWUSR,
1173 show_pwm_enable, set_pwm_enable, 2);
1174static SENSOR_DEVICE_ATTR(pwm3, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 2);
1175static DEVICE_ATTR(pwm3_freq, S_IRUGO, show_pwm_freq, NULL);
1176static SENSOR_DEVICE_ATTR(pwm3_auto_channels_temp, S_IRUGO | S_IWUSR,
1177 show_pwm_temp_map, set_pwm_temp_map, 2);
1178static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_pwm, S_IRUGO | S_IWUSR,
1179 show_auto_pwm, set_auto_pwm, 2, 0);
1180static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_pwm, S_IRUGO | S_IWUSR,
1181 show_auto_pwm, set_auto_pwm, 2, 1);
1182static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_pwm, S_IRUGO | S_IWUSR,
1183 show_auto_pwm, set_auto_pwm, 2, 2);
1184static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_pwm, S_IRUGO,
1185 show_auto_pwm, NULL, 2, 3);
1186static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp, S_IRUGO | S_IWUSR,
1187 show_auto_temp, set_auto_temp, 2, 1);
1188static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp_hyst, S_IRUGO | S_IWUSR,
1189 show_auto_temp, set_auto_temp, 2, 0);
1190static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_temp, S_IRUGO | S_IWUSR,
1191 show_auto_temp, set_auto_temp, 2, 2);
1192static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_temp, S_IRUGO | S_IWUSR,
1193 show_auto_temp, set_auto_temp, 2, 3);
1194static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_temp, S_IRUGO | S_IWUSR,
1195 show_auto_temp, set_auto_temp, 2, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
1197/* Alarms */
Jean Delvare5f2dc792010-03-05 22:17:18 +01001198static ssize_t show_alarms(struct device *dev, struct device_attribute *attr,
1199 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200{
1201 struct it87_data *data = it87_update_device(dev);
Jean Delvare68188ba2005-05-16 18:52:38 +02001202 return sprintf(buf, "%u\n", data->alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203}
Jean Delvare1d66c642005-04-18 21:16:59 -07001204static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Jean Delvare0124dd72007-11-25 16:16:41 +01001206static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
1207 char *buf)
1208{
1209 int bitnr = to_sensor_dev_attr(attr)->index;
1210 struct it87_data *data = it87_update_device(dev);
1211 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
1212}
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001213
1214static ssize_t clear_intrusion(struct device *dev, struct device_attribute
1215 *attr, const char *buf, size_t count)
1216{
1217 struct it87_data *data = dev_get_drvdata(dev);
1218 long val;
1219 int config;
1220
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001221 if (kstrtol(buf, 10, &val) < 0 || val != 0)
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001222 return -EINVAL;
1223
1224 mutex_lock(&data->update_lock);
1225 config = it87_read_value(data, IT87_REG_CONFIG);
1226 if (config < 0) {
1227 count = config;
1228 } else {
1229 config |= 1 << 5;
1230 it87_write_value(data, IT87_REG_CONFIG, config);
1231 /* Invalidate cache to force re-read */
1232 data->valid = 0;
1233 }
1234 mutex_unlock(&data->update_lock);
1235
1236 return count;
1237}
1238
Jean Delvare0124dd72007-11-25 16:16:41 +01001239static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 8);
1240static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 9);
1241static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 10);
1242static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 11);
1243static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 12);
1244static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 13);
1245static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 14);
1246static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 15);
1247static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 0);
1248static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 1);
1249static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 2);
1250static SENSOR_DEVICE_ATTR(fan4_alarm, S_IRUGO, show_alarm, NULL, 3);
1251static SENSOR_DEVICE_ATTR(fan5_alarm, S_IRUGO, show_alarm, NULL, 6);
1252static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 16);
1253static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 17);
1254static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 18);
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001255static SENSOR_DEVICE_ATTR(intrusion0_alarm, S_IRUGO | S_IWUSR,
1256 show_alarm, clear_intrusion, 4);
Jean Delvare0124dd72007-11-25 16:16:41 +01001257
Jean Delvared9b327c2010-03-05 22:17:17 +01001258static ssize_t show_beep(struct device *dev, struct device_attribute *attr,
1259 char *buf)
1260{
1261 int bitnr = to_sensor_dev_attr(attr)->index;
1262 struct it87_data *data = it87_update_device(dev);
1263 return sprintf(buf, "%u\n", (data->beeps >> bitnr) & 1);
1264}
1265static ssize_t set_beep(struct device *dev, struct device_attribute *attr,
1266 const char *buf, size_t count)
1267{
1268 int bitnr = to_sensor_dev_attr(attr)->index;
1269 struct it87_data *data = dev_get_drvdata(dev);
1270 long val;
1271
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001272 if (kstrtol(buf, 10, &val) < 0
Jean Delvared9b327c2010-03-05 22:17:17 +01001273 || (val != 0 && val != 1))
1274 return -EINVAL;
1275
1276 mutex_lock(&data->update_lock);
1277 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
1278 if (val)
1279 data->beeps |= (1 << bitnr);
1280 else
1281 data->beeps &= ~(1 << bitnr);
1282 it87_write_value(data, IT87_REG_BEEP_ENABLE, data->beeps);
1283 mutex_unlock(&data->update_lock);
1284 return count;
1285}
1286
1287static SENSOR_DEVICE_ATTR(in0_beep, S_IRUGO | S_IWUSR,
1288 show_beep, set_beep, 1);
1289static SENSOR_DEVICE_ATTR(in1_beep, S_IRUGO, show_beep, NULL, 1);
1290static SENSOR_DEVICE_ATTR(in2_beep, S_IRUGO, show_beep, NULL, 1);
1291static SENSOR_DEVICE_ATTR(in3_beep, S_IRUGO, show_beep, NULL, 1);
1292static SENSOR_DEVICE_ATTR(in4_beep, S_IRUGO, show_beep, NULL, 1);
1293static SENSOR_DEVICE_ATTR(in5_beep, S_IRUGO, show_beep, NULL, 1);
1294static SENSOR_DEVICE_ATTR(in6_beep, S_IRUGO, show_beep, NULL, 1);
1295static SENSOR_DEVICE_ATTR(in7_beep, S_IRUGO, show_beep, NULL, 1);
1296/* fanX_beep writability is set later */
1297static SENSOR_DEVICE_ATTR(fan1_beep, S_IRUGO, show_beep, set_beep, 0);
1298static SENSOR_DEVICE_ATTR(fan2_beep, S_IRUGO, show_beep, set_beep, 0);
1299static SENSOR_DEVICE_ATTR(fan3_beep, S_IRUGO, show_beep, set_beep, 0);
1300static SENSOR_DEVICE_ATTR(fan4_beep, S_IRUGO, show_beep, set_beep, 0);
1301static SENSOR_DEVICE_ATTR(fan5_beep, S_IRUGO, show_beep, set_beep, 0);
1302static SENSOR_DEVICE_ATTR(temp1_beep, S_IRUGO | S_IWUSR,
1303 show_beep, set_beep, 2);
1304static SENSOR_DEVICE_ATTR(temp2_beep, S_IRUGO, show_beep, NULL, 2);
1305static SENSOR_DEVICE_ATTR(temp3_beep, S_IRUGO, show_beep, NULL, 2);
1306
Jean Delvare5f2dc792010-03-05 22:17:18 +01001307static ssize_t show_vrm_reg(struct device *dev, struct device_attribute *attr,
1308 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309{
Jean Delvare90d66192007-10-08 18:24:35 +02001310 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvarea7be58a2005-12-18 16:40:14 +01001311 return sprintf(buf, "%u\n", data->vrm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312}
Jean Delvare5f2dc792010-03-05 22:17:18 +01001313static ssize_t store_vrm_reg(struct device *dev, struct device_attribute *attr,
1314 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001316 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001317 unsigned long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001319 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001320 return -EINVAL;
1321
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 data->vrm = val;
1323
1324 return count;
1325}
1326static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm_reg, store_vrm_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Jean Delvare5f2dc792010-03-05 22:17:18 +01001328static ssize_t show_vid_reg(struct device *dev, struct device_attribute *attr,
1329 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330{
1331 struct it87_data *data = it87_update_device(dev);
1332 return sprintf(buf, "%ld\n", (long) vid_from_reg(data->vid, data->vrm));
1333}
1334static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL);
Jean Delvare87808be2006-09-24 21:17:13 +02001335
Jean Delvare738e5e02010-08-14 21:08:50 +02001336static ssize_t show_label(struct device *dev, struct device_attribute *attr,
1337 char *buf)
1338{
Guenter Roeck3c4c4972012-01-20 09:29:44 -08001339 static const char * const labels[] = {
Jean Delvare738e5e02010-08-14 21:08:50 +02001340 "+5V",
1341 "5VSB",
1342 "Vbat",
1343 };
Guenter Roeck3c4c4972012-01-20 09:29:44 -08001344 static const char * const labels_it8721[] = {
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001345 "+3.3V",
1346 "3VSB",
1347 "Vbat",
1348 };
1349 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvare738e5e02010-08-14 21:08:50 +02001350 int nr = to_sensor_dev_attr(attr)->index;
1351
Jean Delvare16b5dda2012-01-16 22:51:48 +01001352 return sprintf(buf, "%s\n", has_12mv_adc(data) ? labels_it8721[nr]
1353 : labels[nr]);
Jean Delvare738e5e02010-08-14 21:08:50 +02001354}
1355static SENSOR_DEVICE_ATTR(in3_label, S_IRUGO, show_label, NULL, 0);
1356static SENSOR_DEVICE_ATTR(in7_label, S_IRUGO, show_label, NULL, 1);
1357static SENSOR_DEVICE_ATTR(in8_label, S_IRUGO, show_label, NULL, 2);
1358
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001359static ssize_t show_name(struct device *dev, struct device_attribute
1360 *devattr, char *buf)
1361{
1362 struct it87_data *data = dev_get_drvdata(dev);
1363 return sprintf(buf, "%s\n", data->name);
1364}
1365static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
1366
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001367static struct attribute *it87_attributes_in[9][5] = {
1368{
Jean Delvare87808be2006-09-24 21:17:13 +02001369 &sensor_dev_attr_in0_input.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001370 &sensor_dev_attr_in0_min.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001371 &sensor_dev_attr_in0_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001372 &sensor_dev_attr_in0_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001373 NULL
1374}, {
1375 &sensor_dev_attr_in1_input.dev_attr.attr,
1376 &sensor_dev_attr_in1_min.dev_attr.attr,
1377 &sensor_dev_attr_in1_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001378 &sensor_dev_attr_in1_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001379 NULL
1380}, {
1381 &sensor_dev_attr_in2_input.dev_attr.attr,
1382 &sensor_dev_attr_in2_min.dev_attr.attr,
1383 &sensor_dev_attr_in2_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001384 &sensor_dev_attr_in2_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001385 NULL
1386}, {
1387 &sensor_dev_attr_in3_input.dev_attr.attr,
1388 &sensor_dev_attr_in3_min.dev_attr.attr,
1389 &sensor_dev_attr_in3_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001390 &sensor_dev_attr_in3_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001391 NULL
1392}, {
1393 &sensor_dev_attr_in4_input.dev_attr.attr,
1394 &sensor_dev_attr_in4_min.dev_attr.attr,
1395 &sensor_dev_attr_in4_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001396 &sensor_dev_attr_in4_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001397 NULL
1398}, {
1399 &sensor_dev_attr_in5_input.dev_attr.attr,
1400 &sensor_dev_attr_in5_min.dev_attr.attr,
1401 &sensor_dev_attr_in5_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001402 &sensor_dev_attr_in5_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001403 NULL
1404}, {
1405 &sensor_dev_attr_in6_input.dev_attr.attr,
1406 &sensor_dev_attr_in6_min.dev_attr.attr,
1407 &sensor_dev_attr_in6_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001408 &sensor_dev_attr_in6_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001409 NULL
1410}, {
1411 &sensor_dev_attr_in7_input.dev_attr.attr,
1412 &sensor_dev_attr_in7_min.dev_attr.attr,
1413 &sensor_dev_attr_in7_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001414 &sensor_dev_attr_in7_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001415 NULL
1416}, {
1417 &sensor_dev_attr_in8_input.dev_attr.attr,
1418 NULL
1419} };
Jean Delvare87808be2006-09-24 21:17:13 +02001420
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001421static const struct attribute_group it87_group_in[9] = {
1422 { .attrs = it87_attributes_in[0] },
1423 { .attrs = it87_attributes_in[1] },
1424 { .attrs = it87_attributes_in[2] },
1425 { .attrs = it87_attributes_in[3] },
1426 { .attrs = it87_attributes_in[4] },
1427 { .attrs = it87_attributes_in[5] },
1428 { .attrs = it87_attributes_in[6] },
1429 { .attrs = it87_attributes_in[7] },
1430 { .attrs = it87_attributes_in[8] },
1431};
1432
Guenter Roeck4573acb2012-03-26 16:17:41 -07001433static struct attribute *it87_attributes_temp[3][6] = {
1434{
Jean Delvare87808be2006-09-24 21:17:13 +02001435 &sensor_dev_attr_temp1_input.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001436 &sensor_dev_attr_temp1_max.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001437 &sensor_dev_attr_temp1_min.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001438 &sensor_dev_attr_temp1_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001439 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
Guenter Roeck4573acb2012-03-26 16:17:41 -07001440 NULL
1441} , {
1442 &sensor_dev_attr_temp2_input.dev_attr.attr,
1443 &sensor_dev_attr_temp2_max.dev_attr.attr,
1444 &sensor_dev_attr_temp2_min.dev_attr.attr,
1445 &sensor_dev_attr_temp2_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001446 &sensor_dev_attr_temp2_alarm.dev_attr.attr,
Guenter Roeck4573acb2012-03-26 16:17:41 -07001447 NULL
1448} , {
1449 &sensor_dev_attr_temp3_input.dev_attr.attr,
1450 &sensor_dev_attr_temp3_max.dev_attr.attr,
1451 &sensor_dev_attr_temp3_min.dev_attr.attr,
1452 &sensor_dev_attr_temp3_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001453 &sensor_dev_attr_temp3_alarm.dev_attr.attr,
Guenter Roeck4573acb2012-03-26 16:17:41 -07001454 NULL
1455} };
Jean Delvare87808be2006-09-24 21:17:13 +02001456
Guenter Roeck4573acb2012-03-26 16:17:41 -07001457static const struct attribute_group it87_group_temp[3] = {
1458 { .attrs = it87_attributes_temp[0] },
1459 { .attrs = it87_attributes_temp[1] },
1460 { .attrs = it87_attributes_temp[2] },
1461};
1462
Guenter Roeck161d8982012-12-19 22:17:01 +01001463static struct attribute *it87_attributes_temp_offset[] = {
1464 &sensor_dev_attr_temp1_offset.dev_attr.attr,
1465 &sensor_dev_attr_temp2_offset.dev_attr.attr,
1466 &sensor_dev_attr_temp3_offset.dev_attr.attr,
1467};
1468
Guenter Roeck4573acb2012-03-26 16:17:41 -07001469static struct attribute *it87_attributes[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02001470 &dev_attr_alarms.attr,
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001471 &sensor_dev_attr_intrusion0_alarm.dev_attr.attr,
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001472 &dev_attr_name.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001473 NULL
1474};
1475
1476static const struct attribute_group it87_group = {
1477 .attrs = it87_attributes,
1478};
1479
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001480static struct attribute *it87_attributes_in_beep[] = {
Jean Delvared9b327c2010-03-05 22:17:17 +01001481 &sensor_dev_attr_in0_beep.dev_attr.attr,
1482 &sensor_dev_attr_in1_beep.dev_attr.attr,
1483 &sensor_dev_attr_in2_beep.dev_attr.attr,
1484 &sensor_dev_attr_in3_beep.dev_attr.attr,
1485 &sensor_dev_attr_in4_beep.dev_attr.attr,
1486 &sensor_dev_attr_in5_beep.dev_attr.attr,
1487 &sensor_dev_attr_in6_beep.dev_attr.attr,
1488 &sensor_dev_attr_in7_beep.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001489 NULL
1490};
Jean Delvared9b327c2010-03-05 22:17:17 +01001491
Guenter Roeck4573acb2012-03-26 16:17:41 -07001492static struct attribute *it87_attributes_temp_beep[] = {
Jean Delvared9b327c2010-03-05 22:17:17 +01001493 &sensor_dev_attr_temp1_beep.dev_attr.attr,
1494 &sensor_dev_attr_temp2_beep.dev_attr.attr,
1495 &sensor_dev_attr_temp3_beep.dev_attr.attr,
Jean Delvared9b327c2010-03-05 22:17:17 +01001496};
1497
Guenter Roecke1169ba2012-12-19 22:17:01 +01001498static struct attribute *it87_attributes_fan[5][3+1] = { {
Jean Delvare87808be2006-09-24 21:17:13 +02001499 &sensor_dev_attr_fan1_input.dev_attr.attr,
1500 &sensor_dev_attr_fan1_min.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001501 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
1502 NULL
1503}, {
Jean Delvare87808be2006-09-24 21:17:13 +02001504 &sensor_dev_attr_fan2_input.dev_attr.attr,
1505 &sensor_dev_attr_fan2_min.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001506 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
1507 NULL
1508}, {
Jean Delvare87808be2006-09-24 21:17:13 +02001509 &sensor_dev_attr_fan3_input.dev_attr.attr,
1510 &sensor_dev_attr_fan3_min.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001511 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001512 NULL
Guenter Roecke1169ba2012-12-19 22:17:01 +01001513}, {
1514 &sensor_dev_attr_fan4_input.dev_attr.attr,
1515 &sensor_dev_attr_fan4_min.dev_attr.attr,
1516 &sensor_dev_attr_fan4_alarm.dev_attr.attr,
1517 NULL
1518}, {
1519 &sensor_dev_attr_fan5_input.dev_attr.attr,
1520 &sensor_dev_attr_fan5_min.dev_attr.attr,
1521 &sensor_dev_attr_fan5_alarm.dev_attr.attr,
1522 NULL
Jean Delvare723a0aa2010-03-05 22:17:16 +01001523} };
Jean Delvare0124dd72007-11-25 16:16:41 +01001524
Guenter Roecke1169ba2012-12-19 22:17:01 +01001525static const struct attribute_group it87_group_fan[5] = {
Jean Delvare723a0aa2010-03-05 22:17:16 +01001526 { .attrs = it87_attributes_fan[0] },
1527 { .attrs = it87_attributes_fan[1] },
1528 { .attrs = it87_attributes_fan[2] },
Guenter Roecke1169ba2012-12-19 22:17:01 +01001529 { .attrs = it87_attributes_fan[3] },
1530 { .attrs = it87_attributes_fan[4] },
Jean Delvare723a0aa2010-03-05 22:17:16 +01001531};
1532
Guenter Roecke1169ba2012-12-19 22:17:01 +01001533static const struct attribute *it87_attributes_fan_div[] = {
1534 &sensor_dev_attr_fan1_div.dev_attr.attr,
1535 &sensor_dev_attr_fan2_div.dev_attr.attr,
1536 &sensor_dev_attr_fan3_div.dev_attr.attr,
1537};
Jean Delvare723a0aa2010-03-05 22:17:16 +01001538
1539static struct attribute *it87_attributes_pwm[3][4+1] = { {
Jean Delvare87808be2006-09-24 21:17:13 +02001540 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001541 &sensor_dev_attr_pwm1.dev_attr.attr,
Jean Delvared5b0b5d2007-12-14 14:41:53 +01001542 &dev_attr_pwm1_freq.attr,
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001543 &sensor_dev_attr_pwm1_auto_channels_temp.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001544 NULL
1545}, {
1546 &sensor_dev_attr_pwm2_enable.dev_attr.attr,
1547 &sensor_dev_attr_pwm2.dev_attr.attr,
1548 &dev_attr_pwm2_freq.attr,
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001549 &sensor_dev_attr_pwm2_auto_channels_temp.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001550 NULL
1551}, {
1552 &sensor_dev_attr_pwm3_enable.dev_attr.attr,
1553 &sensor_dev_attr_pwm3.dev_attr.attr,
1554 &dev_attr_pwm3_freq.attr,
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001555 &sensor_dev_attr_pwm3_auto_channels_temp.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001556 NULL
1557} };
Jean Delvare87808be2006-09-24 21:17:13 +02001558
Jean Delvare723a0aa2010-03-05 22:17:16 +01001559static const struct attribute_group it87_group_pwm[3] = {
1560 { .attrs = it87_attributes_pwm[0] },
1561 { .attrs = it87_attributes_pwm[1] },
1562 { .attrs = it87_attributes_pwm[2] },
1563};
1564
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001565static struct attribute *it87_attributes_autopwm[3][9+1] = { {
1566 &sensor_dev_attr_pwm1_auto_point1_pwm.dev_attr.attr,
1567 &sensor_dev_attr_pwm1_auto_point2_pwm.dev_attr.attr,
1568 &sensor_dev_attr_pwm1_auto_point3_pwm.dev_attr.attr,
1569 &sensor_dev_attr_pwm1_auto_point4_pwm.dev_attr.attr,
1570 &sensor_dev_attr_pwm1_auto_point1_temp.dev_attr.attr,
1571 &sensor_dev_attr_pwm1_auto_point1_temp_hyst.dev_attr.attr,
1572 &sensor_dev_attr_pwm1_auto_point2_temp.dev_attr.attr,
1573 &sensor_dev_attr_pwm1_auto_point3_temp.dev_attr.attr,
1574 &sensor_dev_attr_pwm1_auto_point4_temp.dev_attr.attr,
1575 NULL
1576}, {
1577 &sensor_dev_attr_pwm2_auto_point1_pwm.dev_attr.attr,
1578 &sensor_dev_attr_pwm2_auto_point2_pwm.dev_attr.attr,
1579 &sensor_dev_attr_pwm2_auto_point3_pwm.dev_attr.attr,
1580 &sensor_dev_attr_pwm2_auto_point4_pwm.dev_attr.attr,
1581 &sensor_dev_attr_pwm2_auto_point1_temp.dev_attr.attr,
1582 &sensor_dev_attr_pwm2_auto_point1_temp_hyst.dev_attr.attr,
1583 &sensor_dev_attr_pwm2_auto_point2_temp.dev_attr.attr,
1584 &sensor_dev_attr_pwm2_auto_point3_temp.dev_attr.attr,
1585 &sensor_dev_attr_pwm2_auto_point4_temp.dev_attr.attr,
1586 NULL
1587}, {
1588 &sensor_dev_attr_pwm3_auto_point1_pwm.dev_attr.attr,
1589 &sensor_dev_attr_pwm3_auto_point2_pwm.dev_attr.attr,
1590 &sensor_dev_attr_pwm3_auto_point3_pwm.dev_attr.attr,
1591 &sensor_dev_attr_pwm3_auto_point4_pwm.dev_attr.attr,
1592 &sensor_dev_attr_pwm3_auto_point1_temp.dev_attr.attr,
1593 &sensor_dev_attr_pwm3_auto_point1_temp_hyst.dev_attr.attr,
1594 &sensor_dev_attr_pwm3_auto_point2_temp.dev_attr.attr,
1595 &sensor_dev_attr_pwm3_auto_point3_temp.dev_attr.attr,
1596 &sensor_dev_attr_pwm3_auto_point4_temp.dev_attr.attr,
1597 NULL
1598} };
1599
1600static const struct attribute_group it87_group_autopwm[3] = {
1601 { .attrs = it87_attributes_autopwm[0] },
1602 { .attrs = it87_attributes_autopwm[1] },
1603 { .attrs = it87_attributes_autopwm[2] },
1604};
1605
Jean Delvared9b327c2010-03-05 22:17:17 +01001606static struct attribute *it87_attributes_fan_beep[] = {
1607 &sensor_dev_attr_fan1_beep.dev_attr.attr,
1608 &sensor_dev_attr_fan2_beep.dev_attr.attr,
1609 &sensor_dev_attr_fan3_beep.dev_attr.attr,
1610 &sensor_dev_attr_fan4_beep.dev_attr.attr,
1611 &sensor_dev_attr_fan5_beep.dev_attr.attr,
1612};
1613
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01001614static struct attribute *it87_attributes_vid[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02001615 &dev_attr_vrm.attr,
1616 &dev_attr_cpu0_vid.attr,
1617 NULL
1618};
1619
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01001620static const struct attribute_group it87_group_vid = {
1621 .attrs = it87_attributes_vid,
Jean Delvare87808be2006-09-24 21:17:13 +02001622};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
Jean Delvare738e5e02010-08-14 21:08:50 +02001624static struct attribute *it87_attributes_label[] = {
1625 &sensor_dev_attr_in3_label.dev_attr.attr,
1626 &sensor_dev_attr_in7_label.dev_attr.attr,
1627 &sensor_dev_attr_in8_label.dev_attr.attr,
1628 NULL
1629};
1630
1631static const struct attribute_group it87_group_label = {
Jean Delvarefa8b6972011-07-17 18:39:19 +02001632 .attrs = it87_attributes_label,
Jean Delvare738e5e02010-08-14 21:08:50 +02001633};
1634
Jean Delvare2d8672c2005-07-19 23:56:35 +02001635/* SuperIO detection - will change isa_address if a chip is found */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001636static int __init it87_find(unsigned short *address,
1637 struct it87_sio_data *sio_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638{
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +02001639 int err;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001640 u16 chip_type;
Jean Delvare98dd22c2008-10-09 15:33:58 +02001641 const char *board_vendor, *board_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +02001643 err = superio_enter();
1644 if (err)
1645 return err;
1646
1647 err = -ENODEV;
Jean Delvare67b671b2007-12-06 23:13:42 +01001648 chip_type = force_id ? force_id : superio_inw(DEVID);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001649
1650 switch (chip_type) {
1651 case IT8705F_DEVID:
1652 sio_data->type = it87;
1653 break;
1654 case IT8712F_DEVID:
1655 sio_data->type = it8712;
1656 break;
1657 case IT8716F_DEVID:
1658 case IT8726F_DEVID:
1659 sio_data->type = it8716;
1660 break;
1661 case IT8718F_DEVID:
1662 sio_data->type = it8718;
1663 break;
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +01001664 case IT8720F_DEVID:
1665 sio_data->type = it8720;
1666 break;
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001667 case IT8721F_DEVID:
1668 sio_data->type = it8721;
1669 break;
Jean Delvare16b5dda2012-01-16 22:51:48 +01001670 case IT8728F_DEVID:
1671 sio_data->type = it8728;
1672 break;
Guenter Roeck0531d982012-03-02 11:46:44 -08001673 case IT8782F_DEVID:
1674 sio_data->type = it8782;
1675 break;
1676 case IT8783E_DEVID:
1677 sio_data->type = it8783;
1678 break;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001679 case 0xffff: /* No device at all */
1680 goto exit;
1681 default:
Joe Perchesa8ca1032011-01-12 21:55:10 +01001682 pr_debug("Unsupported chip (DEVID=0x%x)\n", chip_type);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001683 goto exit;
1684 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
Jean Delvare87673dd2006-08-28 14:37:19 +02001686 superio_select(PME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 if (!(superio_inb(IT87_ACT_REG) & 0x01)) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01001688 pr_info("Device not activated, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 goto exit;
1690 }
1691
1692 *address = superio_inw(IT87_BASE_REG) & ~(IT87_EXTENT - 1);
1693 if (*address == 0) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01001694 pr_info("Base address not set, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 goto exit;
1696 }
1697
1698 err = 0;
Andrew Paprocki04751692008-08-06 22:41:06 +02001699 sio_data->revision = superio_inb(DEVREV) & 0x0f;
Joe Perchesa8ca1032011-01-12 21:55:10 +01001700 pr_info("Found IT%04xF chip at 0x%x, revision %d\n",
Andrew Paprocki04751692008-08-06 22:41:06 +02001701 chip_type, *address, sio_data->revision);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Jean Delvare738e5e02010-08-14 21:08:50 +02001703 /* in8 (Vbat) is always internal */
1704 sio_data->internal = (1 << 2);
1705
Jean Delvare87673dd2006-08-28 14:37:19 +02001706 /* Read GPIO config and VID value from LDN 7 (GPIO) */
Jean Delvare895ff262009-12-09 20:35:47 +01001707 if (sio_data->type == it87) {
1708 /* The IT8705F doesn't have VID pins at all */
1709 sio_data->skip_vid = 1;
Jean Delvared9b327c2010-03-05 22:17:17 +01001710
1711 /* The IT8705F has a different LD number for GPIO */
1712 superio_select(5);
1713 sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f;
Guenter Roeck0531d982012-03-02 11:46:44 -08001714 } else if (sio_data->type == it8783) {
1715 int reg25, reg27, reg2A, reg2C, regEF;
Guenter Roeck0531d982012-03-02 11:46:44 -08001716
1717 sio_data->skip_vid = 1; /* No VID */
1718
1719 superio_select(GPIO);
1720
1721 reg25 = superio_inb(IT87_SIO_GPIO1_REG);
1722 reg27 = superio_inb(IT87_SIO_GPIO3_REG);
1723 reg2A = superio_inb(IT87_SIO_PINX1_REG);
1724 reg2C = superio_inb(IT87_SIO_PINX2_REG);
1725 regEF = superio_inb(IT87_SIO_SPI_REG);
1726
Guenter Roeck0531d982012-03-02 11:46:44 -08001727 /* Check if fan3 is there or not */
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001728 if ((reg27 & (1 << 0)) || !(reg2C & (1 << 2)))
Guenter Roeck0531d982012-03-02 11:46:44 -08001729 sio_data->skip_fan |= (1 << 2);
1730 if ((reg25 & (1 << 4))
1731 || (!(reg2A & (1 << 1)) && (regEF & (1 << 0))))
1732 sio_data->skip_pwm |= (1 << 2);
1733
1734 /* Check if fan2 is there or not */
1735 if (reg27 & (1 << 7))
1736 sio_data->skip_fan |= (1 << 1);
1737 if (reg27 & (1 << 3))
1738 sio_data->skip_pwm |= (1 << 1);
1739
1740 /* VIN5 */
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001741 if ((reg27 & (1 << 0)) || (reg2C & (1 << 2)))
1742 sio_data->skip_in |= (1 << 5); /* No VIN5 */
Guenter Roeck0531d982012-03-02 11:46:44 -08001743
1744 /* VIN6 */
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001745 if (reg27 & (1 << 1))
1746 sio_data->skip_in |= (1 << 6); /* No VIN6 */
Guenter Roeck0531d982012-03-02 11:46:44 -08001747
1748 /*
1749 * VIN7
1750 * Does not depend on bit 2 of Reg2C, contrary to datasheet.
1751 */
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001752 if (reg27 & (1 << 2)) {
1753 /*
1754 * The data sheet is a bit unclear regarding the
1755 * internal voltage divider for VCCH5V. It says
1756 * "This bit enables and switches VIN7 (pin 91) to the
1757 * internal voltage divider for VCCH5V".
1758 * This is different to other chips, where the internal
1759 * voltage divider would connect VIN7 to an internal
1760 * voltage source. Maybe that is the case here as well.
1761 *
1762 * Since we don't know for sure, re-route it if that is
1763 * not the case, and ask the user to report if the
1764 * resulting voltage is sane.
1765 */
1766 if (!(reg2C & (1 << 1))) {
1767 reg2C |= (1 << 1);
1768 superio_outb(IT87_SIO_PINX2_REG, reg2C);
1769 pr_notice("Routing internal VCCH5V to in7.\n");
1770 }
1771 pr_notice("in7 routed to internal voltage divider, with external pin disabled.\n");
1772 pr_notice("Please report if it displays a reasonable voltage.\n");
1773 }
Guenter Roeck0531d982012-03-02 11:46:44 -08001774
1775 if (reg2C & (1 << 0))
1776 sio_data->internal |= (1 << 0);
1777 if (reg2C & (1 << 1))
1778 sio_data->internal |= (1 << 1);
1779
1780 sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f;
1781
Jean Delvare895ff262009-12-09 20:35:47 +01001782 } else {
Jean Delvare87673dd2006-08-28 14:37:19 +02001783 int reg;
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001784 bool uart6;
Jean Delvare87673dd2006-08-28 14:37:19 +02001785
1786 superio_select(GPIO);
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001787
Jean Delvare895ff262009-12-09 20:35:47 +01001788 reg = superio_inb(IT87_SIO_GPIO3_REG);
Guenter Roeck0531d982012-03-02 11:46:44 -08001789 if (sio_data->type == it8721 || sio_data->type == it8728 ||
1790 sio_data->type == it8782) {
Jean Delvare16b5dda2012-01-16 22:51:48 +01001791 /*
Guenter Roeck0531d982012-03-02 11:46:44 -08001792 * IT8721F/IT8758E, and IT8782F don't have VID pins
1793 * at all, not sure about the IT8728F.
Jean Delvare16b5dda2012-01-16 22:51:48 +01001794 */
Jean Delvare895ff262009-12-09 20:35:47 +01001795 sio_data->skip_vid = 1;
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001796 } else {
1797 /* We need at least 4 VID pins */
1798 if (reg & 0x0f) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01001799 pr_info("VID is disabled (pins used for GPIO)\n");
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001800 sio_data->skip_vid = 1;
1801 }
Jean Delvare895ff262009-12-09 20:35:47 +01001802 }
1803
Jean Delvare591ec652009-12-09 20:35:48 +01001804 /* Check if fan3 is there or not */
1805 if (reg & (1 << 6))
1806 sio_data->skip_pwm |= (1 << 2);
1807 if (reg & (1 << 7))
1808 sio_data->skip_fan |= (1 << 2);
1809
1810 /* Check if fan2 is there or not */
1811 reg = superio_inb(IT87_SIO_GPIO5_REG);
1812 if (reg & (1 << 1))
1813 sio_data->skip_pwm |= (1 << 1);
1814 if (reg & (1 << 2))
1815 sio_data->skip_fan |= (1 << 1);
1816
Jean Delvare895ff262009-12-09 20:35:47 +01001817 if ((sio_data->type == it8718 || sio_data->type == it8720)
1818 && !(sio_data->skip_vid))
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001819 sio_data->vid_value = superio_inb(IT87_SIO_VID_REG);
Jean Delvare87673dd2006-08-28 14:37:19 +02001820
1821 reg = superio_inb(IT87_SIO_PINX2_REG);
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001822
1823 uart6 = sio_data->type == it8782 && (reg & (1 << 2));
1824
Jean Delvare436cad22010-07-09 16:22:48 +02001825 /*
1826 * The IT8720F has no VIN7 pin, so VCCH should always be
1827 * routed internally to VIN7 with an internal divider.
1828 * Curiously, there still is a configuration bit to control
1829 * this, which means it can be set incorrectly. And even
1830 * more curiously, many boards out there are improperly
1831 * configured, even though the IT8720F datasheet claims
1832 * that the internal routing of VCCH to VIN7 is the default
1833 * setting. So we force the internal routing in this case.
Guenter Roeck0531d982012-03-02 11:46:44 -08001834 *
1835 * On IT8782F, VIN7 is multiplexed with one of the UART6 pins.
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001836 * If UART6 is enabled, re-route VIN7 to the internal divider
1837 * if that is not already the case.
Jean Delvare436cad22010-07-09 16:22:48 +02001838 */
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001839 if ((sio_data->type == it8720 || uart6) && !(reg & (1 << 1))) {
Jean Delvare436cad22010-07-09 16:22:48 +02001840 reg |= (1 << 1);
1841 superio_outb(IT87_SIO_PINX2_REG, reg);
Joe Perchesa8ca1032011-01-12 21:55:10 +01001842 pr_notice("Routing internal VCCH to in7\n");
Jean Delvare436cad22010-07-09 16:22:48 +02001843 }
Jean Delvare87673dd2006-08-28 14:37:19 +02001844 if (reg & (1 << 0))
Jean Delvare738e5e02010-08-14 21:08:50 +02001845 sio_data->internal |= (1 << 0);
Jean Delvare16b5dda2012-01-16 22:51:48 +01001846 if ((reg & (1 << 1)) || sio_data->type == it8721 ||
1847 sio_data->type == it8728)
Jean Delvare738e5e02010-08-14 21:08:50 +02001848 sio_data->internal |= (1 << 1);
Jean Delvared9b327c2010-03-05 22:17:17 +01001849
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001850 /*
1851 * On IT8782F, UART6 pins overlap with VIN5, VIN6, and VIN7.
1852 * While VIN7 can be routed to the internal voltage divider,
1853 * VIN5 and VIN6 are not available if UART6 is enabled.
Guenter Roeck4573acb2012-03-26 16:17:41 -07001854 *
1855 * Also, temp3 is not available if UART6 is enabled and TEMPIN3
1856 * is the temperature source. Since we can not read the
1857 * temperature source here, skip_temp is preliminary.
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001858 */
Guenter Roeck4573acb2012-03-26 16:17:41 -07001859 if (uart6) {
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001860 sio_data->skip_in |= (1 << 5) | (1 << 6);
Guenter Roeck4573acb2012-03-26 16:17:41 -07001861 sio_data->skip_temp |= (1 << 2);
1862 }
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001863
Jean Delvared9b327c2010-03-05 22:17:17 +01001864 sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f;
Jean Delvare87673dd2006-08-28 14:37:19 +02001865 }
Jean Delvared9b327c2010-03-05 22:17:17 +01001866 if (sio_data->beep_pin)
Joe Perchesa8ca1032011-01-12 21:55:10 +01001867 pr_info("Beeping is supported\n");
Jean Delvare87673dd2006-08-28 14:37:19 +02001868
Jean Delvare98dd22c2008-10-09 15:33:58 +02001869 /* Disable specific features based on DMI strings */
1870 board_vendor = dmi_get_system_info(DMI_BOARD_VENDOR);
1871 board_name = dmi_get_system_info(DMI_BOARD_NAME);
1872 if (board_vendor && board_name) {
1873 if (strcmp(board_vendor, "nVIDIA") == 0
1874 && strcmp(board_name, "FN68PT") == 0) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001875 /*
1876 * On the Shuttle SN68PT, FAN_CTL2 is apparently not
1877 * connected to a fan, but to something else. One user
1878 * has reported instant system power-off when changing
1879 * the PWM2 duty cycle, so we disable it.
1880 * I use the board name string as the trigger in case
1881 * the same board is ever used in other systems.
1882 */
Joe Perchesa8ca1032011-01-12 21:55:10 +01001883 pr_info("Disabling pwm2 due to hardware constraints\n");
Jean Delvare98dd22c2008-10-09 15:33:58 +02001884 sio_data->skip_pwm = (1 << 1);
1885 }
1886 }
1887
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888exit:
1889 superio_exit();
1890 return err;
1891}
1892
Jean Delvare723a0aa2010-03-05 22:17:16 +01001893static void it87_remove_files(struct device *dev)
1894{
1895 struct it87_data *data = platform_get_drvdata(pdev);
1896 struct it87_sio_data *sio_data = dev->platform_data;
Jean Delvare723a0aa2010-03-05 22:17:16 +01001897 int i;
1898
1899 sysfs_remove_group(&dev->kobj, &it87_group);
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001900 for (i = 0; i < 9; i++) {
1901 if (sio_data->skip_in & (1 << i))
1902 continue;
1903 sysfs_remove_group(&dev->kobj, &it87_group_in[i]);
1904 if (it87_attributes_in_beep[i])
1905 sysfs_remove_file(&dev->kobj,
1906 it87_attributes_in_beep[i]);
1907 }
Guenter Roeck4573acb2012-03-26 16:17:41 -07001908 for (i = 0; i < 3; i++) {
1909 if (!(data->has_temp & (1 << i)))
1910 continue;
1911 sysfs_remove_group(&dev->kobj, &it87_group_temp[i]);
Guenter Roeck161d8982012-12-19 22:17:01 +01001912 if (has_temp_offset(data))
1913 sysfs_remove_file(&dev->kobj,
1914 it87_attributes_temp_offset[i]);
Guenter Roeck4573acb2012-03-26 16:17:41 -07001915 if (sio_data->beep_pin)
1916 sysfs_remove_file(&dev->kobj,
1917 it87_attributes_temp_beep[i]);
1918 }
Jean Delvare723a0aa2010-03-05 22:17:16 +01001919 for (i = 0; i < 5; i++) {
1920 if (!(data->has_fan & (1 << i)))
1921 continue;
Guenter Roecke1169ba2012-12-19 22:17:01 +01001922 sysfs_remove_group(&dev->kobj, &it87_group_fan[i]);
Jean Delvared9b327c2010-03-05 22:17:17 +01001923 if (sio_data->beep_pin)
1924 sysfs_remove_file(&dev->kobj,
1925 it87_attributes_fan_beep[i]);
Guenter Roecke1169ba2012-12-19 22:17:01 +01001926 if (i < 3 && !has_16bit_fans(data))
1927 sysfs_remove_file(&dev->kobj,
1928 it87_attributes_fan_div[i]);
Jean Delvare723a0aa2010-03-05 22:17:16 +01001929 }
1930 for (i = 0; i < 3; i++) {
1931 if (sio_data->skip_pwm & (1 << 0))
1932 continue;
1933 sysfs_remove_group(&dev->kobj, &it87_group_pwm[i]);
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001934 if (has_old_autopwm(data))
1935 sysfs_remove_group(&dev->kobj,
1936 &it87_group_autopwm[i]);
Jean Delvare723a0aa2010-03-05 22:17:16 +01001937 }
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01001938 if (!sio_data->skip_vid)
1939 sysfs_remove_group(&dev->kobj, &it87_group_vid);
Jean Delvare738e5e02010-08-14 21:08:50 +02001940 sysfs_remove_group(&dev->kobj, &it87_group_label);
Jean Delvare723a0aa2010-03-05 22:17:16 +01001941}
1942
Bill Pemberton6c931ae2012-11-19 13:22:35 -05001943static int it87_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 struct it87_data *data;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001946 struct resource *res;
1947 struct device *dev = &pdev->dev;
1948 struct it87_sio_data *sio_data = dev->platform_data;
Jean Delvare723a0aa2010-03-05 22:17:16 +01001949 int err = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 int enable_pwm_interface;
Jean Delvared9b327c2010-03-05 22:17:17 +01001951 int fan_beep_need_rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001953 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
Guenter Roeck62a1d052012-03-24 21:54:41 -07001954 if (!devm_request_region(&pdev->dev, res->start, IT87_EC_EXTENT,
1955 DRVNAME)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001956 dev_err(dev, "Failed to request region 0x%lx-0x%lx\n",
1957 (unsigned long)res->start,
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05001958 (unsigned long)(res->start + IT87_EC_EXTENT - 1));
Guenter Roeck62a1d052012-03-24 21:54:41 -07001959 return -EBUSY;
Jean Delvare8e9afcb2006-12-12 18:18:28 +01001960 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
Guenter Roeck62a1d052012-03-24 21:54:41 -07001962 data = devm_kzalloc(&pdev->dev, sizeof(struct it87_data), GFP_KERNEL);
1963 if (!data)
1964 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001966 data->addr = res->start;
1967 data->type = sio_data->type;
Guenter Roeck483db432012-12-19 22:17:02 +01001968 data->features = it87_devices[sio_data->type].features;
1969 data->name = it87_devices[sio_data->type].name;
1970 /*
1971 * IT8705F Datasheet 0.4.1, 3h == Version G.
1972 * IT8712F Datasheet 0.9.1, section 8.3.5 indicates 8h == Version J.
1973 * These are the first revisions with 16-bit tachometer support.
1974 */
1975 switch (data->type) {
1976 case it87:
1977 if (sio_data->revision >= 0x03) {
1978 data->features &= ~FEAT_OLD_AUTOPWM;
1979 data->features |= FEAT_16BIT_FANS;
1980 }
1981 break;
1982 case it8712:
1983 if (sio_data->revision >= 0x08) {
1984 data->features &= ~FEAT_OLD_AUTOPWM;
1985 data->features |= FEAT_16BIT_FANS;
1986 }
1987 break;
1988 default:
1989 break;
1990 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
1992 /* Now, we do the remaining detection. */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001993 if ((it87_read_value(data, IT87_REG_CONFIG) & 0x80)
Guenter Roeck62a1d052012-03-24 21:54:41 -07001994 || it87_read_value(data, IT87_REG_CHIPID) != 0x90)
1995 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001997 platform_set_drvdata(pdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001999 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 /* Check PWM configuration */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002002 enable_pwm_interface = it87_check_pwm(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002004 /* Starting with IT8721F, we handle scaling of internal voltages */
Jean Delvare16b5dda2012-01-16 22:51:48 +01002005 if (has_12mv_adc(data)) {
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002006 if (sio_data->internal & (1 << 0))
2007 data->in_scaled |= (1 << 3); /* in3 is AVCC */
2008 if (sio_data->internal & (1 << 1))
2009 data->in_scaled |= (1 << 7); /* in7 is VSB */
2010 if (sio_data->internal & (1 << 2))
2011 data->in_scaled |= (1 << 8); /* in8 is Vbat */
Guenter Roeck0531d982012-03-02 11:46:44 -08002012 } else if (sio_data->type == it8782 || sio_data->type == it8783) {
2013 if (sio_data->internal & (1 << 0))
2014 data->in_scaled |= (1 << 3); /* in3 is VCC5V */
2015 if (sio_data->internal & (1 << 1))
2016 data->in_scaled |= (1 << 7); /* in7 is VCCH5V */
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002017 }
2018
Guenter Roeck4573acb2012-03-26 16:17:41 -07002019 data->has_temp = 0x07;
2020 if (sio_data->skip_temp & (1 << 2)) {
2021 if (sio_data->type == it8782
2022 && !(it87_read_value(data, IT87_REG_TEMP_EXTRA) & 0x80))
2023 data->has_temp &= ~(1 << 2);
2024 }
2025
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 /* Initialize the IT87 chip */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002027 it87_init_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
2029 /* Register sysfs hooks */
Jean Delvare5f2dc792010-03-05 22:17:18 +01002030 err = sysfs_create_group(&dev->kobj, &it87_group);
2031 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002032 return err;
Jean Delvare17d648b2006-08-28 14:23:46 +02002033
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002034 for (i = 0; i < 9; i++) {
2035 if (sio_data->skip_in & (1 << i))
2036 continue;
2037 err = sysfs_create_group(&dev->kobj, &it87_group_in[i]);
2038 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002039 goto error;
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002040 if (sio_data->beep_pin && it87_attributes_in_beep[i]) {
2041 err = sysfs_create_file(&dev->kobj,
2042 it87_attributes_in_beep[i]);
2043 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002044 goto error;
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002045 }
2046 }
2047
Guenter Roeck4573acb2012-03-26 16:17:41 -07002048 for (i = 0; i < 3; i++) {
2049 if (!(data->has_temp & (1 << i)))
2050 continue;
2051 err = sysfs_create_group(&dev->kobj, &it87_group_temp[i]);
Jean Delvared9b327c2010-03-05 22:17:17 +01002052 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002053 goto error;
Guenter Roeck161d8982012-12-19 22:17:01 +01002054 if (has_temp_offset(data)) {
2055 err = sysfs_create_file(&dev->kobj,
2056 it87_attributes_temp_offset[i]);
2057 if (err)
2058 goto error;
2059 }
Guenter Roeck4573acb2012-03-26 16:17:41 -07002060 if (sio_data->beep_pin) {
2061 err = sysfs_create_file(&dev->kobj,
2062 it87_attributes_temp_beep[i]);
2063 if (err)
2064 goto error;
2065 }
Jean Delvared9b327c2010-03-05 22:17:17 +01002066 }
2067
Jean Delvare9060f8b2006-08-28 14:24:17 +02002068 /* Do not create fan files for disabled fans */
Jean Delvared9b327c2010-03-05 22:17:17 +01002069 fan_beep_need_rw = 1;
Jean Delvare723a0aa2010-03-05 22:17:16 +01002070 for (i = 0; i < 5; i++) {
2071 if (!(data->has_fan & (1 << i)))
2072 continue;
Guenter Roecke1169ba2012-12-19 22:17:01 +01002073 err = sysfs_create_group(&dev->kobj, &it87_group_fan[i]);
Jean Delvare723a0aa2010-03-05 22:17:16 +01002074 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002075 goto error;
Jean Delvared9b327c2010-03-05 22:17:17 +01002076
Guenter Roecke1169ba2012-12-19 22:17:01 +01002077 if (i < 3 && !has_16bit_fans(data)) {
2078 err = sysfs_create_file(&dev->kobj,
2079 it87_attributes_fan_div[i]);
2080 if (err)
2081 goto error;
2082 }
2083
Jean Delvared9b327c2010-03-05 22:17:17 +01002084 if (sio_data->beep_pin) {
2085 err = sysfs_create_file(&dev->kobj,
2086 it87_attributes_fan_beep[i]);
2087 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002088 goto error;
Jean Delvared9b327c2010-03-05 22:17:17 +01002089 if (!fan_beep_need_rw)
2090 continue;
2091
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002092 /*
2093 * As we have a single beep enable bit for all fans,
Jean Delvared9b327c2010-03-05 22:17:17 +01002094 * only the first enabled fan has a writable attribute
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002095 * for it.
2096 */
Jean Delvared9b327c2010-03-05 22:17:17 +01002097 if (sysfs_chmod_file(&dev->kobj,
2098 it87_attributes_fan_beep[i],
2099 S_IRUGO | S_IWUSR))
2100 dev_dbg(dev, "chmod +w fan%d_beep failed\n",
2101 i + 1);
2102 fan_beep_need_rw = 0;
2103 }
Jean Delvare17d648b2006-08-28 14:23:46 +02002104 }
2105
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 if (enable_pwm_interface) {
Jean Delvare723a0aa2010-03-05 22:17:16 +01002107 for (i = 0; i < 3; i++) {
2108 if (sio_data->skip_pwm & (1 << i))
2109 continue;
2110 err = sysfs_create_group(&dev->kobj,
2111 &it87_group_pwm[i]);
2112 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002113 goto error;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002114
2115 if (!has_old_autopwm(data))
2116 continue;
2117 err = sysfs_create_group(&dev->kobj,
2118 &it87_group_autopwm[i]);
2119 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002120 goto error;
Jean Delvare98dd22c2008-10-09 15:33:58 +02002121 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 }
2123
Jean Delvare895ff262009-12-09 20:35:47 +01002124 if (!sio_data->skip_vid) {
Jean Delvare303760b2005-07-31 21:52:01 +02002125 data->vrm = vid_which_vrm();
Jean Delvare87673dd2006-08-28 14:37:19 +02002126 /* VID reading from Super-I/O config space if available */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002127 data->vid = sio_data->vid_value;
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01002128 err = sysfs_create_group(&dev->kobj, &it87_group_vid);
2129 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002130 goto error;
Jean Delvare87808be2006-09-24 21:17:13 +02002131 }
2132
Jean Delvare738e5e02010-08-14 21:08:50 +02002133 /* Export labels for internal sensors */
2134 for (i = 0; i < 3; i++) {
2135 if (!(sio_data->internal & (1 << i)))
2136 continue;
2137 err = sysfs_create_file(&dev->kobj,
2138 it87_attributes_label[i]);
2139 if (err)
Guenter Roeck62a1d052012-03-24 21:54:41 -07002140 goto error;
Jean Delvare738e5e02010-08-14 21:08:50 +02002141 }
2142
Tony Jones1beeffe2007-08-20 13:46:20 -07002143 data->hwmon_dev = hwmon_device_register(dev);
2144 if (IS_ERR(data->hwmon_dev)) {
2145 err = PTR_ERR(data->hwmon_dev);
Guenter Roeck62a1d052012-03-24 21:54:41 -07002146 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 }
2148
2149 return 0;
2150
Guenter Roeck62a1d052012-03-24 21:54:41 -07002151error:
Jean Delvare723a0aa2010-03-05 22:17:16 +01002152 it87_remove_files(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 return err;
2154}
2155
Bill Pemberton281dfd02012-11-19 13:25:51 -05002156static int it87_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002158 struct it87_data *data = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
Tony Jones1beeffe2007-08-20 13:46:20 -07002160 hwmon_device_unregister(data->hwmon_dev);
Jean Delvare723a0aa2010-03-05 22:17:16 +01002161 it87_remove_files(&pdev->dev);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04002162
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 return 0;
2164}
2165
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002166/*
2167 * Must be called with data->update_lock held, except during initialization.
2168 * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
2169 * would slow down the IT87 access and should not be necessary.
2170 */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002171static int it87_read_value(struct it87_data *data, u8 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002173 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
2174 return inb_p(data->addr + IT87_DATA_REG_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175}
2176
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002177/*
2178 * Must be called with data->update_lock held, except during initialization.
2179 * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
2180 * would slow down the IT87 access and should not be necessary.
2181 */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002182static void it87_write_value(struct it87_data *data, u8 reg, u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002184 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
2185 outb_p(value, data->addr + IT87_DATA_REG_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186}
2187
2188/* Return 1 if and only if the PWM interface is safe to use */
Bill Pemberton6c931ae2012-11-19 13:22:35 -05002189static int it87_check_pwm(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002191 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002192 /*
2193 * Some BIOSes fail to correctly configure the IT87 fans. All fans off
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 * and polarity set to active low is sign that this is the case so we
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002195 * disable pwm control to protect the user.
2196 */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002197 int tmp = it87_read_value(data, IT87_REG_FAN_CTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 if ((tmp & 0x87) == 0) {
2199 if (fix_pwm_polarity) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002200 /*
2201 * The user asks us to attempt a chip reconfiguration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 * This means switching to active high polarity and
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002203 * inverting all fan speed values.
2204 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 int i;
2206 u8 pwm[3];
2207
2208 for (i = 0; i < 3; i++)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002209 pwm[i] = it87_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 IT87_REG_PWM(i));
2211
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002212 /*
2213 * If any fan is in automatic pwm mode, the polarity
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 * might be correct, as suspicious as it seems, so we
2215 * better don't change anything (but still disable the
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002216 * PWM interface).
2217 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 if (!((pwm[0] | pwm[1] | pwm[2]) & 0x80)) {
Guenter Roeck1d9bcf62012-12-19 22:17:01 +01002219 dev_info(dev,
2220 "Reconfiguring PWM to active high polarity\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002221 it87_write_value(data, IT87_REG_FAN_CTL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 tmp | 0x87);
2223 for (i = 0; i < 3; i++)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002224 it87_write_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 IT87_REG_PWM(i),
2226 0x7f & ~pwm[i]);
2227 return 1;
2228 }
2229
Guenter Roeck1d9bcf62012-12-19 22:17:01 +01002230 dev_info(dev,
2231 "PWM configuration is too broken to be fixed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 }
2233
Guenter Roeck1d9bcf62012-12-19 22:17:01 +01002234 dev_info(dev,
2235 "Detected broken BIOS defaults, disabling PWM interface\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 return 0;
2237 } else if (fix_pwm_polarity) {
Guenter Roeck1d9bcf62012-12-19 22:17:01 +01002238 dev_info(dev,
2239 "PWM configuration looks sane, won't touch\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 }
2241
2242 return 1;
2243}
2244
2245/* Called when we have found a new IT87. */
Bill Pemberton6c931ae2012-11-19 13:22:35 -05002246static void it87_init_device(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247{
Jean Delvare591ec652009-12-09 20:35:48 +01002248 struct it87_sio_data *sio_data = pdev->dev.platform_data;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002249 struct it87_data *data = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 int tmp, i;
Jean Delvare591ec652009-12-09 20:35:48 +01002251 u8 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002253 /*
2254 * For each PWM channel:
Jean Delvareb99883d2010-03-05 22:17:15 +01002255 * - If it is in automatic mode, setting to manual mode should set
2256 * the fan to full speed by default.
2257 * - If it is in manual mode, we need a mapping to temperature
2258 * channels to use when later setting to automatic mode later.
2259 * Use a 1:1 mapping by default (we are clueless.)
2260 * In both cases, the value can (and should) be changed by the user
Jean Delvare6229cdb2010-12-08 16:27:22 +01002261 * prior to switching to a different mode.
2262 * Note that this is no longer needed for the IT8721F and later, as
2263 * these have separate registers for the temperature mapping and the
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002264 * manual duty cycle.
2265 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 for (i = 0; i < 3; i++) {
Jean Delvareb99883d2010-03-05 22:17:15 +01002267 data->pwm_temp_map[i] = i;
2268 data->pwm_duty[i] = 0x7f; /* Full speed */
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002269 data->auto_pwm[i][3] = 0x7f; /* Full speed, hard-coded */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 }
2271
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002272 /*
2273 * Some chips seem to have default value 0xff for all limit
Jean Delvarec5df9b72006-08-28 14:37:54 +02002274 * registers. For low voltage limits it makes no sense and triggers
2275 * alarms, so change to 0 instead. For high temperature limits, it
2276 * means -1 degree C, which surprisingly doesn't trigger an alarm,
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002277 * but is still confusing, so change to 127 degrees C.
2278 */
Jean Delvarec5df9b72006-08-28 14:37:54 +02002279 for (i = 0; i < 8; i++) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002280 tmp = it87_read_value(data, IT87_REG_VIN_MIN(i));
Jean Delvarec5df9b72006-08-28 14:37:54 +02002281 if (tmp == 0xff)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002282 it87_write_value(data, IT87_REG_VIN_MIN(i), 0);
Jean Delvarec5df9b72006-08-28 14:37:54 +02002283 }
2284 for (i = 0; i < 3; i++) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002285 tmp = it87_read_value(data, IT87_REG_TEMP_HIGH(i));
Jean Delvarec5df9b72006-08-28 14:37:54 +02002286 if (tmp == 0xff)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002287 it87_write_value(data, IT87_REG_TEMP_HIGH(i), 127);
Jean Delvarec5df9b72006-08-28 14:37:54 +02002288 }
2289
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002290 /*
2291 * Temperature channels are not forcibly enabled, as they can be
Jean Delvarea00afb92010-04-14 16:14:09 +02002292 * set to two different sensor types and we can't guess which one
2293 * is correct for a given system. These channels can be enabled at
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002294 * run-time through the temp{1-3}_type sysfs accessors if needed.
2295 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296
2297 /* Check if voltage monitors are reset manually or by some reason */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002298 tmp = it87_read_value(data, IT87_REG_VIN_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 if ((tmp & 0xff) == 0) {
2300 /* Enable all voltage monitors */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002301 it87_write_value(data, IT87_REG_VIN_ENABLE, 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 }
2303
2304 /* Check if tachometers are reset manually or by some reason */
Jean Delvare591ec652009-12-09 20:35:48 +01002305 mask = 0x70 & ~(sio_data->skip_fan << 4);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002306 data->fan_main_ctrl = it87_read_value(data, IT87_REG_FAN_MAIN_CTRL);
Jean Delvare591ec652009-12-09 20:35:48 +01002307 if ((data->fan_main_ctrl & mask) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 /* Enable all fan tachometers */
Jean Delvare591ec652009-12-09 20:35:48 +01002309 data->fan_main_ctrl |= mask;
Jean Delvare5f2dc792010-03-05 22:17:18 +01002310 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
2311 data->fan_main_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 }
Jean Delvare9060f8b2006-08-28 14:24:17 +02002313 data->has_fan = (data->fan_main_ctrl >> 4) & 0x07;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
Jean Delvare17d648b2006-08-28 14:23:46 +02002315 /* Set tachometers to 16-bit mode if needed */
Andrew Paprocki04751692008-08-06 22:41:06 +02002316 if (has_16bit_fans(data)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002317 tmp = it87_read_value(data, IT87_REG_FAN_16BIT);
Jean Delvare9060f8b2006-08-28 14:24:17 +02002318 if (~tmp & 0x07 & data->has_fan) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002319 dev_dbg(&pdev->dev,
Jean Delvare17d648b2006-08-28 14:23:46 +02002320 "Setting fan1-3 to 16-bit mode\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002321 it87_write_value(data, IT87_REG_FAN_16BIT,
Jean Delvare17d648b2006-08-28 14:23:46 +02002322 tmp | 0x07);
2323 }
Guenter Roeck0531d982012-03-02 11:46:44 -08002324 /* IT8705F, IT8782F, and IT8783E/F only support three fans. */
2325 if (data->type != it87 && data->type != it8782 &&
2326 data->type != it8783) {
Andrew Paprocki816d8c62008-08-06 22:41:06 +02002327 if (tmp & (1 << 4))
2328 data->has_fan |= (1 << 3); /* fan4 enabled */
2329 if (tmp & (1 << 5))
2330 data->has_fan |= (1 << 4); /* fan5 enabled */
2331 }
Jean Delvare17d648b2006-08-28 14:23:46 +02002332 }
2333
Jean Delvare591ec652009-12-09 20:35:48 +01002334 /* Fan input pins may be used for alternative functions */
2335 data->has_fan &= ~sio_data->skip_fan;
2336
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 /* Start monitoring */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002338 it87_write_value(data, IT87_REG_CONFIG,
Jean Delvare41002f82012-07-12 22:47:37 +02002339 (it87_read_value(data, IT87_REG_CONFIG) & 0x3e)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 | (update_vbat ? 0x41 : 0x01));
2341}
2342
Jean Delvareb99883d2010-03-05 22:17:15 +01002343static void it87_update_pwm_ctrl(struct it87_data *data, int nr)
2344{
2345 data->pwm_ctrl[nr] = it87_read_value(data, IT87_REG_PWM(nr));
Jean Delvare16b5dda2012-01-16 22:51:48 +01002346 if (has_newer_autopwm(data)) {
Jean Delvareb99883d2010-03-05 22:17:15 +01002347 data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03;
Jean Delvare6229cdb2010-12-08 16:27:22 +01002348 data->pwm_duty[nr] = it87_read_value(data,
2349 IT87_REG_PWM_DUTY(nr));
2350 } else {
2351 if (data->pwm_ctrl[nr] & 0x80) /* Automatic mode */
2352 data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03;
2353 else /* Manual mode */
2354 data->pwm_duty[nr] = data->pwm_ctrl[nr] & 0x7f;
2355 }
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002356
2357 if (has_old_autopwm(data)) {
2358 int i;
2359
2360 for (i = 0; i < 5 ; i++)
2361 data->auto_temp[nr][i] = it87_read_value(data,
2362 IT87_REG_AUTO_TEMP(nr, i));
2363 for (i = 0; i < 3 ; i++)
2364 data->auto_pwm[nr][i] = it87_read_value(data,
2365 IT87_REG_AUTO_PWM(nr, i));
2366 }
Jean Delvareb99883d2010-03-05 22:17:15 +01002367}
2368
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369static struct it87_data *it87_update_device(struct device *dev)
2370{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002371 struct it87_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 int i;
2373
Ingo Molnar9a61bf62006-01-18 23:19:26 +01002374 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375
2376 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
2377 || !data->valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 if (update_vbat) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002379 /*
2380 * Cleared after each update, so reenable. Value
2381 * returned by this read will be previous value
2382 */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002383 it87_write_value(data, IT87_REG_CONFIG,
Jean Delvare5f2dc792010-03-05 22:17:18 +01002384 it87_read_value(data, IT87_REG_CONFIG) | 0x40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 }
2386 for (i = 0; i <= 7; i++) {
Guenter Roeck929c6a52012-12-19 22:17:00 +01002387 data->in[i][0] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002388 it87_read_value(data, IT87_REG_VIN(i));
Guenter Roeck929c6a52012-12-19 22:17:00 +01002389 data->in[i][1] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002390 it87_read_value(data, IT87_REG_VIN_MIN(i));
Guenter Roeck929c6a52012-12-19 22:17:00 +01002391 data->in[i][2] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002392 it87_read_value(data, IT87_REG_VIN_MAX(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 }
Jean Delvare3543a532006-08-28 14:27:25 +02002394 /* in8 (battery) has no limit registers */
Guenter Roeck929c6a52012-12-19 22:17:00 +01002395 data->in[8][0] = it87_read_value(data, IT87_REG_VIN(8));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396
Jean Delvarec7f1f712007-09-03 17:11:46 +02002397 for (i = 0; i < 5; i++) {
Jean Delvare9060f8b2006-08-28 14:24:17 +02002398 /* Skip disabled fans */
2399 if (!(data->has_fan & (1 << i)))
2400 continue;
2401
Guenter Roecke1169ba2012-12-19 22:17:01 +01002402 data->fan[i][1] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002403 it87_read_value(data, IT87_REG_FAN_MIN[i]);
Guenter Roecke1169ba2012-12-19 22:17:01 +01002404 data->fan[i][0] = it87_read_value(data,
Jean Delvarec7f1f712007-09-03 17:11:46 +02002405 IT87_REG_FAN[i]);
Jean Delvare17d648b2006-08-28 14:23:46 +02002406 /* Add high byte if in 16-bit mode */
Andrew Paprocki04751692008-08-06 22:41:06 +02002407 if (has_16bit_fans(data)) {
Guenter Roecke1169ba2012-12-19 22:17:01 +01002408 data->fan[i][0] |= it87_read_value(data,
Jean Delvarec7f1f712007-09-03 17:11:46 +02002409 IT87_REG_FANX[i]) << 8;
Guenter Roecke1169ba2012-12-19 22:17:01 +01002410 data->fan[i][1] |= it87_read_value(data,
Jean Delvarec7f1f712007-09-03 17:11:46 +02002411 IT87_REG_FANX_MIN[i]) << 8;
Jean Delvare17d648b2006-08-28 14:23:46 +02002412 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 }
2414 for (i = 0; i < 3; i++) {
Guenter Roeck4573acb2012-03-26 16:17:41 -07002415 if (!(data->has_temp & (1 << i)))
2416 continue;
Guenter Roeck60ca3852012-12-19 22:17:00 +01002417 data->temp[i][0] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002418 it87_read_value(data, IT87_REG_TEMP(i));
Guenter Roeck60ca3852012-12-19 22:17:00 +01002419 data->temp[i][1] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002420 it87_read_value(data, IT87_REG_TEMP_LOW(i));
Guenter Roeck60ca3852012-12-19 22:17:00 +01002421 data->temp[i][2] =
2422 it87_read_value(data, IT87_REG_TEMP_HIGH(i));
Guenter Roeck161d8982012-12-19 22:17:01 +01002423 if (has_temp_offset(data))
2424 data->temp[i][3] =
2425 it87_read_value(data,
2426 IT87_REG_TEMP_OFFSET[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 }
2428
Jean Delvare17d648b2006-08-28 14:23:46 +02002429 /* Newer chips don't have clock dividers */
Andrew Paprocki04751692008-08-06 22:41:06 +02002430 if ((data->has_fan & 0x07) && !has_16bit_fans(data)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002431 i = it87_read_value(data, IT87_REG_FAN_DIV);
Jean Delvare17d648b2006-08-28 14:23:46 +02002432 data->fan_div[0] = i & 0x07;
2433 data->fan_div[1] = (i >> 3) & 0x07;
2434 data->fan_div[2] = (i & 0x40) ? 3 : 1;
2435 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
2437 data->alarms =
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002438 it87_read_value(data, IT87_REG_ALARM1) |
2439 (it87_read_value(data, IT87_REG_ALARM2) << 8) |
2440 (it87_read_value(data, IT87_REG_ALARM3) << 16);
Jean Delvared9b327c2010-03-05 22:17:17 +01002441 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
Jean Delvareb99883d2010-03-05 22:17:15 +01002442
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002443 data->fan_main_ctrl = it87_read_value(data,
2444 IT87_REG_FAN_MAIN_CTRL);
2445 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL);
Jean Delvareb99883d2010-03-05 22:17:15 +01002446 for (i = 0; i < 3; i++)
2447 it87_update_pwm_ctrl(data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002449 data->sensor = it87_read_value(data, IT87_REG_TEMP_ENABLE);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002450 /*
2451 * The IT8705F does not have VID capability.
2452 * The IT8718F and later don't use IT87_REG_VID for the
2453 * same purpose.
2454 */
Jean Delvare17d648b2006-08-28 14:23:46 +02002455 if (data->type == it8712 || data->type == it8716) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002456 data->vid = it87_read_value(data, IT87_REG_VID);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002457 /*
2458 * The older IT8712F revisions had only 5 VID pins,
2459 * but we assume it is always safe to read 6 bits.
2460 */
Jean Delvare17d648b2006-08-28 14:23:46 +02002461 data->vid &= 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 }
2463 data->last_updated = jiffies;
2464 data->valid = 1;
2465 }
2466
Ingo Molnar9a61bf62006-01-18 23:19:26 +01002467 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468
2469 return data;
2470}
2471
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002472static int __init it87_device_add(unsigned short address,
2473 const struct it87_sio_data *sio_data)
2474{
2475 struct resource res = {
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05002476 .start = address + IT87_EC_OFFSET,
2477 .end = address + IT87_EC_OFFSET + IT87_EC_EXTENT - 1,
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002478 .name = DRVNAME,
2479 .flags = IORESOURCE_IO,
2480 };
2481 int err;
2482
Jean Delvareb9acb642009-01-07 16:37:35 +01002483 err = acpi_check_resource_conflict(&res);
2484 if (err)
2485 goto exit;
2486
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002487 pdev = platform_device_alloc(DRVNAME, address);
2488 if (!pdev) {
2489 err = -ENOMEM;
Joe Perchesa8ca1032011-01-12 21:55:10 +01002490 pr_err("Device allocation failed\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002491 goto exit;
2492 }
2493
2494 err = platform_device_add_resources(pdev, &res, 1);
2495 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002496 pr_err("Device resource addition failed (%d)\n", err);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002497 goto exit_device_put;
2498 }
2499
2500 err = platform_device_add_data(pdev, sio_data,
2501 sizeof(struct it87_sio_data));
2502 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002503 pr_err("Platform data allocation failed\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002504 goto exit_device_put;
2505 }
2506
2507 err = platform_device_add(pdev);
2508 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002509 pr_err("Device addition failed (%d)\n", err);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002510 goto exit_device_put;
2511 }
2512
2513 return 0;
2514
2515exit_device_put:
2516 platform_device_put(pdev);
2517exit:
2518 return err;
2519}
2520
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521static int __init sm_it87_init(void)
2522{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002523 int err;
Jean Delvare5f2dc792010-03-05 22:17:18 +01002524 unsigned short isa_address = 0;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002525 struct it87_sio_data sio_data;
Jean Delvarefde09502005-07-19 23:51:07 +02002526
Jean Delvare98dd22c2008-10-09 15:33:58 +02002527 memset(&sio_data, 0, sizeof(struct it87_sio_data));
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002528 err = it87_find(&isa_address, &sio_data);
2529 if (err)
2530 return err;
2531 err = platform_driver_register(&it87_driver);
2532 if (err)
2533 return err;
2534
2535 err = it87_device_add(isa_address, &sio_data);
Jean Delvare5f2dc792010-03-05 22:17:18 +01002536 if (err) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002537 platform_driver_unregister(&it87_driver);
2538 return err;
2539 }
2540
2541 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542}
2543
2544static void __exit sm_it87_exit(void)
2545{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002546 platform_device_unregister(pdev);
2547 platform_driver_unregister(&it87_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548}
2549
2550
Guenter Roeck1d9bcf62012-12-19 22:17:01 +01002551MODULE_AUTHOR("Chris Gauthron, Jean Delvare <khali@linux-fr.org>");
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002552MODULE_DESCRIPTION("IT8705F/IT871xF/IT872xF hardware monitoring driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553module_param(update_vbat, bool, 0);
2554MODULE_PARM_DESC(update_vbat, "Update vbat if set else return powerup value");
2555module_param(fix_pwm_polarity, bool, 0);
Jean Delvare5f2dc792010-03-05 22:17:18 +01002556MODULE_PARM_DESC(fix_pwm_polarity,
2557 "Force PWM polarity to active high (DANGEROUS)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558MODULE_LICENSE("GPL");
2559
2560module_init(sm_it87_init);
2561module_exit(sm_it87_exit);