blob: bef8732f08b14986947a5b1dbfd58cfe5ee1a56c [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 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206#define IT87_REG_FAN_MAIN_CTRL 0x13
207#define IT87_REG_FAN_CTL 0x14
208#define IT87_REG_PWM(nr) (0x15 + (nr))
Jean Delvare6229cdb2010-12-08 16:27:22 +0100209#define IT87_REG_PWM_DUTY(nr) (0x63 + (nr) * 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211#define IT87_REG_VIN(nr) (0x20 + (nr))
212#define IT87_REG_TEMP(nr) (0x29 + (nr))
213
214#define IT87_REG_VIN_MAX(nr) (0x30 + (nr) * 2)
215#define IT87_REG_VIN_MIN(nr) (0x31 + (nr) * 2)
216#define IT87_REG_TEMP_HIGH(nr) (0x40 + (nr) * 2)
217#define IT87_REG_TEMP_LOW(nr) (0x41 + (nr) * 2)
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219#define IT87_REG_VIN_ENABLE 0x50
220#define IT87_REG_TEMP_ENABLE 0x51
Jean Delvared9b327c2010-03-05 22:17:17 +0100221#define IT87_REG_BEEP_ENABLE 0x5c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223#define IT87_REG_CHIPID 0x58
224
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100225#define IT87_REG_AUTO_TEMP(nr, i) (0x60 + (nr) * 8 + (i))
226#define IT87_REG_AUTO_PWM(nr, i) (0x65 + (nr) * 8 + (i))
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200229struct it87_sio_data {
230 enum chips type;
231 /* Values read from Super-I/O config space */
Andrew Paprocki04751692008-08-06 22:41:06 +0200232 u8 revision;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200233 u8 vid_value;
Jean Delvared9b327c2010-03-05 22:17:17 +0100234 u8 beep_pin;
Jean Delvare738e5e02010-08-14 21:08:50 +0200235 u8 internal; /* Internal sensors can be labeled */
Jean Delvare591ec652009-12-09 20:35:48 +0100236 /* Features skipped based on config or DMI */
Guenter Roeck9172b5d2012-03-24 21:49:54 -0700237 u16 skip_in;
Jean Delvare895ff262009-12-09 20:35:47 +0100238 u8 skip_vid;
Jean Delvare591ec652009-12-09 20:35:48 +0100239 u8 skip_fan;
Jean Delvare98dd22c2008-10-09 15:33:58 +0200240 u8 skip_pwm;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200241};
242
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800243/*
244 * For each registered chip, we need to keep some data in memory.
245 * The structure is dynamically allocated.
246 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247struct it87_data {
Tony Jones1beeffe2007-08-20 13:46:20 -0700248 struct device *hwmon_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 enum chips type;
Andrew Paprocki04751692008-08-06 22:41:06 +0200250 u8 revision;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200252 unsigned short addr;
253 const char *name;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100254 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 char valid; /* !=0 if following fields are valid */
256 unsigned long last_updated; /* In jiffies */
257
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200258 u16 in_scaled; /* Internal voltage sensors are scaled */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 u8 in[9]; /* Register value */
Jean Delvare3543a532006-08-28 14:27:25 +0200260 u8 in_max[8]; /* Register value */
261 u8 in_min[8]; /* Register value */
Jean Delvare9060f8b2006-08-28 14:24:17 +0200262 u8 has_fan; /* Bitfield, fans enabled */
Jean Delvarec7f1f712007-09-03 17:11:46 +0200263 u16 fan[5]; /* Register values, possibly combined */
264 u16 fan_min[5]; /* Register values, possibly combined */
Jean Delvaree267d252009-03-12 13:36:39 +0100265 s8 temp[3]; /* Register value */
266 s8 temp_high[3]; /* Register value */
267 s8 temp_low[3]; /* Register value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 u8 sensor; /* Register value */
269 u8 fan_div[3]; /* Register encoding, shifted right */
270 u8 vid; /* Register encoding, combined */
Jean Delvarea7be58a2005-12-18 16:40:14 +0100271 u8 vrm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 u32 alarms; /* Register encoding, combined */
Jean Delvared9b327c2010-03-05 22:17:17 +0100273 u8 beeps; /* Register encoding */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 u8 fan_main_ctrl; /* Register value */
Jean Delvaref8d0c192007-02-14 21:15:02 +0100275 u8 fan_ctl; /* Register value */
Jean Delvareb99883d2010-03-05 22:17:15 +0100276
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800277 /*
278 * The following 3 arrays correspond to the same registers up to
Jean Delvare6229cdb2010-12-08 16:27:22 +0100279 * the IT8720F. The meaning of bits 6-0 depends on the value of bit
280 * 7, and we want to preserve settings on mode changes, so we have
281 * to track all values separately.
282 * Starting with the IT8721F, the manual PWM duty cycles are stored
283 * in separate registers (8-bit values), so the separate tracking
284 * is no longer needed, but it is still done to keep the driver
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800285 * simple.
286 */
Jean Delvareb99883d2010-03-05 22:17:15 +0100287 u8 pwm_ctrl[3]; /* Register value */
Jean Delvare6229cdb2010-12-08 16:27:22 +0100288 u8 pwm_duty[3]; /* Manual PWM value set by user */
Jean Delvareb99883d2010-03-05 22:17:15 +0100289 u8 pwm_temp_map[3]; /* PWM to temp. chan. mapping (bits 1-0) */
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100290
291 /* Automatic fan speed control registers */
292 u8 auto_pwm[3][4]; /* [nr][3] is hard-coded */
293 s8 auto_temp[3][5]; /* [nr][0] is point1_temp_hyst */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294};
295
Jean Delvare16b5dda2012-01-16 22:51:48 +0100296static inline int has_12mv_adc(const struct it87_data *data)
297{
298 /*
299 * IT8721F and later have a 12 mV ADC, also with internal scaling
300 * on selected inputs.
301 */
302 return data->type == it8721
303 || data->type == it8728;
304}
305
306static inline int has_newer_autopwm(const struct it87_data *data)
307{
308 /*
309 * IT8721F and later have separate registers for the temperature
310 * mapping and the manual duty cycle.
311 */
312 return data->type == it8721
313 || data->type == it8728;
314}
315
Guenter Roeck0531d982012-03-02 11:46:44 -0800316static int adc_lsb(const struct it87_data *data, int nr)
317{
318 int lsb = has_12mv_adc(data) ? 12 : 16;
319 if (data->in_scaled & (1 << nr))
320 lsb <<= 1;
321 return lsb;
322}
323
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200324static u8 in_to_reg(const struct it87_data *data, int nr, long val)
325{
Guenter Roeck0531d982012-03-02 11:46:44 -0800326 val = DIV_ROUND_CLOSEST(val, adc_lsb(data, nr));
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200327 return SENSORS_LIMIT(val, 0, 255);
328}
329
330static int in_from_reg(const struct it87_data *data, int nr, int val)
331{
Guenter Roeck0531d982012-03-02 11:46:44 -0800332 return val * adc_lsb(data, nr);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200333}
Jean Delvare0df6454d2010-10-28 20:31:51 +0200334
335static inline u8 FAN_TO_REG(long rpm, int div)
336{
337 if (rpm == 0)
338 return 255;
339 rpm = SENSORS_LIMIT(rpm, 1, 1000000);
340 return SENSORS_LIMIT((1350000 + rpm * div / 2) / (rpm * div), 1,
341 254);
342}
343
344static inline u16 FAN16_TO_REG(long rpm)
345{
346 if (rpm == 0)
347 return 0xffff;
348 return SENSORS_LIMIT((1350000 + rpm) / (rpm * 2), 1, 0xfffe);
349}
350
351#define FAN_FROM_REG(val, div) ((val) == 0 ? -1 : (val) == 255 ? 0 : \
352 1350000 / ((val) * (div)))
353/* The divider is fixed to 2 in 16-bit mode */
354#define FAN16_FROM_REG(val) ((val) == 0 ? -1 : (val) == 0xffff ? 0 : \
355 1350000 / ((val) * 2))
356
357#define TEMP_TO_REG(val) (SENSORS_LIMIT(((val) < 0 ? (((val) - 500) / 1000) : \
358 ((val) + 500) / 1000), -128, 127))
359#define TEMP_FROM_REG(val) ((val) * 1000)
360
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200361static u8 pwm_to_reg(const struct it87_data *data, long val)
362{
Jean Delvare16b5dda2012-01-16 22:51:48 +0100363 if (has_newer_autopwm(data))
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200364 return val;
365 else
366 return val >> 1;
367}
368
369static int pwm_from_reg(const struct it87_data *data, u8 reg)
370{
Jean Delvare16b5dda2012-01-16 22:51:48 +0100371 if (has_newer_autopwm(data))
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200372 return reg;
373 else
374 return (reg & 0x7f) << 1;
375}
376
Jean Delvare0df6454d2010-10-28 20:31:51 +0200377
378static int DIV_TO_REG(int val)
379{
380 int answer = 0;
381 while (answer < 7 && (val >>= 1))
382 answer++;
383 return answer;
384}
385#define DIV_FROM_REG(val) (1 << (val))
386
387static const unsigned int pwm_freq[8] = {
388 48000000 / 128,
389 24000000 / 128,
390 12000000 / 128,
391 8000000 / 128,
392 6000000 / 128,
393 3000000 / 128,
394 1500000 / 128,
395 750000 / 128,
396};
397
Andrew Paprocki04751692008-08-06 22:41:06 +0200398static inline int has_16bit_fans(const struct it87_data *data)
399{
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800400 /*
401 * IT8705F Datasheet 0.4.1, 3h == Version G.
402 * IT8712F Datasheet 0.9.1, section 8.3.5 indicates 8h == Version J.
403 * These are the first revisions with 16-bit tachometer support.
404 */
Andrew Paprocki816d8c62008-08-06 22:41:06 +0200405 return (data->type == it87 && data->revision >= 0x03)
Andrew Paprocki859b9ef2008-09-20 10:25:19 +0200406 || (data->type == it8712 && data->revision >= 0x08)
Andrew Paprocki04751692008-08-06 22:41:06 +0200407 || data->type == it8716
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +0100408 || data->type == it8718
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200409 || data->type == it8720
Jean Delvare16b5dda2012-01-16 22:51:48 +0100410 || data->type == it8721
Guenter Roeck0531d982012-03-02 11:46:44 -0800411 || data->type == it8728
412 || data->type == it8782
413 || data->type == it8783;
Andrew Paprocki04751692008-08-06 22:41:06 +0200414}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100416static inline int has_old_autopwm(const struct it87_data *data)
417{
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800418 /*
419 * The old automatic fan speed control interface is implemented
420 * by IT8705F chips up to revision F and IT8712F chips up to
421 * revision G.
422 */
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100423 return (data->type == it87 && data->revision < 0x03)
424 || (data->type == it8712 && data->revision < 0x08);
425}
426
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200427static int it87_probe(struct platform_device *pdev);
Jean Delvared0546122007-07-22 12:09:48 +0200428static int __devexit it87_remove(struct platform_device *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200430static int it87_read_value(struct it87_data *data, u8 reg);
431static void it87_write_value(struct it87_data *data, u8 reg, u8 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432static struct it87_data *it87_update_device(struct device *dev);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200433static int it87_check_pwm(struct device *dev);
434static void it87_init_device(struct platform_device *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200437static struct platform_driver it87_driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100438 .driver = {
Jean Delvare87218842006-09-03 22:36:14 +0200439 .owner = THIS_MODULE,
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200440 .name = DRVNAME,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100441 },
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200442 .probe = it87_probe,
443 .remove = __devexit_p(it87_remove),
Jean Delvarefde09502005-07-19 23:51:07 +0200444};
445
Jean Delvare20ad93d2005-06-05 11:53:25 +0200446static ssize_t show_in(struct device *dev, struct device_attribute *attr,
447 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200449 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
450 int nr = sensor_attr->index;
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 struct it87_data *data = it87_update_device(dev);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200453 return sprintf(buf, "%d\n", in_from_reg(data, nr, data->in[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454}
455
Jean Delvare20ad93d2005-06-05 11:53:25 +0200456static ssize_t show_in_min(struct device *dev, struct device_attribute *attr,
457 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200459 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
460 int nr = sensor_attr->index;
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 struct it87_data *data = it87_update_device(dev);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200463 return sprintf(buf, "%d\n", in_from_reg(data, nr, data->in_min[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
465
Jean Delvare20ad93d2005-06-05 11:53:25 +0200466static ssize_t show_in_max(struct device *dev, struct device_attribute *attr,
467 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200469 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
470 int nr = sensor_attr->index;
471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 struct it87_data *data = it87_update_device(dev);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200473 return sprintf(buf, "%d\n", in_from_reg(data, nr, data->in_max[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474}
475
Jean Delvare20ad93d2005-06-05 11:53:25 +0200476static ssize_t set_in_min(struct device *dev, struct device_attribute *attr,
477 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200479 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
480 int nr = sensor_attr->index;
481
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200482 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100483 unsigned long val;
484
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100485 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100486 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100488 mutex_lock(&data->update_lock);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200489 data->in_min[nr] = in_to_reg(data, nr, val);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200490 it87_write_value(data, IT87_REG_VIN_MIN(nr),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 data->in_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100492 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 return count;
494}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200495static ssize_t set_in_max(struct device *dev, struct device_attribute *attr,
496 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200498 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
499 int nr = sensor_attr->index;
500
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200501 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100502 unsigned long val;
503
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100504 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100505 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100507 mutex_lock(&data->update_lock);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200508 data->in_max[nr] = in_to_reg(data, nr, val);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200509 it87_write_value(data, IT87_REG_VIN_MAX(nr),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 data->in_max[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100511 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 return count;
513}
514
515#define show_in_offset(offset) \
Jean Delvare20ad93d2005-06-05 11:53:25 +0200516static SENSOR_DEVICE_ATTR(in##offset##_input, S_IRUGO, \
517 show_in, NULL, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
519#define limit_in_offset(offset) \
Jean Delvare20ad93d2005-06-05 11:53:25 +0200520static SENSOR_DEVICE_ATTR(in##offset##_min, S_IRUGO | S_IWUSR, \
521 show_in_min, set_in_min, offset); \
522static SENSOR_DEVICE_ATTR(in##offset##_max, S_IRUGO | S_IWUSR, \
523 show_in_max, set_in_max, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525show_in_offset(0);
526limit_in_offset(0);
527show_in_offset(1);
528limit_in_offset(1);
529show_in_offset(2);
530limit_in_offset(2);
531show_in_offset(3);
532limit_in_offset(3);
533show_in_offset(4);
534limit_in_offset(4);
535show_in_offset(5);
536limit_in_offset(5);
537show_in_offset(6);
538limit_in_offset(6);
539show_in_offset(7);
540limit_in_offset(7);
541show_in_offset(8);
542
543/* 3 temperatures */
Jean Delvare20ad93d2005-06-05 11:53:25 +0200544static ssize_t show_temp(struct device *dev, struct device_attribute *attr,
545 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200547 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
548 int nr = sensor_attr->index;
549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 struct it87_data *data = it87_update_device(dev);
551 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[nr]));
552}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200553static ssize_t show_temp_max(struct device *dev, struct device_attribute *attr,
554 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200556 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
557 int nr = sensor_attr->index;
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 struct it87_data *data = it87_update_device(dev);
560 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_high[nr]));
561}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200562static ssize_t show_temp_min(struct device *dev, struct device_attribute *attr,
563 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200565 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
566 int nr = sensor_attr->index;
567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 struct it87_data *data = it87_update_device(dev);
569 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_low[nr]));
570}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200571static ssize_t set_temp_max(struct device *dev, struct device_attribute *attr,
572 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200574 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
575 int nr = sensor_attr->index;
576
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200577 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100578 long val;
579
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100580 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100581 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100583 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 data->temp_high[nr] = TEMP_TO_REG(val);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200585 it87_write_value(data, IT87_REG_TEMP_HIGH(nr), data->temp_high[nr]);
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 +0200589static ssize_t set_temp_min(struct device *dev, struct device_attribute *attr,
590 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200592 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
593 int nr = sensor_attr->index;
594
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200595 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100596 long val;
597
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100598 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100599 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100601 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 data->temp_low[nr] = TEMP_TO_REG(val);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200603 it87_write_value(data, IT87_REG_TEMP_LOW(nr), data->temp_low[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100604 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 return count;
606}
607#define show_temp_offset(offset) \
Jean Delvare20ad93d2005-06-05 11:53:25 +0200608static SENSOR_DEVICE_ATTR(temp##offset##_input, S_IRUGO, \
609 show_temp, NULL, offset - 1); \
610static SENSOR_DEVICE_ATTR(temp##offset##_max, S_IRUGO | S_IWUSR, \
611 show_temp_max, set_temp_max, offset - 1); \
612static SENSOR_DEVICE_ATTR(temp##offset##_min, S_IRUGO | S_IWUSR, \
613 show_temp_min, set_temp_min, offset - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615show_temp_offset(1);
616show_temp_offset(2);
617show_temp_offset(3);
618
Jean Delvare20ad93d2005-06-05 11:53:25 +0200619static ssize_t show_sensor(struct device *dev, struct device_attribute *attr,
620 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200622 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
623 int nr = sensor_attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 struct it87_data *data = it87_update_device(dev);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800625 u8 reg = data->sensor; /* In case value is updated while used */
Jean Delvare5f2dc792010-03-05 22:17:18 +0100626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 if (reg & (1 << nr))
628 return sprintf(buf, "3\n"); /* thermal diode */
629 if (reg & (8 << nr))
Jean Delvare4ed10772008-10-17 17:51:16 +0200630 return sprintf(buf, "4\n"); /* thermistor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return sprintf(buf, "0\n"); /* disabled */
632}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200633static ssize_t set_sensor(struct device *dev, struct device_attribute *attr,
634 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200636 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
637 int nr = sensor_attr->index;
638
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200639 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100640 long val;
Jean Delvare8acf07c2010-04-14 16:14:09 +0200641 u8 reg;
Jean Delvaref5f64502010-03-05 22:17:19 +0100642
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100643 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100644 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Jean Delvare8acf07c2010-04-14 16:14:09 +0200646 reg = it87_read_value(data, IT87_REG_TEMP_ENABLE);
647 reg &= ~(1 << nr);
648 reg &= ~(8 << nr);
Jean Delvare4ed10772008-10-17 17:51:16 +0200649 if (val == 2) { /* backwards compatibility */
650 dev_warn(dev, "Sensor type 2 is deprecated, please use 4 "
651 "instead\n");
652 val = 4;
653 }
654 /* 3 = thermal diode; 4 = thermistor; 0 = disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 if (val == 3)
Jean Delvare8acf07c2010-04-14 16:14:09 +0200656 reg |= 1 << nr;
Jean Delvare4ed10772008-10-17 17:51:16 +0200657 else if (val == 4)
Jean Delvare8acf07c2010-04-14 16:14:09 +0200658 reg |= 8 << nr;
659 else if (val != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 return -EINVAL;
Jean Delvare8acf07c2010-04-14 16:14:09 +0200661
662 mutex_lock(&data->update_lock);
663 data->sensor = reg;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200664 it87_write_value(data, IT87_REG_TEMP_ENABLE, data->sensor);
Jean Delvare2b3d1d82010-04-14 16:14:10 +0200665 data->valid = 0; /* Force cache refresh */
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100666 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 return count;
668}
669#define show_sensor_offset(offset) \
Jean Delvare20ad93d2005-06-05 11:53:25 +0200670static SENSOR_DEVICE_ATTR(temp##offset##_type, S_IRUGO | S_IWUSR, \
671 show_sensor, set_sensor, offset - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673show_sensor_offset(1);
674show_sensor_offset(2);
675show_sensor_offset(3);
676
677/* 3 Fans */
Jean Delvareb99883d2010-03-05 22:17:15 +0100678
679static int pwm_mode(const struct it87_data *data, int nr)
680{
681 int ctrl = data->fan_main_ctrl & (1 << nr);
682
683 if (ctrl == 0) /* Full speed */
684 return 0;
685 if (data->pwm_ctrl[nr] & 0x80) /* Automatic mode */
686 return 2;
687 else /* Manual mode */
688 return 1;
689}
690
Jean Delvare20ad93d2005-06-05 11:53:25 +0200691static ssize_t show_fan(struct device *dev, struct device_attribute *attr,
692 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200694 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
695 int nr = sensor_attr->index;
696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 struct it87_data *data = it87_update_device(dev);
Jean Delvare5f2dc792010-03-05 22:17:18 +0100698 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[nr],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 DIV_FROM_REG(data->fan_div[nr])));
700}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200701static ssize_t show_fan_min(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);
Jean Delvare5f2dc792010-03-05 22:17:18 +0100708 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan_min[nr],
709 DIV_FROM_REG(data->fan_div[nr])));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200711static ssize_t show_fan_div(struct device *dev, struct device_attribute *attr,
712 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200714 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
715 int nr = sensor_attr->index;
716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 struct it87_data *data = it87_update_device(dev);
718 return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[nr]));
719}
Jean Delvare5f2dc792010-03-05 22:17:18 +0100720static ssize_t show_pwm_enable(struct device *dev,
721 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200723 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
724 int nr = sensor_attr->index;
725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 struct it87_data *data = it87_update_device(dev);
Jean Delvareb99883d2010-03-05 22:17:15 +0100727 return sprintf(buf, "%d\n", pwm_mode(data, nr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200729static ssize_t show_pwm(struct device *dev, struct device_attribute *attr,
730 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200732 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
733 int nr = sensor_attr->index;
734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 struct it87_data *data = it87_update_device(dev);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200736 return sprintf(buf, "%d\n",
737 pwm_from_reg(data, data->pwm_duty[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738}
Jean Delvaref8d0c192007-02-14 21:15:02 +0100739static ssize_t show_pwm_freq(struct device *dev, struct device_attribute *attr,
740 char *buf)
741{
742 struct it87_data *data = it87_update_device(dev);
743 int index = (data->fan_ctl >> 4) & 0x07;
744
745 return sprintf(buf, "%u\n", pwm_freq[index]);
746}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200747static ssize_t set_fan_min(struct device *dev, struct device_attribute *attr,
748 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200750 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
751 int nr = sensor_attr->index;
752
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200753 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100754 long val;
Jean Delvare7f999aa2007-02-14 21:15:03 +0100755 u8 reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100757 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100758 return -EINVAL;
759
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100760 mutex_lock(&data->update_lock);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200761 reg = it87_read_value(data, IT87_REG_FAN_DIV);
Jean Delvare07eab462005-11-23 15:44:31 -0800762 switch (nr) {
Jean Delvare5f2dc792010-03-05 22:17:18 +0100763 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;
Jean Delvare07eab462005-11-23 15:44:31 -0800772 }
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 data->fan_min[nr] = FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
Jean Delvarec7f1f712007-09-03 17:11:46 +0200775 it87_write_value(data, IT87_REG_FAN_MIN[nr], data->fan_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100776 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 return count;
778}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200779static ssize_t set_fan_div(struct device *dev, struct device_attribute *attr,
780 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200782 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
783 int nr = sensor_attr->index;
784
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200785 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100786 unsigned long val;
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200787 int min;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 u8 old;
789
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100790 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100791 return -EINVAL;
792
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100793 mutex_lock(&data->update_lock);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200794 old = it87_read_value(data, IT87_REG_FAN_DIV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200796 /* Save fan min limit */
797 min = FAN_FROM_REG(data->fan_min[nr], DIV_FROM_REG(data->fan_div[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799 switch (nr) {
800 case 0:
801 case 1:
802 data->fan_div[nr] = DIV_TO_REG(val);
803 break;
804 case 2:
805 if (val < 8)
806 data->fan_div[nr] = 1;
807 else
808 data->fan_div[nr] = 3;
809 }
810 val = old & 0x80;
811 val |= (data->fan_div[0] & 0x07);
812 val |= (data->fan_div[1] & 0x07) << 3;
813 if (data->fan_div[2] == 3)
814 val |= 0x1 << 6;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200815 it87_write_value(data, IT87_REG_FAN_DIV, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200817 /* Restore fan min limit */
818 data->fan_min[nr] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
Jean Delvarec7f1f712007-09-03 17:11:46 +0200819 it87_write_value(data, IT87_REG_FAN_MIN[nr], data->fan_min[nr]);
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200820
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100821 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 return count;
823}
Jean Delvarecccfc9c2010-03-05 22:17:21 +0100824
825/* Returns 0 if OK, -EINVAL otherwise */
826static int check_trip_points(struct device *dev, int nr)
827{
828 const struct it87_data *data = dev_get_drvdata(dev);
829 int i, err = 0;
830
831 if (has_old_autopwm(data)) {
832 for (i = 0; i < 3; i++) {
833 if (data->auto_temp[nr][i] > data->auto_temp[nr][i + 1])
834 err = -EINVAL;
835 }
836 for (i = 0; i < 2; i++) {
837 if (data->auto_pwm[nr][i] > data->auto_pwm[nr][i + 1])
838 err = -EINVAL;
839 }
840 }
841
842 if (err) {
843 dev_err(dev, "Inconsistent trip points, not switching to "
844 "automatic mode\n");
845 dev_err(dev, "Adjust the trip points and try again\n");
846 }
847 return err;
848}
849
Jean Delvare20ad93d2005-06-05 11:53:25 +0200850static ssize_t set_pwm_enable(struct device *dev,
851 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200853 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
854 int nr = sensor_attr->index;
855
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200856 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100857 long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100859 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 2)
Jean Delvareb99883d2010-03-05 22:17:15 +0100860 return -EINVAL;
861
Jean Delvarecccfc9c2010-03-05 22:17:21 +0100862 /* Check trip points before switching to automatic mode */
863 if (val == 2) {
864 if (check_trip_points(dev, nr) < 0)
865 return -EINVAL;
866 }
867
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100868 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870 if (val == 0) {
871 int tmp;
872 /* make sure the fan is on when in on/off mode */
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200873 tmp = it87_read_value(data, IT87_REG_FAN_CTL);
874 it87_write_value(data, IT87_REG_FAN_CTL, tmp | (1 << nr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 /* set on/off mode */
876 data->fan_main_ctrl &= ~(1 << nr);
Jean Delvare5f2dc792010-03-05 22:17:18 +0100877 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
878 data->fan_main_ctrl);
Jean Delvareb99883d2010-03-05 22:17:15 +0100879 } else {
880 if (val == 1) /* Manual mode */
Jean Delvare16b5dda2012-01-16 22:51:48 +0100881 data->pwm_ctrl[nr] = has_newer_autopwm(data) ?
Jean Delvare6229cdb2010-12-08 16:27:22 +0100882 data->pwm_temp_map[nr] :
883 data->pwm_duty[nr];
Jean Delvareb99883d2010-03-05 22:17:15 +0100884 else /* Automatic mode */
885 data->pwm_ctrl[nr] = 0x80 | data->pwm_temp_map[nr];
886 it87_write_value(data, IT87_REG_PWM(nr), data->pwm_ctrl[nr]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 /* set SmartGuardian mode */
888 data->fan_main_ctrl |= (1 << nr);
Jean Delvare5f2dc792010-03-05 22:17:18 +0100889 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
890 data->fan_main_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 }
892
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100893 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 return count;
895}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200896static ssize_t set_pwm(struct device *dev, struct device_attribute *attr,
897 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200899 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
900 int nr = sensor_attr->index;
901
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200902 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100903 long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100905 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 return -EINVAL;
907
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100908 mutex_lock(&data->update_lock);
Jean Delvare16b5dda2012-01-16 22:51:48 +0100909 if (has_newer_autopwm(data)) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800910 /*
911 * If we are in automatic mode, the PWM duty cycle register
912 * is read-only so we can't write the value.
913 */
Jean Delvare6229cdb2010-12-08 16:27:22 +0100914 if (data->pwm_ctrl[nr] & 0x80) {
915 mutex_unlock(&data->update_lock);
916 return -EBUSY;
917 }
918 data->pwm_duty[nr] = pwm_to_reg(data, val);
919 it87_write_value(data, IT87_REG_PWM_DUTY(nr),
920 data->pwm_duty[nr]);
921 } else {
922 data->pwm_duty[nr] = pwm_to_reg(data, val);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800923 /*
924 * If we are in manual mode, write the duty cycle immediately;
925 * otherwise, just store it for later use.
926 */
Jean Delvare6229cdb2010-12-08 16:27:22 +0100927 if (!(data->pwm_ctrl[nr] & 0x80)) {
928 data->pwm_ctrl[nr] = data->pwm_duty[nr];
929 it87_write_value(data, IT87_REG_PWM(nr),
930 data->pwm_ctrl[nr]);
931 }
Jean Delvareb99883d2010-03-05 22:17:15 +0100932 }
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100933 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 return count;
935}
Jean Delvaref8d0c192007-02-14 21:15:02 +0100936static ssize_t set_pwm_freq(struct device *dev,
937 struct device_attribute *attr, const char *buf, size_t count)
938{
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200939 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100940 unsigned long val;
Jean Delvaref8d0c192007-02-14 21:15:02 +0100941 int i;
942
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100943 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100944 return -EINVAL;
945
Jean Delvaref8d0c192007-02-14 21:15:02 +0100946 /* Search for the nearest available frequency */
947 for (i = 0; i < 7; i++) {
948 if (val > (pwm_freq[i] + pwm_freq[i+1]) / 2)
949 break;
950 }
951
952 mutex_lock(&data->update_lock);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200953 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL) & 0x8f;
Jean Delvaref8d0c192007-02-14 21:15:02 +0100954 data->fan_ctl |= i << 4;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200955 it87_write_value(data, IT87_REG_FAN_CTL, data->fan_ctl);
Jean Delvaref8d0c192007-02-14 21:15:02 +0100956 mutex_unlock(&data->update_lock);
957
958 return count;
959}
Jean Delvare94ac7ee2010-03-05 22:17:16 +0100960static ssize_t show_pwm_temp_map(struct device *dev,
961 struct device_attribute *attr, char *buf)
962{
963 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
964 int nr = sensor_attr->index;
965
966 struct it87_data *data = it87_update_device(dev);
967 int map;
968
969 if (data->pwm_temp_map[nr] < 3)
970 map = 1 << data->pwm_temp_map[nr];
971 else
972 map = 0; /* Should never happen */
973 return sprintf(buf, "%d\n", map);
974}
975static ssize_t set_pwm_temp_map(struct device *dev,
976 struct device_attribute *attr, const char *buf, size_t count)
977{
978 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
979 int nr = sensor_attr->index;
980
981 struct it87_data *data = dev_get_drvdata(dev);
982 long val;
983 u8 reg;
984
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800985 /*
986 * This check can go away if we ever support automatic fan speed
987 * control on newer chips.
988 */
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100989 if (!has_old_autopwm(data)) {
990 dev_notice(dev, "Mapping change disabled for safety reasons\n");
991 return -EINVAL;
992 }
993
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100994 if (kstrtol(buf, 10, &val) < 0)
Jean Delvare94ac7ee2010-03-05 22:17:16 +0100995 return -EINVAL;
996
997 switch (val) {
998 case (1 << 0):
999 reg = 0x00;
1000 break;
1001 case (1 << 1):
1002 reg = 0x01;
1003 break;
1004 case (1 << 2):
1005 reg = 0x02;
1006 break;
1007 default:
1008 return -EINVAL;
1009 }
1010
1011 mutex_lock(&data->update_lock);
1012 data->pwm_temp_map[nr] = reg;
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001013 /*
1014 * If we are in automatic mode, write the temp mapping immediately;
1015 * otherwise, just store it for later use.
1016 */
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001017 if (data->pwm_ctrl[nr] & 0x80) {
1018 data->pwm_ctrl[nr] = 0x80 | data->pwm_temp_map[nr];
1019 it87_write_value(data, IT87_REG_PWM(nr), data->pwm_ctrl[nr]);
1020 }
1021 mutex_unlock(&data->update_lock);
1022 return count;
1023}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001025static ssize_t show_auto_pwm(struct device *dev,
1026 struct device_attribute *attr, char *buf)
1027{
1028 struct it87_data *data = it87_update_device(dev);
1029 struct sensor_device_attribute_2 *sensor_attr =
1030 to_sensor_dev_attr_2(attr);
1031 int nr = sensor_attr->nr;
1032 int point = sensor_attr->index;
1033
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001034 return sprintf(buf, "%d\n",
1035 pwm_from_reg(data, data->auto_pwm[nr][point]));
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001036}
1037
1038static ssize_t set_auto_pwm(struct device *dev,
1039 struct device_attribute *attr, const char *buf, size_t count)
1040{
1041 struct it87_data *data = dev_get_drvdata(dev);
1042 struct sensor_device_attribute_2 *sensor_attr =
1043 to_sensor_dev_attr_2(attr);
1044 int nr = sensor_attr->nr;
1045 int point = sensor_attr->index;
1046 long val;
1047
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001048 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001049 return -EINVAL;
1050
1051 mutex_lock(&data->update_lock);
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001052 data->auto_pwm[nr][point] = pwm_to_reg(data, val);
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001053 it87_write_value(data, IT87_REG_AUTO_PWM(nr, point),
1054 data->auto_pwm[nr][point]);
1055 mutex_unlock(&data->update_lock);
1056 return count;
1057}
1058
1059static ssize_t show_auto_temp(struct device *dev,
1060 struct device_attribute *attr, char *buf)
1061{
1062 struct it87_data *data = it87_update_device(dev);
1063 struct sensor_device_attribute_2 *sensor_attr =
1064 to_sensor_dev_attr_2(attr);
1065 int nr = sensor_attr->nr;
1066 int point = sensor_attr->index;
1067
1068 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->auto_temp[nr][point]));
1069}
1070
1071static ssize_t set_auto_temp(struct device *dev,
1072 struct device_attribute *attr, const char *buf, size_t count)
1073{
1074 struct it87_data *data = dev_get_drvdata(dev);
1075 struct sensor_device_attribute_2 *sensor_attr =
1076 to_sensor_dev_attr_2(attr);
1077 int nr = sensor_attr->nr;
1078 int point = sensor_attr->index;
1079 long val;
1080
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001081 if (kstrtol(buf, 10, &val) < 0 || val < -128000 || val > 127000)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001082 return -EINVAL;
1083
1084 mutex_lock(&data->update_lock);
1085 data->auto_temp[nr][point] = TEMP_TO_REG(val);
1086 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, point),
1087 data->auto_temp[nr][point]);
1088 mutex_unlock(&data->update_lock);
1089 return count;
1090}
1091
Jean Delvare20ad93d2005-06-05 11:53:25 +02001092#define show_fan_offset(offset) \
1093static SENSOR_DEVICE_ATTR(fan##offset##_input, S_IRUGO, \
1094 show_fan, NULL, offset - 1); \
1095static SENSOR_DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
1096 show_fan_min, set_fan_min, offset - 1); \
1097static SENSOR_DEVICE_ATTR(fan##offset##_div, S_IRUGO | S_IWUSR, \
1098 show_fan_div, set_fan_div, offset - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
1100show_fan_offset(1);
1101show_fan_offset(2);
1102show_fan_offset(3);
1103
1104#define show_pwm_offset(offset) \
Jean Delvare20ad93d2005-06-05 11:53:25 +02001105static SENSOR_DEVICE_ATTR(pwm##offset##_enable, S_IRUGO | S_IWUSR, \
1106 show_pwm_enable, set_pwm_enable, offset - 1); \
1107static SENSOR_DEVICE_ATTR(pwm##offset, S_IRUGO | S_IWUSR, \
Jean Delvaref8d0c192007-02-14 21:15:02 +01001108 show_pwm, set_pwm, offset - 1); \
1109static DEVICE_ATTR(pwm##offset##_freq, \
1110 (offset == 1 ? S_IRUGO | S_IWUSR : S_IRUGO), \
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001111 show_pwm_freq, (offset == 1 ? set_pwm_freq : NULL)); \
1112static SENSOR_DEVICE_ATTR(pwm##offset##_auto_channels_temp, \
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001113 S_IRUGO | S_IWUSR, show_pwm_temp_map, set_pwm_temp_map, \
1114 offset - 1); \
1115static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point1_pwm, \
1116 S_IRUGO | S_IWUSR, show_auto_pwm, set_auto_pwm, \
1117 offset - 1, 0); \
1118static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point2_pwm, \
1119 S_IRUGO | S_IWUSR, show_auto_pwm, set_auto_pwm, \
1120 offset - 1, 1); \
1121static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point3_pwm, \
1122 S_IRUGO | S_IWUSR, show_auto_pwm, set_auto_pwm, \
1123 offset - 1, 2); \
1124static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point4_pwm, \
1125 S_IRUGO, show_auto_pwm, NULL, offset - 1, 3); \
1126static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point1_temp, \
1127 S_IRUGO | S_IWUSR, show_auto_temp, set_auto_temp, \
1128 offset - 1, 1); \
1129static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point1_temp_hyst, \
1130 S_IRUGO | S_IWUSR, show_auto_temp, set_auto_temp, \
1131 offset - 1, 0); \
1132static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point2_temp, \
1133 S_IRUGO | S_IWUSR, show_auto_temp, set_auto_temp, \
1134 offset - 1, 2); \
1135static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point3_temp, \
1136 S_IRUGO | S_IWUSR, show_auto_temp, set_auto_temp, \
1137 offset - 1, 3); \
1138static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point4_temp, \
1139 S_IRUGO | S_IWUSR, show_auto_temp, set_auto_temp, \
1140 offset - 1, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
1142show_pwm_offset(1);
1143show_pwm_offset(2);
1144show_pwm_offset(3);
1145
Jean Delvare17d648b2006-08-28 14:23:46 +02001146/* A different set of callbacks for 16-bit fans */
1147static ssize_t show_fan16(struct device *dev, struct device_attribute *attr,
1148 char *buf)
1149{
1150 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1151 int nr = sensor_attr->index;
1152 struct it87_data *data = it87_update_device(dev);
1153 return sprintf(buf, "%d\n", FAN16_FROM_REG(data->fan[nr]));
1154}
1155
1156static ssize_t show_fan16_min(struct device *dev, struct device_attribute *attr,
1157 char *buf)
1158{
1159 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1160 int nr = sensor_attr->index;
1161 struct it87_data *data = it87_update_device(dev);
1162 return sprintf(buf, "%d\n", FAN16_FROM_REG(data->fan_min[nr]));
1163}
1164
1165static ssize_t set_fan16_min(struct device *dev, struct device_attribute *attr,
1166 const char *buf, size_t count)
1167{
1168 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1169 int nr = sensor_attr->index;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001170 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001171 long val;
1172
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001173 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001174 return -EINVAL;
Jean Delvare17d648b2006-08-28 14:23:46 +02001175
1176 mutex_lock(&data->update_lock);
1177 data->fan_min[nr] = FAN16_TO_REG(val);
Jean Delvarec7f1f712007-09-03 17:11:46 +02001178 it87_write_value(data, IT87_REG_FAN_MIN[nr],
Jean Delvare17d648b2006-08-28 14:23:46 +02001179 data->fan_min[nr] & 0xff);
Jean Delvarec7f1f712007-09-03 17:11:46 +02001180 it87_write_value(data, IT87_REG_FANX_MIN[nr],
Jean Delvare17d648b2006-08-28 14:23:46 +02001181 data->fan_min[nr] >> 8);
1182 mutex_unlock(&data->update_lock);
1183 return count;
1184}
1185
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001186/*
1187 * We want to use the same sysfs file names as 8-bit fans, but we need
1188 * different variable names, so we have to use SENSOR_ATTR instead of
1189 * SENSOR_DEVICE_ATTR.
1190 */
Jean Delvare17d648b2006-08-28 14:23:46 +02001191#define show_fan16_offset(offset) \
1192static struct sensor_device_attribute sensor_dev_attr_fan##offset##_input16 \
1193 = SENSOR_ATTR(fan##offset##_input, S_IRUGO, \
1194 show_fan16, NULL, offset - 1); \
1195static struct sensor_device_attribute sensor_dev_attr_fan##offset##_min16 \
1196 = SENSOR_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
1197 show_fan16_min, set_fan16_min, offset - 1)
1198
1199show_fan16_offset(1);
1200show_fan16_offset(2);
1201show_fan16_offset(3);
Jean Delvarec7f1f712007-09-03 17:11:46 +02001202show_fan16_offset(4);
1203show_fan16_offset(5);
Jean Delvare17d648b2006-08-28 14:23:46 +02001204
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205/* Alarms */
Jean Delvare5f2dc792010-03-05 22:17:18 +01001206static ssize_t show_alarms(struct device *dev, struct device_attribute *attr,
1207 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208{
1209 struct it87_data *data = it87_update_device(dev);
Jean Delvare68188ba2005-05-16 18:52:38 +02001210 return sprintf(buf, "%u\n", data->alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211}
Jean Delvare1d66c642005-04-18 21:16:59 -07001212static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Jean Delvare0124dd72007-11-25 16:16:41 +01001214static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
1215 char *buf)
1216{
1217 int bitnr = to_sensor_dev_attr(attr)->index;
1218 struct it87_data *data = it87_update_device(dev);
1219 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
1220}
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001221
1222static ssize_t clear_intrusion(struct device *dev, struct device_attribute
1223 *attr, const char *buf, size_t count)
1224{
1225 struct it87_data *data = dev_get_drvdata(dev);
1226 long val;
1227 int config;
1228
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001229 if (kstrtol(buf, 10, &val) < 0 || val != 0)
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001230 return -EINVAL;
1231
1232 mutex_lock(&data->update_lock);
1233 config = it87_read_value(data, IT87_REG_CONFIG);
1234 if (config < 0) {
1235 count = config;
1236 } else {
1237 config |= 1 << 5;
1238 it87_write_value(data, IT87_REG_CONFIG, config);
1239 /* Invalidate cache to force re-read */
1240 data->valid = 0;
1241 }
1242 mutex_unlock(&data->update_lock);
1243
1244 return count;
1245}
1246
Jean Delvare0124dd72007-11-25 16:16:41 +01001247static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 8);
1248static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 9);
1249static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 10);
1250static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 11);
1251static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 12);
1252static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 13);
1253static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 14);
1254static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 15);
1255static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 0);
1256static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 1);
1257static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 2);
1258static SENSOR_DEVICE_ATTR(fan4_alarm, S_IRUGO, show_alarm, NULL, 3);
1259static SENSOR_DEVICE_ATTR(fan5_alarm, S_IRUGO, show_alarm, NULL, 6);
1260static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 16);
1261static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 17);
1262static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 18);
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001263static SENSOR_DEVICE_ATTR(intrusion0_alarm, S_IRUGO | S_IWUSR,
1264 show_alarm, clear_intrusion, 4);
Jean Delvare0124dd72007-11-25 16:16:41 +01001265
Jean Delvared9b327c2010-03-05 22:17:17 +01001266static ssize_t show_beep(struct device *dev, struct device_attribute *attr,
1267 char *buf)
1268{
1269 int bitnr = to_sensor_dev_attr(attr)->index;
1270 struct it87_data *data = it87_update_device(dev);
1271 return sprintf(buf, "%u\n", (data->beeps >> bitnr) & 1);
1272}
1273static ssize_t set_beep(struct device *dev, struct device_attribute *attr,
1274 const char *buf, size_t count)
1275{
1276 int bitnr = to_sensor_dev_attr(attr)->index;
1277 struct it87_data *data = dev_get_drvdata(dev);
1278 long val;
1279
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001280 if (kstrtol(buf, 10, &val) < 0
Jean Delvared9b327c2010-03-05 22:17:17 +01001281 || (val != 0 && val != 1))
1282 return -EINVAL;
1283
1284 mutex_lock(&data->update_lock);
1285 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
1286 if (val)
1287 data->beeps |= (1 << bitnr);
1288 else
1289 data->beeps &= ~(1 << bitnr);
1290 it87_write_value(data, IT87_REG_BEEP_ENABLE, data->beeps);
1291 mutex_unlock(&data->update_lock);
1292 return count;
1293}
1294
1295static SENSOR_DEVICE_ATTR(in0_beep, S_IRUGO | S_IWUSR,
1296 show_beep, set_beep, 1);
1297static SENSOR_DEVICE_ATTR(in1_beep, S_IRUGO, show_beep, NULL, 1);
1298static SENSOR_DEVICE_ATTR(in2_beep, S_IRUGO, show_beep, NULL, 1);
1299static SENSOR_DEVICE_ATTR(in3_beep, S_IRUGO, show_beep, NULL, 1);
1300static SENSOR_DEVICE_ATTR(in4_beep, S_IRUGO, show_beep, NULL, 1);
1301static SENSOR_DEVICE_ATTR(in5_beep, S_IRUGO, show_beep, NULL, 1);
1302static SENSOR_DEVICE_ATTR(in6_beep, S_IRUGO, show_beep, NULL, 1);
1303static SENSOR_DEVICE_ATTR(in7_beep, S_IRUGO, show_beep, NULL, 1);
1304/* fanX_beep writability is set later */
1305static SENSOR_DEVICE_ATTR(fan1_beep, S_IRUGO, show_beep, set_beep, 0);
1306static SENSOR_DEVICE_ATTR(fan2_beep, S_IRUGO, show_beep, set_beep, 0);
1307static SENSOR_DEVICE_ATTR(fan3_beep, S_IRUGO, show_beep, set_beep, 0);
1308static SENSOR_DEVICE_ATTR(fan4_beep, S_IRUGO, show_beep, set_beep, 0);
1309static SENSOR_DEVICE_ATTR(fan5_beep, S_IRUGO, show_beep, set_beep, 0);
1310static SENSOR_DEVICE_ATTR(temp1_beep, S_IRUGO | S_IWUSR,
1311 show_beep, set_beep, 2);
1312static SENSOR_DEVICE_ATTR(temp2_beep, S_IRUGO, show_beep, NULL, 2);
1313static SENSOR_DEVICE_ATTR(temp3_beep, S_IRUGO, show_beep, NULL, 2);
1314
Jean Delvare5f2dc792010-03-05 22:17:18 +01001315static ssize_t show_vrm_reg(struct device *dev, struct device_attribute *attr,
1316 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317{
Jean Delvare90d66192007-10-08 18:24:35 +02001318 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvarea7be58a2005-12-18 16:40:14 +01001319 return sprintf(buf, "%u\n", data->vrm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320}
Jean Delvare5f2dc792010-03-05 22:17:18 +01001321static ssize_t store_vrm_reg(struct device *dev, struct device_attribute *attr,
1322 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001324 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001325 unsigned long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001327 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001328 return -EINVAL;
1329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 data->vrm = val;
1331
1332 return count;
1333}
1334static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm_reg, store_vrm_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Jean Delvare5f2dc792010-03-05 22:17:18 +01001336static ssize_t show_vid_reg(struct device *dev, struct device_attribute *attr,
1337 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338{
1339 struct it87_data *data = it87_update_device(dev);
1340 return sprintf(buf, "%ld\n", (long) vid_from_reg(data->vid, data->vrm));
1341}
1342static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL);
Jean Delvare87808be2006-09-24 21:17:13 +02001343
Jean Delvare738e5e02010-08-14 21:08:50 +02001344static ssize_t show_label(struct device *dev, struct device_attribute *attr,
1345 char *buf)
1346{
Guenter Roeck3c4c4972012-01-20 09:29:44 -08001347 static const char * const labels[] = {
Jean Delvare738e5e02010-08-14 21:08:50 +02001348 "+5V",
1349 "5VSB",
1350 "Vbat",
1351 };
Guenter Roeck3c4c4972012-01-20 09:29:44 -08001352 static const char * const labels_it8721[] = {
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001353 "+3.3V",
1354 "3VSB",
1355 "Vbat",
1356 };
1357 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvare738e5e02010-08-14 21:08:50 +02001358 int nr = to_sensor_dev_attr(attr)->index;
1359
Jean Delvare16b5dda2012-01-16 22:51:48 +01001360 return sprintf(buf, "%s\n", has_12mv_adc(data) ? labels_it8721[nr]
1361 : labels[nr]);
Jean Delvare738e5e02010-08-14 21:08:50 +02001362}
1363static SENSOR_DEVICE_ATTR(in3_label, S_IRUGO, show_label, NULL, 0);
1364static SENSOR_DEVICE_ATTR(in7_label, S_IRUGO, show_label, NULL, 1);
1365static SENSOR_DEVICE_ATTR(in8_label, S_IRUGO, show_label, NULL, 2);
1366
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001367static ssize_t show_name(struct device *dev, struct device_attribute
1368 *devattr, char *buf)
1369{
1370 struct it87_data *data = dev_get_drvdata(dev);
1371 return sprintf(buf, "%s\n", data->name);
1372}
1373static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
1374
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001375static struct attribute *it87_attributes_in[9][5] = {
1376{
Jean Delvare87808be2006-09-24 21:17:13 +02001377 &sensor_dev_attr_in0_input.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001378 &sensor_dev_attr_in0_min.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001379 &sensor_dev_attr_in0_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001380 &sensor_dev_attr_in0_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001381 NULL
1382}, {
1383 &sensor_dev_attr_in1_input.dev_attr.attr,
1384 &sensor_dev_attr_in1_min.dev_attr.attr,
1385 &sensor_dev_attr_in1_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001386 &sensor_dev_attr_in1_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001387 NULL
1388}, {
1389 &sensor_dev_attr_in2_input.dev_attr.attr,
1390 &sensor_dev_attr_in2_min.dev_attr.attr,
1391 &sensor_dev_attr_in2_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001392 &sensor_dev_attr_in2_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001393 NULL
1394}, {
1395 &sensor_dev_attr_in3_input.dev_attr.attr,
1396 &sensor_dev_attr_in3_min.dev_attr.attr,
1397 &sensor_dev_attr_in3_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001398 &sensor_dev_attr_in3_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001399 NULL
1400}, {
1401 &sensor_dev_attr_in4_input.dev_attr.attr,
1402 &sensor_dev_attr_in4_min.dev_attr.attr,
1403 &sensor_dev_attr_in4_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001404 &sensor_dev_attr_in4_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001405 NULL
1406}, {
1407 &sensor_dev_attr_in5_input.dev_attr.attr,
1408 &sensor_dev_attr_in5_min.dev_attr.attr,
1409 &sensor_dev_attr_in5_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001410 &sensor_dev_attr_in5_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001411 NULL
1412}, {
1413 &sensor_dev_attr_in6_input.dev_attr.attr,
1414 &sensor_dev_attr_in6_min.dev_attr.attr,
1415 &sensor_dev_attr_in6_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001416 &sensor_dev_attr_in6_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001417 NULL
1418}, {
1419 &sensor_dev_attr_in7_input.dev_attr.attr,
1420 &sensor_dev_attr_in7_min.dev_attr.attr,
1421 &sensor_dev_attr_in7_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001422 &sensor_dev_attr_in7_alarm.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001423 NULL
1424}, {
1425 &sensor_dev_attr_in8_input.dev_attr.attr,
1426 NULL
1427} };
Jean Delvare87808be2006-09-24 21:17:13 +02001428
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001429static const struct attribute_group it87_group_in[9] = {
1430 { .attrs = it87_attributes_in[0] },
1431 { .attrs = it87_attributes_in[1] },
1432 { .attrs = it87_attributes_in[2] },
1433 { .attrs = it87_attributes_in[3] },
1434 { .attrs = it87_attributes_in[4] },
1435 { .attrs = it87_attributes_in[5] },
1436 { .attrs = it87_attributes_in[6] },
1437 { .attrs = it87_attributes_in[7] },
1438 { .attrs = it87_attributes_in[8] },
1439};
1440
1441static struct attribute *it87_attributes[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02001442 &sensor_dev_attr_temp1_input.dev_attr.attr,
1443 &sensor_dev_attr_temp2_input.dev_attr.attr,
1444 &sensor_dev_attr_temp3_input.dev_attr.attr,
1445 &sensor_dev_attr_temp1_max.dev_attr.attr,
1446 &sensor_dev_attr_temp2_max.dev_attr.attr,
1447 &sensor_dev_attr_temp3_max.dev_attr.attr,
1448 &sensor_dev_attr_temp1_min.dev_attr.attr,
1449 &sensor_dev_attr_temp2_min.dev_attr.attr,
1450 &sensor_dev_attr_temp3_min.dev_attr.attr,
1451 &sensor_dev_attr_temp1_type.dev_attr.attr,
1452 &sensor_dev_attr_temp2_type.dev_attr.attr,
1453 &sensor_dev_attr_temp3_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001454 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
1455 &sensor_dev_attr_temp2_alarm.dev_attr.attr,
1456 &sensor_dev_attr_temp3_alarm.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001457
1458 &dev_attr_alarms.attr,
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001459 &sensor_dev_attr_intrusion0_alarm.dev_attr.attr,
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001460 &dev_attr_name.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001461 NULL
1462};
1463
1464static const struct attribute_group it87_group = {
1465 .attrs = it87_attributes,
1466};
1467
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001468static struct attribute *it87_attributes_in_beep[] = {
Jean Delvared9b327c2010-03-05 22:17:17 +01001469 &sensor_dev_attr_in0_beep.dev_attr.attr,
1470 &sensor_dev_attr_in1_beep.dev_attr.attr,
1471 &sensor_dev_attr_in2_beep.dev_attr.attr,
1472 &sensor_dev_attr_in3_beep.dev_attr.attr,
1473 &sensor_dev_attr_in4_beep.dev_attr.attr,
1474 &sensor_dev_attr_in5_beep.dev_attr.attr,
1475 &sensor_dev_attr_in6_beep.dev_attr.attr,
1476 &sensor_dev_attr_in7_beep.dev_attr.attr,
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001477 NULL
1478};
Jean Delvared9b327c2010-03-05 22:17:17 +01001479
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001480static struct attribute *it87_attributes_beep[] = {
Jean Delvared9b327c2010-03-05 22:17:17 +01001481 &sensor_dev_attr_temp1_beep.dev_attr.attr,
1482 &sensor_dev_attr_temp2_beep.dev_attr.attr,
1483 &sensor_dev_attr_temp3_beep.dev_attr.attr,
1484 NULL
1485};
1486
1487static const struct attribute_group it87_group_beep = {
1488 .attrs = it87_attributes_beep,
1489};
1490
Jean Delvare723a0aa2010-03-05 22:17:16 +01001491static struct attribute *it87_attributes_fan16[5][3+1] = { {
Jean Delvare87808be2006-09-24 21:17:13 +02001492 &sensor_dev_attr_fan1_input16.dev_attr.attr,
1493 &sensor_dev_attr_fan1_min16.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001494 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
1495 NULL
1496}, {
Jean Delvare87808be2006-09-24 21:17:13 +02001497 &sensor_dev_attr_fan2_input16.dev_attr.attr,
1498 &sensor_dev_attr_fan2_min16.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001499 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
1500 NULL
1501}, {
Jean Delvare87808be2006-09-24 21:17:13 +02001502 &sensor_dev_attr_fan3_input16.dev_attr.attr,
1503 &sensor_dev_attr_fan3_min16.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001504 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
1505 NULL
1506}, {
Jean Delvarec7f1f712007-09-03 17:11:46 +02001507 &sensor_dev_attr_fan4_input16.dev_attr.attr,
1508 &sensor_dev_attr_fan4_min16.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001509 &sensor_dev_attr_fan4_alarm.dev_attr.attr,
1510 NULL
1511}, {
Jean Delvarec7f1f712007-09-03 17:11:46 +02001512 &sensor_dev_attr_fan5_input16.dev_attr.attr,
1513 &sensor_dev_attr_fan5_min16.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001514 &sensor_dev_attr_fan5_alarm.dev_attr.attr,
1515 NULL
1516} };
Jean Delvare87808be2006-09-24 21:17:13 +02001517
Jean Delvare723a0aa2010-03-05 22:17:16 +01001518static const struct attribute_group it87_group_fan16[5] = {
1519 { .attrs = it87_attributes_fan16[0] },
1520 { .attrs = it87_attributes_fan16[1] },
1521 { .attrs = it87_attributes_fan16[2] },
1522 { .attrs = it87_attributes_fan16[3] },
1523 { .attrs = it87_attributes_fan16[4] },
1524};
1525
1526static struct attribute *it87_attributes_fan[3][4+1] = { {
Jean Delvare87808be2006-09-24 21:17:13 +02001527 &sensor_dev_attr_fan1_input.dev_attr.attr,
1528 &sensor_dev_attr_fan1_min.dev_attr.attr,
1529 &sensor_dev_attr_fan1_div.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001530 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
1531 NULL
1532}, {
Jean Delvare87808be2006-09-24 21:17:13 +02001533 &sensor_dev_attr_fan2_input.dev_attr.attr,
1534 &sensor_dev_attr_fan2_min.dev_attr.attr,
1535 &sensor_dev_attr_fan2_div.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001536 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
1537 NULL
1538}, {
Jean Delvare87808be2006-09-24 21:17:13 +02001539 &sensor_dev_attr_fan3_input.dev_attr.attr,
1540 &sensor_dev_attr_fan3_min.dev_attr.attr,
1541 &sensor_dev_attr_fan3_div.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001542 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001543 NULL
1544} };
Jean Delvare0124dd72007-11-25 16:16:41 +01001545
Jean Delvare723a0aa2010-03-05 22:17:16 +01001546static const struct attribute_group it87_group_fan[3] = {
1547 { .attrs = it87_attributes_fan[0] },
1548 { .attrs = it87_attributes_fan[1] },
1549 { .attrs = it87_attributes_fan[2] },
1550};
1551
1552static const struct attribute_group *
1553it87_get_fan_group(const struct it87_data *data)
1554{
1555 return has_16bit_fans(data) ? it87_group_fan16 : it87_group_fan;
1556}
1557
1558static struct attribute *it87_attributes_pwm[3][4+1] = { {
Jean Delvare87808be2006-09-24 21:17:13 +02001559 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001560 &sensor_dev_attr_pwm1.dev_attr.attr,
Jean Delvared5b0b5d2007-12-14 14:41:53 +01001561 &dev_attr_pwm1_freq.attr,
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001562 &sensor_dev_attr_pwm1_auto_channels_temp.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001563 NULL
1564}, {
1565 &sensor_dev_attr_pwm2_enable.dev_attr.attr,
1566 &sensor_dev_attr_pwm2.dev_attr.attr,
1567 &dev_attr_pwm2_freq.attr,
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001568 &sensor_dev_attr_pwm2_auto_channels_temp.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001569 NULL
1570}, {
1571 &sensor_dev_attr_pwm3_enable.dev_attr.attr,
1572 &sensor_dev_attr_pwm3.dev_attr.attr,
1573 &dev_attr_pwm3_freq.attr,
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001574 &sensor_dev_attr_pwm3_auto_channels_temp.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001575 NULL
1576} };
Jean Delvare87808be2006-09-24 21:17:13 +02001577
Jean Delvare723a0aa2010-03-05 22:17:16 +01001578static const struct attribute_group it87_group_pwm[3] = {
1579 { .attrs = it87_attributes_pwm[0] },
1580 { .attrs = it87_attributes_pwm[1] },
1581 { .attrs = it87_attributes_pwm[2] },
1582};
1583
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001584static struct attribute *it87_attributes_autopwm[3][9+1] = { {
1585 &sensor_dev_attr_pwm1_auto_point1_pwm.dev_attr.attr,
1586 &sensor_dev_attr_pwm1_auto_point2_pwm.dev_attr.attr,
1587 &sensor_dev_attr_pwm1_auto_point3_pwm.dev_attr.attr,
1588 &sensor_dev_attr_pwm1_auto_point4_pwm.dev_attr.attr,
1589 &sensor_dev_attr_pwm1_auto_point1_temp.dev_attr.attr,
1590 &sensor_dev_attr_pwm1_auto_point1_temp_hyst.dev_attr.attr,
1591 &sensor_dev_attr_pwm1_auto_point2_temp.dev_attr.attr,
1592 &sensor_dev_attr_pwm1_auto_point3_temp.dev_attr.attr,
1593 &sensor_dev_attr_pwm1_auto_point4_temp.dev_attr.attr,
1594 NULL
1595}, {
1596 &sensor_dev_attr_pwm2_auto_point1_pwm.dev_attr.attr,
1597 &sensor_dev_attr_pwm2_auto_point2_pwm.dev_attr.attr,
1598 &sensor_dev_attr_pwm2_auto_point3_pwm.dev_attr.attr,
1599 &sensor_dev_attr_pwm2_auto_point4_pwm.dev_attr.attr,
1600 &sensor_dev_attr_pwm2_auto_point1_temp.dev_attr.attr,
1601 &sensor_dev_attr_pwm2_auto_point1_temp_hyst.dev_attr.attr,
1602 &sensor_dev_attr_pwm2_auto_point2_temp.dev_attr.attr,
1603 &sensor_dev_attr_pwm2_auto_point3_temp.dev_attr.attr,
1604 &sensor_dev_attr_pwm2_auto_point4_temp.dev_attr.attr,
1605 NULL
1606}, {
1607 &sensor_dev_attr_pwm3_auto_point1_pwm.dev_attr.attr,
1608 &sensor_dev_attr_pwm3_auto_point2_pwm.dev_attr.attr,
1609 &sensor_dev_attr_pwm3_auto_point3_pwm.dev_attr.attr,
1610 &sensor_dev_attr_pwm3_auto_point4_pwm.dev_attr.attr,
1611 &sensor_dev_attr_pwm3_auto_point1_temp.dev_attr.attr,
1612 &sensor_dev_attr_pwm3_auto_point1_temp_hyst.dev_attr.attr,
1613 &sensor_dev_attr_pwm3_auto_point2_temp.dev_attr.attr,
1614 &sensor_dev_attr_pwm3_auto_point3_temp.dev_attr.attr,
1615 &sensor_dev_attr_pwm3_auto_point4_temp.dev_attr.attr,
1616 NULL
1617} };
1618
1619static const struct attribute_group it87_group_autopwm[3] = {
1620 { .attrs = it87_attributes_autopwm[0] },
1621 { .attrs = it87_attributes_autopwm[1] },
1622 { .attrs = it87_attributes_autopwm[2] },
1623};
1624
Jean Delvared9b327c2010-03-05 22:17:17 +01001625static struct attribute *it87_attributes_fan_beep[] = {
1626 &sensor_dev_attr_fan1_beep.dev_attr.attr,
1627 &sensor_dev_attr_fan2_beep.dev_attr.attr,
1628 &sensor_dev_attr_fan3_beep.dev_attr.attr,
1629 &sensor_dev_attr_fan4_beep.dev_attr.attr,
1630 &sensor_dev_attr_fan5_beep.dev_attr.attr,
1631};
1632
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01001633static struct attribute *it87_attributes_vid[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02001634 &dev_attr_vrm.attr,
1635 &dev_attr_cpu0_vid.attr,
1636 NULL
1637};
1638
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01001639static const struct attribute_group it87_group_vid = {
1640 .attrs = it87_attributes_vid,
Jean Delvare87808be2006-09-24 21:17:13 +02001641};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
Jean Delvare738e5e02010-08-14 21:08:50 +02001643static struct attribute *it87_attributes_label[] = {
1644 &sensor_dev_attr_in3_label.dev_attr.attr,
1645 &sensor_dev_attr_in7_label.dev_attr.attr,
1646 &sensor_dev_attr_in8_label.dev_attr.attr,
1647 NULL
1648};
1649
1650static const struct attribute_group it87_group_label = {
Jean Delvarefa8b6972011-07-17 18:39:19 +02001651 .attrs = it87_attributes_label,
Jean Delvare738e5e02010-08-14 21:08:50 +02001652};
1653
Jean Delvare2d8672c2005-07-19 23:56:35 +02001654/* SuperIO detection - will change isa_address if a chip is found */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001655static int __init it87_find(unsigned short *address,
1656 struct it87_sio_data *sio_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657{
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +02001658 int err;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001659 u16 chip_type;
Jean Delvare98dd22c2008-10-09 15:33:58 +02001660 const char *board_vendor, *board_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +02001662 err = superio_enter();
1663 if (err)
1664 return err;
1665
1666 err = -ENODEV;
Jean Delvare67b671b2007-12-06 23:13:42 +01001667 chip_type = force_id ? force_id : superio_inw(DEVID);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001668
1669 switch (chip_type) {
1670 case IT8705F_DEVID:
1671 sio_data->type = it87;
1672 break;
1673 case IT8712F_DEVID:
1674 sio_data->type = it8712;
1675 break;
1676 case IT8716F_DEVID:
1677 case IT8726F_DEVID:
1678 sio_data->type = it8716;
1679 break;
1680 case IT8718F_DEVID:
1681 sio_data->type = it8718;
1682 break;
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +01001683 case IT8720F_DEVID:
1684 sio_data->type = it8720;
1685 break;
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001686 case IT8721F_DEVID:
1687 sio_data->type = it8721;
1688 break;
Jean Delvare16b5dda2012-01-16 22:51:48 +01001689 case IT8728F_DEVID:
1690 sio_data->type = it8728;
1691 break;
Guenter Roeck0531d982012-03-02 11:46:44 -08001692 case IT8782F_DEVID:
1693 sio_data->type = it8782;
1694 break;
1695 case IT8783E_DEVID:
1696 sio_data->type = it8783;
1697 break;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001698 case 0xffff: /* No device at all */
1699 goto exit;
1700 default:
Joe Perchesa8ca1032011-01-12 21:55:10 +01001701 pr_debug("Unsupported chip (DEVID=0x%x)\n", chip_type);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001702 goto exit;
1703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Jean Delvare87673dd2006-08-28 14:37:19 +02001705 superio_select(PME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 if (!(superio_inb(IT87_ACT_REG) & 0x01)) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01001707 pr_info("Device not activated, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 goto exit;
1709 }
1710
1711 *address = superio_inw(IT87_BASE_REG) & ~(IT87_EXTENT - 1);
1712 if (*address == 0) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01001713 pr_info("Base address not set, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 goto exit;
1715 }
1716
1717 err = 0;
Andrew Paprocki04751692008-08-06 22:41:06 +02001718 sio_data->revision = superio_inb(DEVREV) & 0x0f;
Joe Perchesa8ca1032011-01-12 21:55:10 +01001719 pr_info("Found IT%04xF chip at 0x%x, revision %d\n",
Andrew Paprocki04751692008-08-06 22:41:06 +02001720 chip_type, *address, sio_data->revision);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
Jean Delvare738e5e02010-08-14 21:08:50 +02001722 /* in8 (Vbat) is always internal */
1723 sio_data->internal = (1 << 2);
1724
Jean Delvare87673dd2006-08-28 14:37:19 +02001725 /* Read GPIO config and VID value from LDN 7 (GPIO) */
Jean Delvare895ff262009-12-09 20:35:47 +01001726 if (sio_data->type == it87) {
1727 /* The IT8705F doesn't have VID pins at all */
1728 sio_data->skip_vid = 1;
Jean Delvared9b327c2010-03-05 22:17:17 +01001729
1730 /* The IT8705F has a different LD number for GPIO */
1731 superio_select(5);
1732 sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f;
Guenter Roeck0531d982012-03-02 11:46:44 -08001733 } else if (sio_data->type == it8783) {
1734 int reg25, reg27, reg2A, reg2C, regEF;
Guenter Roeck0531d982012-03-02 11:46:44 -08001735
1736 sio_data->skip_vid = 1; /* No VID */
1737
1738 superio_select(GPIO);
1739
1740 reg25 = superio_inb(IT87_SIO_GPIO1_REG);
1741 reg27 = superio_inb(IT87_SIO_GPIO3_REG);
1742 reg2A = superio_inb(IT87_SIO_PINX1_REG);
1743 reg2C = superio_inb(IT87_SIO_PINX2_REG);
1744 regEF = superio_inb(IT87_SIO_SPI_REG);
1745
Guenter Roeck0531d982012-03-02 11:46:44 -08001746 /* Check if fan3 is there or not */
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001747 if ((reg27 & (1 << 0)) || !(reg2C & (1 << 2)))
Guenter Roeck0531d982012-03-02 11:46:44 -08001748 sio_data->skip_fan |= (1 << 2);
1749 if ((reg25 & (1 << 4))
1750 || (!(reg2A & (1 << 1)) && (regEF & (1 << 0))))
1751 sio_data->skip_pwm |= (1 << 2);
1752
1753 /* Check if fan2 is there or not */
1754 if (reg27 & (1 << 7))
1755 sio_data->skip_fan |= (1 << 1);
1756 if (reg27 & (1 << 3))
1757 sio_data->skip_pwm |= (1 << 1);
1758
1759 /* VIN5 */
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001760 if ((reg27 & (1 << 0)) || (reg2C & (1 << 2)))
1761 sio_data->skip_in |= (1 << 5); /* No VIN5 */
Guenter Roeck0531d982012-03-02 11:46:44 -08001762
1763 /* VIN6 */
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001764 if (reg27 & (1 << 1))
1765 sio_data->skip_in |= (1 << 6); /* No VIN6 */
Guenter Roeck0531d982012-03-02 11:46:44 -08001766
1767 /*
1768 * VIN7
1769 * Does not depend on bit 2 of Reg2C, contrary to datasheet.
1770 */
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001771 if (reg27 & (1 << 2)) {
1772 /*
1773 * The data sheet is a bit unclear regarding the
1774 * internal voltage divider for VCCH5V. It says
1775 * "This bit enables and switches VIN7 (pin 91) to the
1776 * internal voltage divider for VCCH5V".
1777 * This is different to other chips, where the internal
1778 * voltage divider would connect VIN7 to an internal
1779 * voltage source. Maybe that is the case here as well.
1780 *
1781 * Since we don't know for sure, re-route it if that is
1782 * not the case, and ask the user to report if the
1783 * resulting voltage is sane.
1784 */
1785 if (!(reg2C & (1 << 1))) {
1786 reg2C |= (1 << 1);
1787 superio_outb(IT87_SIO_PINX2_REG, reg2C);
1788 pr_notice("Routing internal VCCH5V to in7.\n");
1789 }
1790 pr_notice("in7 routed to internal voltage divider, with external pin disabled.\n");
1791 pr_notice("Please report if it displays a reasonable voltage.\n");
1792 }
Guenter Roeck0531d982012-03-02 11:46:44 -08001793
1794 if (reg2C & (1 << 0))
1795 sio_data->internal |= (1 << 0);
1796 if (reg2C & (1 << 1))
1797 sio_data->internal |= (1 << 1);
1798
1799 sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f;
1800
Jean Delvare895ff262009-12-09 20:35:47 +01001801 } else {
Jean Delvare87673dd2006-08-28 14:37:19 +02001802 int reg;
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001803 bool uart6;
Jean Delvare87673dd2006-08-28 14:37:19 +02001804
1805 superio_select(GPIO);
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001806
Jean Delvare895ff262009-12-09 20:35:47 +01001807 reg = superio_inb(IT87_SIO_GPIO3_REG);
Guenter Roeck0531d982012-03-02 11:46:44 -08001808 if (sio_data->type == it8721 || sio_data->type == it8728 ||
1809 sio_data->type == it8782) {
Jean Delvare16b5dda2012-01-16 22:51:48 +01001810 /*
Guenter Roeck0531d982012-03-02 11:46:44 -08001811 * IT8721F/IT8758E, and IT8782F don't have VID pins
1812 * at all, not sure about the IT8728F.
Jean Delvare16b5dda2012-01-16 22:51:48 +01001813 */
Jean Delvare895ff262009-12-09 20:35:47 +01001814 sio_data->skip_vid = 1;
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001815 } else {
1816 /* We need at least 4 VID pins */
1817 if (reg & 0x0f) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01001818 pr_info("VID is disabled (pins used for GPIO)\n");
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001819 sio_data->skip_vid = 1;
1820 }
Jean Delvare895ff262009-12-09 20:35:47 +01001821 }
1822
Jean Delvare591ec652009-12-09 20:35:48 +01001823 /* Check if fan3 is there or not */
1824 if (reg & (1 << 6))
1825 sio_data->skip_pwm |= (1 << 2);
1826 if (reg & (1 << 7))
1827 sio_data->skip_fan |= (1 << 2);
1828
1829 /* Check if fan2 is there or not */
1830 reg = superio_inb(IT87_SIO_GPIO5_REG);
1831 if (reg & (1 << 1))
1832 sio_data->skip_pwm |= (1 << 1);
1833 if (reg & (1 << 2))
1834 sio_data->skip_fan |= (1 << 1);
1835
Jean Delvare895ff262009-12-09 20:35:47 +01001836 if ((sio_data->type == it8718 || sio_data->type == it8720)
1837 && !(sio_data->skip_vid))
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001838 sio_data->vid_value = superio_inb(IT87_SIO_VID_REG);
Jean Delvare87673dd2006-08-28 14:37:19 +02001839
1840 reg = superio_inb(IT87_SIO_PINX2_REG);
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001841
1842 uart6 = sio_data->type == it8782 && (reg & (1 << 2));
1843
Jean Delvare436cad22010-07-09 16:22:48 +02001844 /*
1845 * The IT8720F has no VIN7 pin, so VCCH should always be
1846 * routed internally to VIN7 with an internal divider.
1847 * Curiously, there still is a configuration bit to control
1848 * this, which means it can be set incorrectly. And even
1849 * more curiously, many boards out there are improperly
1850 * configured, even though the IT8720F datasheet claims
1851 * that the internal routing of VCCH to VIN7 is the default
1852 * setting. So we force the internal routing in this case.
Guenter Roeck0531d982012-03-02 11:46:44 -08001853 *
1854 * On IT8782F, VIN7 is multiplexed with one of the UART6 pins.
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001855 * If UART6 is enabled, re-route VIN7 to the internal divider
1856 * if that is not already the case.
Jean Delvare436cad22010-07-09 16:22:48 +02001857 */
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001858 if ((sio_data->type == it8720 || uart6) && !(reg & (1 << 1))) {
Jean Delvare436cad22010-07-09 16:22:48 +02001859 reg |= (1 << 1);
1860 superio_outb(IT87_SIO_PINX2_REG, reg);
Joe Perchesa8ca1032011-01-12 21:55:10 +01001861 pr_notice("Routing internal VCCH to in7\n");
Jean Delvare436cad22010-07-09 16:22:48 +02001862 }
Jean Delvare87673dd2006-08-28 14:37:19 +02001863 if (reg & (1 << 0))
Jean Delvare738e5e02010-08-14 21:08:50 +02001864 sio_data->internal |= (1 << 0);
Jean Delvare16b5dda2012-01-16 22:51:48 +01001865 if ((reg & (1 << 1)) || sio_data->type == it8721 ||
1866 sio_data->type == it8728)
Jean Delvare738e5e02010-08-14 21:08:50 +02001867 sio_data->internal |= (1 << 1);
Jean Delvared9b327c2010-03-05 22:17:17 +01001868
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001869 /*
1870 * On IT8782F, UART6 pins overlap with VIN5, VIN6, and VIN7.
1871 * While VIN7 can be routed to the internal voltage divider,
1872 * VIN5 and VIN6 are not available if UART6 is enabled.
1873 */
1874 if (uart6)
1875 sio_data->skip_in |= (1 << 5) | (1 << 6);
1876
Jean Delvared9b327c2010-03-05 22:17:17 +01001877 sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f;
Jean Delvare87673dd2006-08-28 14:37:19 +02001878 }
Jean Delvared9b327c2010-03-05 22:17:17 +01001879 if (sio_data->beep_pin)
Joe Perchesa8ca1032011-01-12 21:55:10 +01001880 pr_info("Beeping is supported\n");
Jean Delvare87673dd2006-08-28 14:37:19 +02001881
Jean Delvare98dd22c2008-10-09 15:33:58 +02001882 /* Disable specific features based on DMI strings */
1883 board_vendor = dmi_get_system_info(DMI_BOARD_VENDOR);
1884 board_name = dmi_get_system_info(DMI_BOARD_NAME);
1885 if (board_vendor && board_name) {
1886 if (strcmp(board_vendor, "nVIDIA") == 0
1887 && strcmp(board_name, "FN68PT") == 0) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001888 /*
1889 * On the Shuttle SN68PT, FAN_CTL2 is apparently not
1890 * connected to a fan, but to something else. One user
1891 * has reported instant system power-off when changing
1892 * the PWM2 duty cycle, so we disable it.
1893 * I use the board name string as the trigger in case
1894 * the same board is ever used in other systems.
1895 */
Joe Perchesa8ca1032011-01-12 21:55:10 +01001896 pr_info("Disabling pwm2 due to hardware constraints\n");
Jean Delvare98dd22c2008-10-09 15:33:58 +02001897 sio_data->skip_pwm = (1 << 1);
1898 }
1899 }
1900
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901exit:
1902 superio_exit();
1903 return err;
1904}
1905
Jean Delvare723a0aa2010-03-05 22:17:16 +01001906static void it87_remove_files(struct device *dev)
1907{
1908 struct it87_data *data = platform_get_drvdata(pdev);
1909 struct it87_sio_data *sio_data = dev->platform_data;
1910 const struct attribute_group *fan_group = it87_get_fan_group(data);
1911 int i;
1912
1913 sysfs_remove_group(&dev->kobj, &it87_group);
Guenter Roeck9172b5d2012-03-24 21:49:54 -07001914 for (i = 0; i < 9; i++) {
1915 if (sio_data->skip_in & (1 << i))
1916 continue;
1917 sysfs_remove_group(&dev->kobj, &it87_group_in[i]);
1918 if (it87_attributes_in_beep[i])
1919 sysfs_remove_file(&dev->kobj,
1920 it87_attributes_in_beep[i]);
1921 }
Jean Delvared9b327c2010-03-05 22:17:17 +01001922 if (sio_data->beep_pin)
1923 sysfs_remove_group(&dev->kobj, &it87_group_beep);
Jean Delvare723a0aa2010-03-05 22:17:16 +01001924 for (i = 0; i < 5; i++) {
1925 if (!(data->has_fan & (1 << i)))
1926 continue;
1927 sysfs_remove_group(&dev->kobj, &fan_group[i]);
Jean Delvared9b327c2010-03-05 22:17:17 +01001928 if (sio_data->beep_pin)
1929 sysfs_remove_file(&dev->kobj,
1930 it87_attributes_fan_beep[i]);
Jean Delvare723a0aa2010-03-05 22:17:16 +01001931 }
1932 for (i = 0; i < 3; i++) {
1933 if (sio_data->skip_pwm & (1 << 0))
1934 continue;
1935 sysfs_remove_group(&dev->kobj, &it87_group_pwm[i]);
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001936 if (has_old_autopwm(data))
1937 sysfs_remove_group(&dev->kobj,
1938 &it87_group_autopwm[i]);
Jean Delvare723a0aa2010-03-05 22:17:16 +01001939 }
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01001940 if (!sio_data->skip_vid)
1941 sysfs_remove_group(&dev->kobj, &it87_group_vid);
Jean Delvare738e5e02010-08-14 21:08:50 +02001942 sysfs_remove_group(&dev->kobj, &it87_group_label);
Jean Delvare723a0aa2010-03-05 22:17:16 +01001943}
1944
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001945static int __devinit it87_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 struct it87_data *data;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001948 struct resource *res;
1949 struct device *dev = &pdev->dev;
1950 struct it87_sio_data *sio_data = dev->platform_data;
Jean Delvare723a0aa2010-03-05 22:17:16 +01001951 const struct attribute_group *fan_group;
1952 int err = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 int enable_pwm_interface;
Jean Delvared9b327c2010-03-05 22:17:17 +01001954 int fan_beep_need_rw;
Guenter Roeck3c4c4972012-01-20 09:29:44 -08001955 static const char * const names[] = {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001956 "it87",
1957 "it8712",
1958 "it8716",
1959 "it8718",
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +01001960 "it8720",
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001961 "it8721",
Jean Delvare16b5dda2012-01-16 22:51:48 +01001962 "it8728",
Guenter Roeck0531d982012-03-02 11:46:44 -08001963 "it8782",
1964 "it8783",
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001965 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001967 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05001968 if (!request_region(res->start, IT87_EC_EXTENT, DRVNAME)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001969 dev_err(dev, "Failed to request region 0x%lx-0x%lx\n",
1970 (unsigned long)res->start,
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05001971 (unsigned long)(res->start + IT87_EC_EXTENT - 1));
Jean Delvare8e9afcb2006-12-12 18:18:28 +01001972 err = -EBUSY;
1973 goto ERROR0;
1974 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
Jean Delvare5f2dc792010-03-05 22:17:18 +01001976 data = kzalloc(sizeof(struct it87_data), GFP_KERNEL);
1977 if (!data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 err = -ENOMEM;
1979 goto ERROR1;
1980 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001982 data->addr = res->start;
1983 data->type = sio_data->type;
Andrew Paprocki04751692008-08-06 22:41:06 +02001984 data->revision = sio_data->revision;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001985 data->name = names[sio_data->type];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
1987 /* Now, we do the remaining detection. */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001988 if ((it87_read_value(data, IT87_REG_CONFIG) & 0x80)
1989 || it87_read_value(data, IT87_REG_CHIPID) != 0x90) {
Jean Delvare8e9afcb2006-12-12 18:18:28 +01001990 err = -ENODEV;
1991 goto ERROR2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 }
1993
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001994 platform_set_drvdata(pdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001996 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 /* Check PWM configuration */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001999 enable_pwm_interface = it87_check_pwm(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002001 /* Starting with IT8721F, we handle scaling of internal voltages */
Jean Delvare16b5dda2012-01-16 22:51:48 +01002002 if (has_12mv_adc(data)) {
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002003 if (sio_data->internal & (1 << 0))
2004 data->in_scaled |= (1 << 3); /* in3 is AVCC */
2005 if (sio_data->internal & (1 << 1))
2006 data->in_scaled |= (1 << 7); /* in7 is VSB */
2007 if (sio_data->internal & (1 << 2))
2008 data->in_scaled |= (1 << 8); /* in8 is Vbat */
Guenter Roeck0531d982012-03-02 11:46:44 -08002009 } else if (sio_data->type == it8782 || sio_data->type == it8783) {
2010 if (sio_data->internal & (1 << 0))
2011 data->in_scaled |= (1 << 3); /* in3 is VCC5V */
2012 if (sio_data->internal & (1 << 1))
2013 data->in_scaled |= (1 << 7); /* in7 is VCCH5V */
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002014 }
2015
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 /* Initialize the IT87 chip */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002017 it87_init_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
2019 /* Register sysfs hooks */
Jean Delvare5f2dc792010-03-05 22:17:18 +01002020 err = sysfs_create_group(&dev->kobj, &it87_group);
2021 if (err)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002022 goto ERROR2;
Jean Delvare17d648b2006-08-28 14:23:46 +02002023
Guenter Roeck9172b5d2012-03-24 21:49:54 -07002024 for (i = 0; i < 9; i++) {
2025 if (sio_data->skip_in & (1 << i))
2026 continue;
2027 err = sysfs_create_group(&dev->kobj, &it87_group_in[i]);
2028 if (err)
2029 goto ERROR4;
2030 if (sio_data->beep_pin && it87_attributes_in_beep[i]) {
2031 err = sysfs_create_file(&dev->kobj,
2032 it87_attributes_in_beep[i]);
2033 if (err)
2034 goto ERROR4;
2035 }
2036 }
2037
Jean Delvared9b327c2010-03-05 22:17:17 +01002038 if (sio_data->beep_pin) {
2039 err = sysfs_create_group(&dev->kobj, &it87_group_beep);
2040 if (err)
2041 goto ERROR4;
2042 }
2043
Jean Delvare9060f8b2006-08-28 14:24:17 +02002044 /* Do not create fan files for disabled fans */
Jean Delvare723a0aa2010-03-05 22:17:16 +01002045 fan_group = it87_get_fan_group(data);
Jean Delvared9b327c2010-03-05 22:17:17 +01002046 fan_beep_need_rw = 1;
Jean Delvare723a0aa2010-03-05 22:17:16 +01002047 for (i = 0; i < 5; i++) {
2048 if (!(data->has_fan & (1 << i)))
2049 continue;
2050 err = sysfs_create_group(&dev->kobj, &fan_group[i]);
2051 if (err)
2052 goto ERROR4;
Jean Delvared9b327c2010-03-05 22:17:17 +01002053
2054 if (sio_data->beep_pin) {
2055 err = sysfs_create_file(&dev->kobj,
2056 it87_attributes_fan_beep[i]);
2057 if (err)
2058 goto ERROR4;
2059 if (!fan_beep_need_rw)
2060 continue;
2061
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002062 /*
2063 * As we have a single beep enable bit for all fans,
Jean Delvared9b327c2010-03-05 22:17:17 +01002064 * only the first enabled fan has a writable attribute
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002065 * for it.
2066 */
Jean Delvared9b327c2010-03-05 22:17:17 +01002067 if (sysfs_chmod_file(&dev->kobj,
2068 it87_attributes_fan_beep[i],
2069 S_IRUGO | S_IWUSR))
2070 dev_dbg(dev, "chmod +w fan%d_beep failed\n",
2071 i + 1);
2072 fan_beep_need_rw = 0;
2073 }
Jean Delvare17d648b2006-08-28 14:23:46 +02002074 }
2075
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 if (enable_pwm_interface) {
Jean Delvare723a0aa2010-03-05 22:17:16 +01002077 for (i = 0; i < 3; i++) {
2078 if (sio_data->skip_pwm & (1 << i))
2079 continue;
2080 err = sysfs_create_group(&dev->kobj,
2081 &it87_group_pwm[i]);
2082 if (err)
Jean Delvare98dd22c2008-10-09 15:33:58 +02002083 goto ERROR4;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002084
2085 if (!has_old_autopwm(data))
2086 continue;
2087 err = sysfs_create_group(&dev->kobj,
2088 &it87_group_autopwm[i]);
2089 if (err)
2090 goto ERROR4;
Jean Delvare98dd22c2008-10-09 15:33:58 +02002091 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 }
2093
Jean Delvare895ff262009-12-09 20:35:47 +01002094 if (!sio_data->skip_vid) {
Jean Delvare303760b2005-07-31 21:52:01 +02002095 data->vrm = vid_which_vrm();
Jean Delvare87673dd2006-08-28 14:37:19 +02002096 /* VID reading from Super-I/O config space if available */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002097 data->vid = sio_data->vid_value;
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01002098 err = sysfs_create_group(&dev->kobj, &it87_group_vid);
2099 if (err)
Jean Delvare87808be2006-09-24 21:17:13 +02002100 goto ERROR4;
2101 }
2102
Jean Delvare738e5e02010-08-14 21:08:50 +02002103 /* Export labels for internal sensors */
2104 for (i = 0; i < 3; i++) {
2105 if (!(sio_data->internal & (1 << i)))
2106 continue;
2107 err = sysfs_create_file(&dev->kobj,
2108 it87_attributes_label[i]);
2109 if (err)
2110 goto ERROR4;
2111 }
2112
Tony Jones1beeffe2007-08-20 13:46:20 -07002113 data->hwmon_dev = hwmon_device_register(dev);
2114 if (IS_ERR(data->hwmon_dev)) {
2115 err = PTR_ERR(data->hwmon_dev);
Jean Delvare87808be2006-09-24 21:17:13 +02002116 goto ERROR4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 }
2118
2119 return 0;
2120
Jean Delvare87808be2006-09-24 21:17:13 +02002121ERROR4:
Jean Delvare723a0aa2010-03-05 22:17:16 +01002122 it87_remove_files(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123ERROR2:
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002124 platform_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 kfree(data);
2126ERROR1:
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05002127 release_region(res->start, IT87_EC_EXTENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128ERROR0:
2129 return err;
2130}
2131
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002132static int __devexit it87_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002134 struct it87_data *data = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Tony Jones1beeffe2007-08-20 13:46:20 -07002136 hwmon_device_unregister(data->hwmon_dev);
Jean Delvare723a0aa2010-03-05 22:17:16 +01002137 it87_remove_files(&pdev->dev);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04002138
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05002139 release_region(data->addr, IT87_EC_EXTENT);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002140 platform_set_drvdata(pdev, NULL);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04002141 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
2143 return 0;
2144}
2145
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002146/*
2147 * Must be called with data->update_lock held, except during initialization.
2148 * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
2149 * would slow down the IT87 access and should not be necessary.
2150 */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002151static int it87_read_value(struct it87_data *data, u8 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002153 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
2154 return inb_p(data->addr + IT87_DATA_REG_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155}
2156
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002157/*
2158 * Must be called with data->update_lock held, except during initialization.
2159 * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
2160 * would slow down the IT87 access and should not be necessary.
2161 */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002162static void it87_write_value(struct it87_data *data, u8 reg, u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002164 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
2165 outb_p(value, data->addr + IT87_DATA_REG_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166}
2167
2168/* Return 1 if and only if the PWM interface is safe to use */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002169static int __devinit it87_check_pwm(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002171 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002172 /*
2173 * Some BIOSes fail to correctly configure the IT87 fans. All fans off
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 * and polarity set to active low is sign that this is the case so we
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002175 * disable pwm control to protect the user.
2176 */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002177 int tmp = it87_read_value(data, IT87_REG_FAN_CTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 if ((tmp & 0x87) == 0) {
2179 if (fix_pwm_polarity) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002180 /*
2181 * The user asks us to attempt a chip reconfiguration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 * This means switching to active high polarity and
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002183 * inverting all fan speed values.
2184 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 int i;
2186 u8 pwm[3];
2187
2188 for (i = 0; i < 3; i++)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002189 pwm[i] = it87_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 IT87_REG_PWM(i));
2191
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002192 /*
2193 * If any fan is in automatic pwm mode, the polarity
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 * might be correct, as suspicious as it seems, so we
2195 * better don't change anything (but still disable the
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002196 * PWM interface).
2197 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 if (!((pwm[0] | pwm[1] | pwm[2]) & 0x80)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002199 dev_info(dev, "Reconfiguring PWM to "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 "active high polarity\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002201 it87_write_value(data, IT87_REG_FAN_CTL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 tmp | 0x87);
2203 for (i = 0; i < 3; i++)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002204 it87_write_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 IT87_REG_PWM(i),
2206 0x7f & ~pwm[i]);
2207 return 1;
2208 }
2209
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002210 dev_info(dev, "PWM configuration is "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 "too broken to be fixed\n");
2212 }
2213
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002214 dev_info(dev, "Detected broken BIOS "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 "defaults, disabling PWM interface\n");
2216 return 0;
2217 } else if (fix_pwm_polarity) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002218 dev_info(dev, "PWM configuration looks "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 "sane, won't touch\n");
2220 }
2221
2222 return 1;
2223}
2224
2225/* Called when we have found a new IT87. */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002226static void __devinit it87_init_device(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227{
Jean Delvare591ec652009-12-09 20:35:48 +01002228 struct it87_sio_data *sio_data = pdev->dev.platform_data;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002229 struct it87_data *data = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 int tmp, i;
Jean Delvare591ec652009-12-09 20:35:48 +01002231 u8 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002233 /*
2234 * For each PWM channel:
Jean Delvareb99883d2010-03-05 22:17:15 +01002235 * - If it is in automatic mode, setting to manual mode should set
2236 * the fan to full speed by default.
2237 * - If it is in manual mode, we need a mapping to temperature
2238 * channels to use when later setting to automatic mode later.
2239 * Use a 1:1 mapping by default (we are clueless.)
2240 * In both cases, the value can (and should) be changed by the user
Jean Delvare6229cdb2010-12-08 16:27:22 +01002241 * prior to switching to a different mode.
2242 * Note that this is no longer needed for the IT8721F and later, as
2243 * these have separate registers for the temperature mapping and the
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002244 * manual duty cycle.
2245 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 for (i = 0; i < 3; i++) {
Jean Delvareb99883d2010-03-05 22:17:15 +01002247 data->pwm_temp_map[i] = i;
2248 data->pwm_duty[i] = 0x7f; /* Full speed */
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002249 data->auto_pwm[i][3] = 0x7f; /* Full speed, hard-coded */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 }
2251
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002252 /*
2253 * Some chips seem to have default value 0xff for all limit
Jean Delvarec5df9b72006-08-28 14:37:54 +02002254 * registers. For low voltage limits it makes no sense and triggers
2255 * alarms, so change to 0 instead. For high temperature limits, it
2256 * means -1 degree C, which surprisingly doesn't trigger an alarm,
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002257 * but is still confusing, so change to 127 degrees C.
2258 */
Jean Delvarec5df9b72006-08-28 14:37:54 +02002259 for (i = 0; i < 8; i++) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002260 tmp = it87_read_value(data, IT87_REG_VIN_MIN(i));
Jean Delvarec5df9b72006-08-28 14:37:54 +02002261 if (tmp == 0xff)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002262 it87_write_value(data, IT87_REG_VIN_MIN(i), 0);
Jean Delvarec5df9b72006-08-28 14:37:54 +02002263 }
2264 for (i = 0; i < 3; i++) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002265 tmp = it87_read_value(data, IT87_REG_TEMP_HIGH(i));
Jean Delvarec5df9b72006-08-28 14:37:54 +02002266 if (tmp == 0xff)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002267 it87_write_value(data, IT87_REG_TEMP_HIGH(i), 127);
Jean Delvarec5df9b72006-08-28 14:37:54 +02002268 }
2269
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002270 /*
2271 * Temperature channels are not forcibly enabled, as they can be
Jean Delvarea00afb92010-04-14 16:14:09 +02002272 * set to two different sensor types and we can't guess which one
2273 * is correct for a given system. These channels can be enabled at
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002274 * run-time through the temp{1-3}_type sysfs accessors if needed.
2275 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
2277 /* Check if voltage monitors are reset manually or by some reason */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002278 tmp = it87_read_value(data, IT87_REG_VIN_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 if ((tmp & 0xff) == 0) {
2280 /* Enable all voltage monitors */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002281 it87_write_value(data, IT87_REG_VIN_ENABLE, 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 }
2283
2284 /* Check if tachometers are reset manually or by some reason */
Jean Delvare591ec652009-12-09 20:35:48 +01002285 mask = 0x70 & ~(sio_data->skip_fan << 4);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002286 data->fan_main_ctrl = it87_read_value(data, IT87_REG_FAN_MAIN_CTRL);
Jean Delvare591ec652009-12-09 20:35:48 +01002287 if ((data->fan_main_ctrl & mask) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 /* Enable all fan tachometers */
Jean Delvare591ec652009-12-09 20:35:48 +01002289 data->fan_main_ctrl |= mask;
Jean Delvare5f2dc792010-03-05 22:17:18 +01002290 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
2291 data->fan_main_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 }
Jean Delvare9060f8b2006-08-28 14:24:17 +02002293 data->has_fan = (data->fan_main_ctrl >> 4) & 0x07;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
Jean Delvare17d648b2006-08-28 14:23:46 +02002295 /* Set tachometers to 16-bit mode if needed */
Andrew Paprocki04751692008-08-06 22:41:06 +02002296 if (has_16bit_fans(data)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002297 tmp = it87_read_value(data, IT87_REG_FAN_16BIT);
Jean Delvare9060f8b2006-08-28 14:24:17 +02002298 if (~tmp & 0x07 & data->has_fan) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002299 dev_dbg(&pdev->dev,
Jean Delvare17d648b2006-08-28 14:23:46 +02002300 "Setting fan1-3 to 16-bit mode\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002301 it87_write_value(data, IT87_REG_FAN_16BIT,
Jean Delvare17d648b2006-08-28 14:23:46 +02002302 tmp | 0x07);
2303 }
Guenter Roeck0531d982012-03-02 11:46:44 -08002304 /* IT8705F, IT8782F, and IT8783E/F only support three fans. */
2305 if (data->type != it87 && data->type != it8782 &&
2306 data->type != it8783) {
Andrew Paprocki816d8c62008-08-06 22:41:06 +02002307 if (tmp & (1 << 4))
2308 data->has_fan |= (1 << 3); /* fan4 enabled */
2309 if (tmp & (1 << 5))
2310 data->has_fan |= (1 << 4); /* fan5 enabled */
2311 }
Jean Delvare17d648b2006-08-28 14:23:46 +02002312 }
2313
Jean Delvare591ec652009-12-09 20:35:48 +01002314 /* Fan input pins may be used for alternative functions */
2315 data->has_fan &= ~sio_data->skip_fan;
2316
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 /* Start monitoring */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002318 it87_write_value(data, IT87_REG_CONFIG,
2319 (it87_read_value(data, IT87_REG_CONFIG) & 0x36)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 | (update_vbat ? 0x41 : 0x01));
2321}
2322
Jean Delvareb99883d2010-03-05 22:17:15 +01002323static void it87_update_pwm_ctrl(struct it87_data *data, int nr)
2324{
2325 data->pwm_ctrl[nr] = it87_read_value(data, IT87_REG_PWM(nr));
Jean Delvare16b5dda2012-01-16 22:51:48 +01002326 if (has_newer_autopwm(data)) {
Jean Delvareb99883d2010-03-05 22:17:15 +01002327 data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03;
Jean Delvare6229cdb2010-12-08 16:27:22 +01002328 data->pwm_duty[nr] = it87_read_value(data,
2329 IT87_REG_PWM_DUTY(nr));
2330 } else {
2331 if (data->pwm_ctrl[nr] & 0x80) /* Automatic mode */
2332 data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03;
2333 else /* Manual mode */
2334 data->pwm_duty[nr] = data->pwm_ctrl[nr] & 0x7f;
2335 }
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002336
2337 if (has_old_autopwm(data)) {
2338 int i;
2339
2340 for (i = 0; i < 5 ; i++)
2341 data->auto_temp[nr][i] = it87_read_value(data,
2342 IT87_REG_AUTO_TEMP(nr, i));
2343 for (i = 0; i < 3 ; i++)
2344 data->auto_pwm[nr][i] = it87_read_value(data,
2345 IT87_REG_AUTO_PWM(nr, i));
2346 }
Jean Delvareb99883d2010-03-05 22:17:15 +01002347}
2348
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349static struct it87_data *it87_update_device(struct device *dev)
2350{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002351 struct it87_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 int i;
2353
Ingo Molnar9a61bf62006-01-18 23:19:26 +01002354 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355
2356 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
2357 || !data->valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 if (update_vbat) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002359 /*
2360 * Cleared after each update, so reenable. Value
2361 * returned by this read will be previous value
2362 */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002363 it87_write_value(data, IT87_REG_CONFIG,
Jean Delvare5f2dc792010-03-05 22:17:18 +01002364 it87_read_value(data, IT87_REG_CONFIG) | 0x40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 }
2366 for (i = 0; i <= 7; i++) {
2367 data->in[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002368 it87_read_value(data, IT87_REG_VIN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 data->in_min[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002370 it87_read_value(data, IT87_REG_VIN_MIN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 data->in_max[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002372 it87_read_value(data, IT87_REG_VIN_MAX(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 }
Jean Delvare3543a532006-08-28 14:27:25 +02002374 /* in8 (battery) has no limit registers */
Jean Delvare5f2dc792010-03-05 22:17:18 +01002375 data->in[8] = it87_read_value(data, IT87_REG_VIN(8));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
Jean Delvarec7f1f712007-09-03 17:11:46 +02002377 for (i = 0; i < 5; i++) {
Jean Delvare9060f8b2006-08-28 14:24:17 +02002378 /* Skip disabled fans */
2379 if (!(data->has_fan & (1 << i)))
2380 continue;
2381
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 data->fan_min[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002383 it87_read_value(data, IT87_REG_FAN_MIN[i]);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002384 data->fan[i] = it87_read_value(data,
Jean Delvarec7f1f712007-09-03 17:11:46 +02002385 IT87_REG_FAN[i]);
Jean Delvare17d648b2006-08-28 14:23:46 +02002386 /* Add high byte if in 16-bit mode */
Andrew Paprocki04751692008-08-06 22:41:06 +02002387 if (has_16bit_fans(data)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002388 data->fan[i] |= it87_read_value(data,
Jean Delvarec7f1f712007-09-03 17:11:46 +02002389 IT87_REG_FANX[i]) << 8;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002390 data->fan_min[i] |= it87_read_value(data,
Jean Delvarec7f1f712007-09-03 17:11:46 +02002391 IT87_REG_FANX_MIN[i]) << 8;
Jean Delvare17d648b2006-08-28 14:23:46 +02002392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 }
2394 for (i = 0; i < 3; i++) {
2395 data->temp[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002396 it87_read_value(data, IT87_REG_TEMP(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 data->temp_high[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002398 it87_read_value(data, IT87_REG_TEMP_HIGH(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 data->temp_low[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002400 it87_read_value(data, IT87_REG_TEMP_LOW(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 }
2402
Jean Delvare17d648b2006-08-28 14:23:46 +02002403 /* Newer chips don't have clock dividers */
Andrew Paprocki04751692008-08-06 22:41:06 +02002404 if ((data->has_fan & 0x07) && !has_16bit_fans(data)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002405 i = it87_read_value(data, IT87_REG_FAN_DIV);
Jean Delvare17d648b2006-08-28 14:23:46 +02002406 data->fan_div[0] = i & 0x07;
2407 data->fan_div[1] = (i >> 3) & 0x07;
2408 data->fan_div[2] = (i & 0x40) ? 3 : 1;
2409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
2411 data->alarms =
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002412 it87_read_value(data, IT87_REG_ALARM1) |
2413 (it87_read_value(data, IT87_REG_ALARM2) << 8) |
2414 (it87_read_value(data, IT87_REG_ALARM3) << 16);
Jean Delvared9b327c2010-03-05 22:17:17 +01002415 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
Jean Delvareb99883d2010-03-05 22:17:15 +01002416
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002417 data->fan_main_ctrl = it87_read_value(data,
2418 IT87_REG_FAN_MAIN_CTRL);
2419 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL);
Jean Delvareb99883d2010-03-05 22:17:15 +01002420 for (i = 0; i < 3; i++)
2421 it87_update_pwm_ctrl(data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002423 data->sensor = it87_read_value(data, IT87_REG_TEMP_ENABLE);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002424 /*
2425 * The IT8705F does not have VID capability.
2426 * The IT8718F and later don't use IT87_REG_VID for the
2427 * same purpose.
2428 */
Jean Delvare17d648b2006-08-28 14:23:46 +02002429 if (data->type == it8712 || data->type == it8716) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002430 data->vid = it87_read_value(data, IT87_REG_VID);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002431 /*
2432 * The older IT8712F revisions had only 5 VID pins,
2433 * but we assume it is always safe to read 6 bits.
2434 */
Jean Delvare17d648b2006-08-28 14:23:46 +02002435 data->vid &= 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 }
2437 data->last_updated = jiffies;
2438 data->valid = 1;
2439 }
2440
Ingo Molnar9a61bf62006-01-18 23:19:26 +01002441 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
2443 return data;
2444}
2445
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002446static int __init it87_device_add(unsigned short address,
2447 const struct it87_sio_data *sio_data)
2448{
2449 struct resource res = {
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05002450 .start = address + IT87_EC_OFFSET,
2451 .end = address + IT87_EC_OFFSET + IT87_EC_EXTENT - 1,
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002452 .name = DRVNAME,
2453 .flags = IORESOURCE_IO,
2454 };
2455 int err;
2456
Jean Delvareb9acb642009-01-07 16:37:35 +01002457 err = acpi_check_resource_conflict(&res);
2458 if (err)
2459 goto exit;
2460
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002461 pdev = platform_device_alloc(DRVNAME, address);
2462 if (!pdev) {
2463 err = -ENOMEM;
Joe Perchesa8ca1032011-01-12 21:55:10 +01002464 pr_err("Device allocation failed\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002465 goto exit;
2466 }
2467
2468 err = platform_device_add_resources(pdev, &res, 1);
2469 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002470 pr_err("Device resource addition failed (%d)\n", err);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002471 goto exit_device_put;
2472 }
2473
2474 err = platform_device_add_data(pdev, sio_data,
2475 sizeof(struct it87_sio_data));
2476 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002477 pr_err("Platform data allocation failed\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002478 goto exit_device_put;
2479 }
2480
2481 err = platform_device_add(pdev);
2482 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002483 pr_err("Device addition failed (%d)\n", err);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002484 goto exit_device_put;
2485 }
2486
2487 return 0;
2488
2489exit_device_put:
2490 platform_device_put(pdev);
2491exit:
2492 return err;
2493}
2494
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495static int __init sm_it87_init(void)
2496{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002497 int err;
Jean Delvare5f2dc792010-03-05 22:17:18 +01002498 unsigned short isa_address = 0;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002499 struct it87_sio_data sio_data;
Jean Delvarefde09502005-07-19 23:51:07 +02002500
Jean Delvare98dd22c2008-10-09 15:33:58 +02002501 memset(&sio_data, 0, sizeof(struct it87_sio_data));
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002502 err = it87_find(&isa_address, &sio_data);
2503 if (err)
2504 return err;
2505 err = platform_driver_register(&it87_driver);
2506 if (err)
2507 return err;
2508
2509 err = it87_device_add(isa_address, &sio_data);
Jean Delvare5f2dc792010-03-05 22:17:18 +01002510 if (err) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002511 platform_driver_unregister(&it87_driver);
2512 return err;
2513 }
2514
2515 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516}
2517
2518static void __exit sm_it87_exit(void)
2519{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002520 platform_device_unregister(pdev);
2521 platform_driver_unregister(&it87_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522}
2523
2524
Jean Delvaref1d8e332007-11-25 16:14:44 +01002525MODULE_AUTHOR("Chris Gauthron, "
Jean Delvareb19367c2006-08-28 14:39:26 +02002526 "Jean Delvare <khali@linux-fr.org>");
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002527MODULE_DESCRIPTION("IT8705F/IT871xF/IT872xF hardware monitoring driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528module_param(update_vbat, bool, 0);
2529MODULE_PARM_DESC(update_vbat, "Update vbat if set else return powerup value");
2530module_param(fix_pwm_polarity, bool, 0);
Jean Delvare5f2dc792010-03-05 22:17:18 +01002531MODULE_PARM_DESC(fix_pwm_polarity,
2532 "Force PWM polarity to active high (DANGEROUS)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533MODULE_LICENSE("GPL");
2534
2535module_init(sm_it87_init);
2536module_exit(sm_it87_exit);