blob: aebac1334ff60a07fa80a7cef170fdebd68aefcf [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 */
Jean Delvare895ff262009-12-09 20:35:47 +0100237 u8 skip_vid;
Jean Delvare591ec652009-12-09 20:35:48 +0100238 u8 skip_fan;
Jean Delvare98dd22c2008-10-09 15:33:58 +0200239 u8 skip_pwm;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200240};
241
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800242/*
243 * For each registered chip, we need to keep some data in memory.
244 * The structure is dynamically allocated.
245 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246struct it87_data {
Tony Jones1beeffe2007-08-20 13:46:20 -0700247 struct device *hwmon_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 enum chips type;
Andrew Paprocki04751692008-08-06 22:41:06 +0200249 u8 revision;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200251 unsigned short addr;
252 const char *name;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100253 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 char valid; /* !=0 if following fields are valid */
255 unsigned long last_updated; /* In jiffies */
256
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200257 u16 in_scaled; /* Internal voltage sensors are scaled */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 u8 in[9]; /* Register value */
Jean Delvare3543a532006-08-28 14:27:25 +0200259 u8 in_max[8]; /* Register value */
260 u8 in_min[8]; /* Register value */
Jean Delvare9060f8b2006-08-28 14:24:17 +0200261 u8 has_fan; /* Bitfield, fans enabled */
Jean Delvarec7f1f712007-09-03 17:11:46 +0200262 u16 fan[5]; /* Register values, possibly combined */
263 u16 fan_min[5]; /* Register values, possibly combined */
Jean Delvaree267d252009-03-12 13:36:39 +0100264 s8 temp[3]; /* Register value */
265 s8 temp_high[3]; /* Register value */
266 s8 temp_low[3]; /* Register value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 u8 sensor; /* Register value */
268 u8 fan_div[3]; /* Register encoding, shifted right */
269 u8 vid; /* Register encoding, combined */
Jean Delvarea7be58a2005-12-18 16:40:14 +0100270 u8 vrm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 u32 alarms; /* Register encoding, combined */
Jean Delvared9b327c2010-03-05 22:17:17 +0100272 u8 beeps; /* Register encoding */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 u8 fan_main_ctrl; /* Register value */
Jean Delvaref8d0c192007-02-14 21:15:02 +0100274 u8 fan_ctl; /* Register value */
Jean Delvareb99883d2010-03-05 22:17:15 +0100275
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800276 /*
277 * The following 3 arrays correspond to the same registers up to
Jean Delvare6229cdb2010-12-08 16:27:22 +0100278 * the IT8720F. The meaning of bits 6-0 depends on the value of bit
279 * 7, and we want to preserve settings on mode changes, so we have
280 * to track all values separately.
281 * Starting with the IT8721F, the manual PWM duty cycles are stored
282 * in separate registers (8-bit values), so the separate tracking
283 * is no longer needed, but it is still done to keep the driver
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800284 * simple.
285 */
Jean Delvareb99883d2010-03-05 22:17:15 +0100286 u8 pwm_ctrl[3]; /* Register value */
Jean Delvare6229cdb2010-12-08 16:27:22 +0100287 u8 pwm_duty[3]; /* Manual PWM value set by user */
Jean Delvareb99883d2010-03-05 22:17:15 +0100288 u8 pwm_temp_map[3]; /* PWM to temp. chan. mapping (bits 1-0) */
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100289
290 /* Automatic fan speed control registers */
291 u8 auto_pwm[3][4]; /* [nr][3] is hard-coded */
292 s8 auto_temp[3][5]; /* [nr][0] is point1_temp_hyst */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293};
294
Jean Delvare16b5dda2012-01-16 22:51:48 +0100295static inline int has_12mv_adc(const struct it87_data *data)
296{
297 /*
298 * IT8721F and later have a 12 mV ADC, also with internal scaling
299 * on selected inputs.
300 */
301 return data->type == it8721
302 || data->type == it8728;
303}
304
305static inline int has_newer_autopwm(const struct it87_data *data)
306{
307 /*
308 * IT8721F and later have separate registers for the temperature
309 * mapping and the manual duty cycle.
310 */
311 return data->type == it8721
312 || data->type == it8728;
313}
314
Guenter Roeck0531d982012-03-02 11:46:44 -0800315static int adc_lsb(const struct it87_data *data, int nr)
316{
317 int lsb = has_12mv_adc(data) ? 12 : 16;
318 if (data->in_scaled & (1 << nr))
319 lsb <<= 1;
320 return lsb;
321}
322
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200323static u8 in_to_reg(const struct it87_data *data, int nr, long val)
324{
Guenter Roeck0531d982012-03-02 11:46:44 -0800325 val = DIV_ROUND_CLOSEST(val, adc_lsb(data, nr));
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200326 return SENSORS_LIMIT(val, 0, 255);
327}
328
329static int in_from_reg(const struct it87_data *data, int nr, int val)
330{
Guenter Roeck0531d982012-03-02 11:46:44 -0800331 return val * adc_lsb(data, nr);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200332}
Jean Delvare0df6454d2010-10-28 20:31:51 +0200333
334static inline u8 FAN_TO_REG(long rpm, int div)
335{
336 if (rpm == 0)
337 return 255;
338 rpm = SENSORS_LIMIT(rpm, 1, 1000000);
339 return SENSORS_LIMIT((1350000 + rpm * div / 2) / (rpm * div), 1,
340 254);
341}
342
343static inline u16 FAN16_TO_REG(long rpm)
344{
345 if (rpm == 0)
346 return 0xffff;
347 return SENSORS_LIMIT((1350000 + rpm) / (rpm * 2), 1, 0xfffe);
348}
349
350#define FAN_FROM_REG(val, div) ((val) == 0 ? -1 : (val) == 255 ? 0 : \
351 1350000 / ((val) * (div)))
352/* The divider is fixed to 2 in 16-bit mode */
353#define FAN16_FROM_REG(val) ((val) == 0 ? -1 : (val) == 0xffff ? 0 : \
354 1350000 / ((val) * 2))
355
356#define TEMP_TO_REG(val) (SENSORS_LIMIT(((val) < 0 ? (((val) - 500) / 1000) : \
357 ((val) + 500) / 1000), -128, 127))
358#define TEMP_FROM_REG(val) ((val) * 1000)
359
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200360static u8 pwm_to_reg(const struct it87_data *data, long val)
361{
Jean Delvare16b5dda2012-01-16 22:51:48 +0100362 if (has_newer_autopwm(data))
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200363 return val;
364 else
365 return val >> 1;
366}
367
368static int pwm_from_reg(const struct it87_data *data, u8 reg)
369{
Jean Delvare16b5dda2012-01-16 22:51:48 +0100370 if (has_newer_autopwm(data))
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200371 return reg;
372 else
373 return (reg & 0x7f) << 1;
374}
375
Jean Delvare0df6454d2010-10-28 20:31:51 +0200376
377static int DIV_TO_REG(int val)
378{
379 int answer = 0;
380 while (answer < 7 && (val >>= 1))
381 answer++;
382 return answer;
383}
384#define DIV_FROM_REG(val) (1 << (val))
385
386static const unsigned int pwm_freq[8] = {
387 48000000 / 128,
388 24000000 / 128,
389 12000000 / 128,
390 8000000 / 128,
391 6000000 / 128,
392 3000000 / 128,
393 1500000 / 128,
394 750000 / 128,
395};
396
Andrew Paprocki04751692008-08-06 22:41:06 +0200397static inline int has_16bit_fans(const struct it87_data *data)
398{
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800399 /*
400 * IT8705F Datasheet 0.4.1, 3h == Version G.
401 * IT8712F Datasheet 0.9.1, section 8.3.5 indicates 8h == Version J.
402 * These are the first revisions with 16-bit tachometer support.
403 */
Andrew Paprocki816d8c62008-08-06 22:41:06 +0200404 return (data->type == it87 && data->revision >= 0x03)
Andrew Paprocki859b9ef2008-09-20 10:25:19 +0200405 || (data->type == it8712 && data->revision >= 0x08)
Andrew Paprocki04751692008-08-06 22:41:06 +0200406 || data->type == it8716
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +0100407 || data->type == it8718
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200408 || data->type == it8720
Jean Delvare16b5dda2012-01-16 22:51:48 +0100409 || data->type == it8721
Guenter Roeck0531d982012-03-02 11:46:44 -0800410 || data->type == it8728
411 || data->type == it8782
412 || data->type == it8783;
Andrew Paprocki04751692008-08-06 22:41:06 +0200413}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100415static inline int has_old_autopwm(const struct it87_data *data)
416{
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800417 /*
418 * The old automatic fan speed control interface is implemented
419 * by IT8705F chips up to revision F and IT8712F chips up to
420 * revision G.
421 */
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100422 return (data->type == it87 && data->revision < 0x03)
423 || (data->type == it8712 && data->revision < 0x08);
424}
425
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200426static int it87_probe(struct platform_device *pdev);
Jean Delvared0546122007-07-22 12:09:48 +0200427static int __devexit it87_remove(struct platform_device *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200429static int it87_read_value(struct it87_data *data, u8 reg);
430static void it87_write_value(struct it87_data *data, u8 reg, u8 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431static struct it87_data *it87_update_device(struct device *dev);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200432static int it87_check_pwm(struct device *dev);
433static void it87_init_device(struct platform_device *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200436static struct platform_driver it87_driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100437 .driver = {
Jean Delvare87218842006-09-03 22:36:14 +0200438 .owner = THIS_MODULE,
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200439 .name = DRVNAME,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100440 },
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200441 .probe = it87_probe,
442 .remove = __devexit_p(it87_remove),
Jean Delvarefde09502005-07-19 23:51:07 +0200443};
444
Jean Delvare20ad93d2005-06-05 11:53:25 +0200445static ssize_t show_in(struct device *dev, struct device_attribute *attr,
446 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200448 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
449 int nr = sensor_attr->index;
450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 struct it87_data *data = it87_update_device(dev);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200452 return sprintf(buf, "%d\n", in_from_reg(data, nr, data->in[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453}
454
Jean Delvare20ad93d2005-06-05 11:53:25 +0200455static ssize_t show_in_min(struct device *dev, struct device_attribute *attr,
456 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200458 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
459 int nr = sensor_attr->index;
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 struct it87_data *data = it87_update_device(dev);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200462 return sprintf(buf, "%d\n", in_from_reg(data, nr, data->in_min[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
Jean Delvare20ad93d2005-06-05 11:53:25 +0200465static ssize_t show_in_max(struct device *dev, struct device_attribute *attr,
466 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200468 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
469 int nr = sensor_attr->index;
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 struct it87_data *data = it87_update_device(dev);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200472 return sprintf(buf, "%d\n", in_from_reg(data, nr, data->in_max[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473}
474
Jean Delvare20ad93d2005-06-05 11:53:25 +0200475static ssize_t set_in_min(struct device *dev, struct device_attribute *attr,
476 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200478 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
479 int nr = sensor_attr->index;
480
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200481 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100482 unsigned long val;
483
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100484 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100485 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100487 mutex_lock(&data->update_lock);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200488 data->in_min[nr] = in_to_reg(data, nr, val);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200489 it87_write_value(data, IT87_REG_VIN_MIN(nr),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 data->in_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100491 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 return count;
493}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200494static ssize_t set_in_max(struct device *dev, struct device_attribute *attr,
495 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200497 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
498 int nr = sensor_attr->index;
499
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200500 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100501 unsigned long val;
502
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100503 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100504 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100506 mutex_lock(&data->update_lock);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200507 data->in_max[nr] = in_to_reg(data, nr, val);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200508 it87_write_value(data, IT87_REG_VIN_MAX(nr),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 data->in_max[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100510 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 return count;
512}
513
514#define show_in_offset(offset) \
Jean Delvare20ad93d2005-06-05 11:53:25 +0200515static SENSOR_DEVICE_ATTR(in##offset##_input, S_IRUGO, \
516 show_in, NULL, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518#define limit_in_offset(offset) \
Jean Delvare20ad93d2005-06-05 11:53:25 +0200519static SENSOR_DEVICE_ATTR(in##offset##_min, S_IRUGO | S_IWUSR, \
520 show_in_min, set_in_min, offset); \
521static SENSOR_DEVICE_ATTR(in##offset##_max, S_IRUGO | S_IWUSR, \
522 show_in_max, set_in_max, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524show_in_offset(0);
525limit_in_offset(0);
526show_in_offset(1);
527limit_in_offset(1);
528show_in_offset(2);
529limit_in_offset(2);
530show_in_offset(3);
531limit_in_offset(3);
532show_in_offset(4);
533limit_in_offset(4);
534show_in_offset(5);
535limit_in_offset(5);
536show_in_offset(6);
537limit_in_offset(6);
538show_in_offset(7);
539limit_in_offset(7);
540show_in_offset(8);
541
542/* 3 temperatures */
Jean Delvare20ad93d2005-06-05 11:53:25 +0200543static ssize_t show_temp(struct device *dev, struct device_attribute *attr,
544 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200546 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
547 int nr = sensor_attr->index;
548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 struct it87_data *data = it87_update_device(dev);
550 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[nr]));
551}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200552static ssize_t show_temp_max(struct device *dev, struct device_attribute *attr,
553 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200555 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
556 int nr = sensor_attr->index;
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 struct it87_data *data = it87_update_device(dev);
559 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_high[nr]));
560}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200561static ssize_t show_temp_min(struct device *dev, struct device_attribute *attr,
562 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200564 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
565 int nr = sensor_attr->index;
566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 struct it87_data *data = it87_update_device(dev);
568 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_low[nr]));
569}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200570static ssize_t set_temp_max(struct device *dev, struct device_attribute *attr,
571 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200573 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
574 int nr = sensor_attr->index;
575
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200576 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100577 long val;
578
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100579 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100580 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100582 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 data->temp_high[nr] = TEMP_TO_REG(val);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200584 it87_write_value(data, IT87_REG_TEMP_HIGH(nr), data->temp_high[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100585 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 return count;
587}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200588static ssize_t set_temp_min(struct device *dev, struct device_attribute *attr,
589 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200591 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
592 int nr = sensor_attr->index;
593
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200594 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100595 long val;
596
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100597 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100598 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100600 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 data->temp_low[nr] = TEMP_TO_REG(val);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200602 it87_write_value(data, IT87_REG_TEMP_LOW(nr), data->temp_low[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100603 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 return count;
605}
606#define show_temp_offset(offset) \
Jean Delvare20ad93d2005-06-05 11:53:25 +0200607static SENSOR_DEVICE_ATTR(temp##offset##_input, S_IRUGO, \
608 show_temp, NULL, offset - 1); \
609static SENSOR_DEVICE_ATTR(temp##offset##_max, S_IRUGO | S_IWUSR, \
610 show_temp_max, set_temp_max, offset - 1); \
611static SENSOR_DEVICE_ATTR(temp##offset##_min, S_IRUGO | S_IWUSR, \
612 show_temp_min, set_temp_min, offset - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614show_temp_offset(1);
615show_temp_offset(2);
616show_temp_offset(3);
617
Jean Delvare20ad93d2005-06-05 11:53:25 +0200618static ssize_t show_sensor(struct device *dev, struct device_attribute *attr,
619 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200621 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
622 int nr = sensor_attr->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 struct it87_data *data = it87_update_device(dev);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800624 u8 reg = data->sensor; /* In case value is updated while used */
Jean Delvare5f2dc792010-03-05 22:17:18 +0100625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 if (reg & (1 << nr))
627 return sprintf(buf, "3\n"); /* thermal diode */
628 if (reg & (8 << nr))
Jean Delvare4ed10772008-10-17 17:51:16 +0200629 return sprintf(buf, "4\n"); /* thermistor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 return sprintf(buf, "0\n"); /* disabled */
631}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200632static ssize_t set_sensor(struct device *dev, struct device_attribute *attr,
633 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200635 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
636 int nr = sensor_attr->index;
637
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200638 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100639 long val;
Jean Delvare8acf07c2010-04-14 16:14:09 +0200640 u8 reg;
Jean Delvaref5f64502010-03-05 22:17:19 +0100641
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100642 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100643 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Jean Delvare8acf07c2010-04-14 16:14:09 +0200645 reg = it87_read_value(data, IT87_REG_TEMP_ENABLE);
646 reg &= ~(1 << nr);
647 reg &= ~(8 << nr);
Jean Delvare4ed10772008-10-17 17:51:16 +0200648 if (val == 2) { /* backwards compatibility */
649 dev_warn(dev, "Sensor type 2 is deprecated, please use 4 "
650 "instead\n");
651 val = 4;
652 }
653 /* 3 = thermal diode; 4 = thermistor; 0 = disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 if (val == 3)
Jean Delvare8acf07c2010-04-14 16:14:09 +0200655 reg |= 1 << nr;
Jean Delvare4ed10772008-10-17 17:51:16 +0200656 else if (val == 4)
Jean Delvare8acf07c2010-04-14 16:14:09 +0200657 reg |= 8 << nr;
658 else if (val != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return -EINVAL;
Jean Delvare8acf07c2010-04-14 16:14:09 +0200660
661 mutex_lock(&data->update_lock);
662 data->sensor = reg;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200663 it87_write_value(data, IT87_REG_TEMP_ENABLE, data->sensor);
Jean Delvare2b3d1d82010-04-14 16:14:10 +0200664 data->valid = 0; /* Force cache refresh */
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100665 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 return count;
667}
668#define show_sensor_offset(offset) \
Jean Delvare20ad93d2005-06-05 11:53:25 +0200669static SENSOR_DEVICE_ATTR(temp##offset##_type, S_IRUGO | S_IWUSR, \
670 show_sensor, set_sensor, offset - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672show_sensor_offset(1);
673show_sensor_offset(2);
674show_sensor_offset(3);
675
676/* 3 Fans */
Jean Delvareb99883d2010-03-05 22:17:15 +0100677
678static int pwm_mode(const struct it87_data *data, int nr)
679{
680 int ctrl = data->fan_main_ctrl & (1 << nr);
681
682 if (ctrl == 0) /* Full speed */
683 return 0;
684 if (data->pwm_ctrl[nr] & 0x80) /* Automatic mode */
685 return 2;
686 else /* Manual mode */
687 return 1;
688}
689
Jean Delvare20ad93d2005-06-05 11:53:25 +0200690static ssize_t show_fan(struct device *dev, struct device_attribute *attr,
691 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200693 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
694 int nr = sensor_attr->index;
695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 struct it87_data *data = it87_update_device(dev);
Jean Delvare5f2dc792010-03-05 22:17:18 +0100697 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[nr],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 DIV_FROM_REG(data->fan_div[nr])));
699}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200700static ssize_t show_fan_min(struct device *dev, struct device_attribute *attr,
701 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200703 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
704 int nr = sensor_attr->index;
705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 struct it87_data *data = it87_update_device(dev);
Jean Delvare5f2dc792010-03-05 22:17:18 +0100707 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan_min[nr],
708 DIV_FROM_REG(data->fan_div[nr])));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200710static ssize_t show_fan_div(struct device *dev, struct device_attribute *attr,
711 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200713 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
714 int nr = sensor_attr->index;
715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 struct it87_data *data = it87_update_device(dev);
717 return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[nr]));
718}
Jean Delvare5f2dc792010-03-05 22:17:18 +0100719static ssize_t show_pwm_enable(struct device *dev,
720 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200722 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
723 int nr = sensor_attr->index;
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 struct it87_data *data = it87_update_device(dev);
Jean Delvareb99883d2010-03-05 22:17:15 +0100726 return sprintf(buf, "%d\n", pwm_mode(data, nr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200728static ssize_t show_pwm(struct device *dev, struct device_attribute *attr,
729 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200731 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
732 int nr = sensor_attr->index;
733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 struct it87_data *data = it87_update_device(dev);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200735 return sprintf(buf, "%d\n",
736 pwm_from_reg(data, data->pwm_duty[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737}
Jean Delvaref8d0c192007-02-14 21:15:02 +0100738static ssize_t show_pwm_freq(struct device *dev, struct device_attribute *attr,
739 char *buf)
740{
741 struct it87_data *data = it87_update_device(dev);
742 int index = (data->fan_ctl >> 4) & 0x07;
743
744 return sprintf(buf, "%u\n", pwm_freq[index]);
745}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200746static ssize_t set_fan_min(struct device *dev, struct device_attribute *attr,
747 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200749 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
750 int nr = sensor_attr->index;
751
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200752 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100753 long val;
Jean Delvare7f999aa2007-02-14 21:15:03 +0100754 u8 reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100756 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100757 return -EINVAL;
758
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100759 mutex_lock(&data->update_lock);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200760 reg = it87_read_value(data, IT87_REG_FAN_DIV);
Jean Delvare07eab462005-11-23 15:44:31 -0800761 switch (nr) {
Jean Delvare5f2dc792010-03-05 22:17:18 +0100762 case 0:
763 data->fan_div[nr] = reg & 0x07;
764 break;
765 case 1:
766 data->fan_div[nr] = (reg >> 3) & 0x07;
767 break;
768 case 2:
769 data->fan_div[nr] = (reg & 0x40) ? 3 : 1;
770 break;
Jean Delvare07eab462005-11-23 15:44:31 -0800771 }
772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 data->fan_min[nr] = FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
Jean Delvarec7f1f712007-09-03 17:11:46 +0200774 it87_write_value(data, IT87_REG_FAN_MIN[nr], data->fan_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100775 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 return count;
777}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200778static ssize_t set_fan_div(struct device *dev, struct device_attribute *attr,
779 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200781 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
782 int nr = sensor_attr->index;
783
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200784 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100785 unsigned long val;
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200786 int min;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 u8 old;
788
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100789 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100790 return -EINVAL;
791
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100792 mutex_lock(&data->update_lock);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200793 old = it87_read_value(data, IT87_REG_FAN_DIV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200795 /* Save fan min limit */
796 min = FAN_FROM_REG(data->fan_min[nr], DIV_FROM_REG(data->fan_div[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
798 switch (nr) {
799 case 0:
800 case 1:
801 data->fan_div[nr] = DIV_TO_REG(val);
802 break;
803 case 2:
804 if (val < 8)
805 data->fan_div[nr] = 1;
806 else
807 data->fan_div[nr] = 3;
808 }
809 val = old & 0x80;
810 val |= (data->fan_div[0] & 0x07);
811 val |= (data->fan_div[1] & 0x07) << 3;
812 if (data->fan_div[2] == 3)
813 val |= 0x1 << 6;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200814 it87_write_value(data, IT87_REG_FAN_DIV, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200816 /* Restore fan min limit */
817 data->fan_min[nr] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
Jean Delvarec7f1f712007-09-03 17:11:46 +0200818 it87_write_value(data, IT87_REG_FAN_MIN[nr], data->fan_min[nr]);
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200819
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100820 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 return count;
822}
Jean Delvarecccfc9c2010-03-05 22:17:21 +0100823
824/* Returns 0 if OK, -EINVAL otherwise */
825static int check_trip_points(struct device *dev, int nr)
826{
827 const struct it87_data *data = dev_get_drvdata(dev);
828 int i, err = 0;
829
830 if (has_old_autopwm(data)) {
831 for (i = 0; i < 3; i++) {
832 if (data->auto_temp[nr][i] > data->auto_temp[nr][i + 1])
833 err = -EINVAL;
834 }
835 for (i = 0; i < 2; i++) {
836 if (data->auto_pwm[nr][i] > data->auto_pwm[nr][i + 1])
837 err = -EINVAL;
838 }
839 }
840
841 if (err) {
842 dev_err(dev, "Inconsistent trip points, not switching to "
843 "automatic mode\n");
844 dev_err(dev, "Adjust the trip points and try again\n");
845 }
846 return err;
847}
848
Jean Delvare20ad93d2005-06-05 11:53:25 +0200849static ssize_t set_pwm_enable(struct device *dev,
850 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200852 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
853 int nr = sensor_attr->index;
854
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200855 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100856 long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100858 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 2)
Jean Delvareb99883d2010-03-05 22:17:15 +0100859 return -EINVAL;
860
Jean Delvarecccfc9c2010-03-05 22:17:21 +0100861 /* Check trip points before switching to automatic mode */
862 if (val == 2) {
863 if (check_trip_points(dev, nr) < 0)
864 return -EINVAL;
865 }
866
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100867 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
869 if (val == 0) {
870 int tmp;
871 /* make sure the fan is on when in on/off mode */
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200872 tmp = it87_read_value(data, IT87_REG_FAN_CTL);
873 it87_write_value(data, IT87_REG_FAN_CTL, tmp | (1 << nr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 /* set on/off mode */
875 data->fan_main_ctrl &= ~(1 << nr);
Jean Delvare5f2dc792010-03-05 22:17:18 +0100876 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
877 data->fan_main_ctrl);
Jean Delvareb99883d2010-03-05 22:17:15 +0100878 } else {
879 if (val == 1) /* Manual mode */
Jean Delvare16b5dda2012-01-16 22:51:48 +0100880 data->pwm_ctrl[nr] = has_newer_autopwm(data) ?
Jean Delvare6229cdb2010-12-08 16:27:22 +0100881 data->pwm_temp_map[nr] :
882 data->pwm_duty[nr];
Jean Delvareb99883d2010-03-05 22:17:15 +0100883 else /* Automatic mode */
884 data->pwm_ctrl[nr] = 0x80 | data->pwm_temp_map[nr];
885 it87_write_value(data, IT87_REG_PWM(nr), data->pwm_ctrl[nr]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 /* set SmartGuardian mode */
887 data->fan_main_ctrl |= (1 << nr);
Jean Delvare5f2dc792010-03-05 22:17:18 +0100888 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
889 data->fan_main_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 }
891
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100892 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 return count;
894}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200895static ssize_t set_pwm(struct device *dev, struct device_attribute *attr,
896 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200898 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
899 int nr = sensor_attr->index;
900
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200901 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100902 long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100904 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 return -EINVAL;
906
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100907 mutex_lock(&data->update_lock);
Jean Delvare16b5dda2012-01-16 22:51:48 +0100908 if (has_newer_autopwm(data)) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800909 /*
910 * If we are in automatic mode, the PWM duty cycle register
911 * is read-only so we can't write the value.
912 */
Jean Delvare6229cdb2010-12-08 16:27:22 +0100913 if (data->pwm_ctrl[nr] & 0x80) {
914 mutex_unlock(&data->update_lock);
915 return -EBUSY;
916 }
917 data->pwm_duty[nr] = pwm_to_reg(data, val);
918 it87_write_value(data, IT87_REG_PWM_DUTY(nr),
919 data->pwm_duty[nr]);
920 } else {
921 data->pwm_duty[nr] = pwm_to_reg(data, val);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800922 /*
923 * If we are in manual mode, write the duty cycle immediately;
924 * otherwise, just store it for later use.
925 */
Jean Delvare6229cdb2010-12-08 16:27:22 +0100926 if (!(data->pwm_ctrl[nr] & 0x80)) {
927 data->pwm_ctrl[nr] = data->pwm_duty[nr];
928 it87_write_value(data, IT87_REG_PWM(nr),
929 data->pwm_ctrl[nr]);
930 }
Jean Delvareb99883d2010-03-05 22:17:15 +0100931 }
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100932 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 return count;
934}
Jean Delvaref8d0c192007-02-14 21:15:02 +0100935static ssize_t set_pwm_freq(struct device *dev,
936 struct device_attribute *attr, const char *buf, size_t count)
937{
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200938 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100939 unsigned long val;
Jean Delvaref8d0c192007-02-14 21:15:02 +0100940 int i;
941
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100942 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +0100943 return -EINVAL;
944
Jean Delvaref8d0c192007-02-14 21:15:02 +0100945 /* Search for the nearest available frequency */
946 for (i = 0; i < 7; i++) {
947 if (val > (pwm_freq[i] + pwm_freq[i+1]) / 2)
948 break;
949 }
950
951 mutex_lock(&data->update_lock);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200952 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL) & 0x8f;
Jean Delvaref8d0c192007-02-14 21:15:02 +0100953 data->fan_ctl |= i << 4;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200954 it87_write_value(data, IT87_REG_FAN_CTL, data->fan_ctl);
Jean Delvaref8d0c192007-02-14 21:15:02 +0100955 mutex_unlock(&data->update_lock);
956
957 return count;
958}
Jean Delvare94ac7ee2010-03-05 22:17:16 +0100959static ssize_t show_pwm_temp_map(struct device *dev,
960 struct device_attribute *attr, char *buf)
961{
962 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
963 int nr = sensor_attr->index;
964
965 struct it87_data *data = it87_update_device(dev);
966 int map;
967
968 if (data->pwm_temp_map[nr] < 3)
969 map = 1 << data->pwm_temp_map[nr];
970 else
971 map = 0; /* Should never happen */
972 return sprintf(buf, "%d\n", map);
973}
974static ssize_t set_pwm_temp_map(struct device *dev,
975 struct device_attribute *attr, const char *buf, size_t count)
976{
977 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
978 int nr = sensor_attr->index;
979
980 struct it87_data *data = dev_get_drvdata(dev);
981 long val;
982 u8 reg;
983
Guenter Roeck4a0d71c2012-01-19 11:02:18 -0800984 /*
985 * This check can go away if we ever support automatic fan speed
986 * control on newer chips.
987 */
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100988 if (!has_old_autopwm(data)) {
989 dev_notice(dev, "Mapping change disabled for safety reasons\n");
990 return -EINVAL;
991 }
992
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100993 if (kstrtol(buf, 10, &val) < 0)
Jean Delvare94ac7ee2010-03-05 22:17:16 +0100994 return -EINVAL;
995
996 switch (val) {
997 case (1 << 0):
998 reg = 0x00;
999 break;
1000 case (1 << 1):
1001 reg = 0x01;
1002 break;
1003 case (1 << 2):
1004 reg = 0x02;
1005 break;
1006 default:
1007 return -EINVAL;
1008 }
1009
1010 mutex_lock(&data->update_lock);
1011 data->pwm_temp_map[nr] = reg;
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001012 /*
1013 * If we are in automatic mode, write the temp mapping immediately;
1014 * otherwise, just store it for later use.
1015 */
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001016 if (data->pwm_ctrl[nr] & 0x80) {
1017 data->pwm_ctrl[nr] = 0x80 | data->pwm_temp_map[nr];
1018 it87_write_value(data, IT87_REG_PWM(nr), data->pwm_ctrl[nr]);
1019 }
1020 mutex_unlock(&data->update_lock);
1021 return count;
1022}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001024static ssize_t show_auto_pwm(struct device *dev,
1025 struct device_attribute *attr, char *buf)
1026{
1027 struct it87_data *data = it87_update_device(dev);
1028 struct sensor_device_attribute_2 *sensor_attr =
1029 to_sensor_dev_attr_2(attr);
1030 int nr = sensor_attr->nr;
1031 int point = sensor_attr->index;
1032
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001033 return sprintf(buf, "%d\n",
1034 pwm_from_reg(data, data->auto_pwm[nr][point]));
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001035}
1036
1037static ssize_t set_auto_pwm(struct device *dev,
1038 struct device_attribute *attr, const char *buf, size_t count)
1039{
1040 struct it87_data *data = dev_get_drvdata(dev);
1041 struct sensor_device_attribute_2 *sensor_attr =
1042 to_sensor_dev_attr_2(attr);
1043 int nr = sensor_attr->nr;
1044 int point = sensor_attr->index;
1045 long val;
1046
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001047 if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001048 return -EINVAL;
1049
1050 mutex_lock(&data->update_lock);
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001051 data->auto_pwm[nr][point] = pwm_to_reg(data, val);
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001052 it87_write_value(data, IT87_REG_AUTO_PWM(nr, point),
1053 data->auto_pwm[nr][point]);
1054 mutex_unlock(&data->update_lock);
1055 return count;
1056}
1057
1058static ssize_t show_auto_temp(struct device *dev,
1059 struct device_attribute *attr, char *buf)
1060{
1061 struct it87_data *data = it87_update_device(dev);
1062 struct sensor_device_attribute_2 *sensor_attr =
1063 to_sensor_dev_attr_2(attr);
1064 int nr = sensor_attr->nr;
1065 int point = sensor_attr->index;
1066
1067 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->auto_temp[nr][point]));
1068}
1069
1070static ssize_t set_auto_temp(struct device *dev,
1071 struct device_attribute *attr, const char *buf, size_t count)
1072{
1073 struct it87_data *data = dev_get_drvdata(dev);
1074 struct sensor_device_attribute_2 *sensor_attr =
1075 to_sensor_dev_attr_2(attr);
1076 int nr = sensor_attr->nr;
1077 int point = sensor_attr->index;
1078 long val;
1079
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001080 if (kstrtol(buf, 10, &val) < 0 || val < -128000 || val > 127000)
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001081 return -EINVAL;
1082
1083 mutex_lock(&data->update_lock);
1084 data->auto_temp[nr][point] = TEMP_TO_REG(val);
1085 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, point),
1086 data->auto_temp[nr][point]);
1087 mutex_unlock(&data->update_lock);
1088 return count;
1089}
1090
Jean Delvare20ad93d2005-06-05 11:53:25 +02001091#define show_fan_offset(offset) \
1092static SENSOR_DEVICE_ATTR(fan##offset##_input, S_IRUGO, \
1093 show_fan, NULL, offset - 1); \
1094static SENSOR_DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
1095 show_fan_min, set_fan_min, offset - 1); \
1096static SENSOR_DEVICE_ATTR(fan##offset##_div, S_IRUGO | S_IWUSR, \
1097 show_fan_div, set_fan_div, offset - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
1099show_fan_offset(1);
1100show_fan_offset(2);
1101show_fan_offset(3);
1102
1103#define show_pwm_offset(offset) \
Jean Delvare20ad93d2005-06-05 11:53:25 +02001104static SENSOR_DEVICE_ATTR(pwm##offset##_enable, S_IRUGO | S_IWUSR, \
1105 show_pwm_enable, set_pwm_enable, offset - 1); \
1106static SENSOR_DEVICE_ATTR(pwm##offset, S_IRUGO | S_IWUSR, \
Jean Delvaref8d0c192007-02-14 21:15:02 +01001107 show_pwm, set_pwm, offset - 1); \
1108static DEVICE_ATTR(pwm##offset##_freq, \
1109 (offset == 1 ? S_IRUGO | S_IWUSR : S_IRUGO), \
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001110 show_pwm_freq, (offset == 1 ? set_pwm_freq : NULL)); \
1111static SENSOR_DEVICE_ATTR(pwm##offset##_auto_channels_temp, \
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001112 S_IRUGO | S_IWUSR, show_pwm_temp_map, set_pwm_temp_map, \
1113 offset - 1); \
1114static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point1_pwm, \
1115 S_IRUGO | S_IWUSR, show_auto_pwm, set_auto_pwm, \
1116 offset - 1, 0); \
1117static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point2_pwm, \
1118 S_IRUGO | S_IWUSR, show_auto_pwm, set_auto_pwm, \
1119 offset - 1, 1); \
1120static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point3_pwm, \
1121 S_IRUGO | S_IWUSR, show_auto_pwm, set_auto_pwm, \
1122 offset - 1, 2); \
1123static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point4_pwm, \
1124 S_IRUGO, show_auto_pwm, NULL, offset - 1, 3); \
1125static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point1_temp, \
1126 S_IRUGO | S_IWUSR, show_auto_temp, set_auto_temp, \
1127 offset - 1, 1); \
1128static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point1_temp_hyst, \
1129 S_IRUGO | S_IWUSR, show_auto_temp, set_auto_temp, \
1130 offset - 1, 0); \
1131static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point2_temp, \
1132 S_IRUGO | S_IWUSR, show_auto_temp, set_auto_temp, \
1133 offset - 1, 2); \
1134static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point3_temp, \
1135 S_IRUGO | S_IWUSR, show_auto_temp, set_auto_temp, \
1136 offset - 1, 3); \
1137static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point4_temp, \
1138 S_IRUGO | S_IWUSR, show_auto_temp, set_auto_temp, \
1139 offset - 1, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
1141show_pwm_offset(1);
1142show_pwm_offset(2);
1143show_pwm_offset(3);
1144
Jean Delvare17d648b2006-08-28 14:23:46 +02001145/* A different set of callbacks for 16-bit fans */
1146static ssize_t show_fan16(struct device *dev, struct device_attribute *attr,
1147 char *buf)
1148{
1149 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1150 int nr = sensor_attr->index;
1151 struct it87_data *data = it87_update_device(dev);
1152 return sprintf(buf, "%d\n", FAN16_FROM_REG(data->fan[nr]));
1153}
1154
1155static ssize_t show_fan16_min(struct device *dev, struct device_attribute *attr,
1156 char *buf)
1157{
1158 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1159 int nr = sensor_attr->index;
1160 struct it87_data *data = it87_update_device(dev);
1161 return sprintf(buf, "%d\n", FAN16_FROM_REG(data->fan_min[nr]));
1162}
1163
1164static ssize_t set_fan16_min(struct device *dev, struct device_attribute *attr,
1165 const char *buf, size_t count)
1166{
1167 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1168 int nr = sensor_attr->index;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001169 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001170 long val;
1171
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001172 if (kstrtol(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001173 return -EINVAL;
Jean Delvare17d648b2006-08-28 14:23:46 +02001174
1175 mutex_lock(&data->update_lock);
1176 data->fan_min[nr] = FAN16_TO_REG(val);
Jean Delvarec7f1f712007-09-03 17:11:46 +02001177 it87_write_value(data, IT87_REG_FAN_MIN[nr],
Jean Delvare17d648b2006-08-28 14:23:46 +02001178 data->fan_min[nr] & 0xff);
Jean Delvarec7f1f712007-09-03 17:11:46 +02001179 it87_write_value(data, IT87_REG_FANX_MIN[nr],
Jean Delvare17d648b2006-08-28 14:23:46 +02001180 data->fan_min[nr] >> 8);
1181 mutex_unlock(&data->update_lock);
1182 return count;
1183}
1184
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001185/*
1186 * We want to use the same sysfs file names as 8-bit fans, but we need
1187 * different variable names, so we have to use SENSOR_ATTR instead of
1188 * SENSOR_DEVICE_ATTR.
1189 */
Jean Delvare17d648b2006-08-28 14:23:46 +02001190#define show_fan16_offset(offset) \
1191static struct sensor_device_attribute sensor_dev_attr_fan##offset##_input16 \
1192 = SENSOR_ATTR(fan##offset##_input, S_IRUGO, \
1193 show_fan16, NULL, offset - 1); \
1194static struct sensor_device_attribute sensor_dev_attr_fan##offset##_min16 \
1195 = SENSOR_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
1196 show_fan16_min, set_fan16_min, offset - 1)
1197
1198show_fan16_offset(1);
1199show_fan16_offset(2);
1200show_fan16_offset(3);
Jean Delvarec7f1f712007-09-03 17:11:46 +02001201show_fan16_offset(4);
1202show_fan16_offset(5);
Jean Delvare17d648b2006-08-28 14:23:46 +02001203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204/* Alarms */
Jean Delvare5f2dc792010-03-05 22:17:18 +01001205static ssize_t show_alarms(struct device *dev, struct device_attribute *attr,
1206 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207{
1208 struct it87_data *data = it87_update_device(dev);
Jean Delvare68188ba2005-05-16 18:52:38 +02001209 return sprintf(buf, "%u\n", data->alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210}
Jean Delvare1d66c642005-04-18 21:16:59 -07001211static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
Jean Delvare0124dd72007-11-25 16:16:41 +01001213static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
1214 char *buf)
1215{
1216 int bitnr = to_sensor_dev_attr(attr)->index;
1217 struct it87_data *data = it87_update_device(dev);
1218 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
1219}
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001220
1221static ssize_t clear_intrusion(struct device *dev, struct device_attribute
1222 *attr, const char *buf, size_t count)
1223{
1224 struct it87_data *data = dev_get_drvdata(dev);
1225 long val;
1226 int config;
1227
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001228 if (kstrtol(buf, 10, &val) < 0 || val != 0)
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001229 return -EINVAL;
1230
1231 mutex_lock(&data->update_lock);
1232 config = it87_read_value(data, IT87_REG_CONFIG);
1233 if (config < 0) {
1234 count = config;
1235 } else {
1236 config |= 1 << 5;
1237 it87_write_value(data, IT87_REG_CONFIG, config);
1238 /* Invalidate cache to force re-read */
1239 data->valid = 0;
1240 }
1241 mutex_unlock(&data->update_lock);
1242
1243 return count;
1244}
1245
Jean Delvare0124dd72007-11-25 16:16:41 +01001246static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 8);
1247static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 9);
1248static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 10);
1249static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 11);
1250static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 12);
1251static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 13);
1252static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 14);
1253static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 15);
1254static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 0);
1255static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 1);
1256static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 2);
1257static SENSOR_DEVICE_ATTR(fan4_alarm, S_IRUGO, show_alarm, NULL, 3);
1258static SENSOR_DEVICE_ATTR(fan5_alarm, S_IRUGO, show_alarm, NULL, 6);
1259static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 16);
1260static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 17);
1261static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 18);
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001262static SENSOR_DEVICE_ATTR(intrusion0_alarm, S_IRUGO | S_IWUSR,
1263 show_alarm, clear_intrusion, 4);
Jean Delvare0124dd72007-11-25 16:16:41 +01001264
Jean Delvared9b327c2010-03-05 22:17:17 +01001265static ssize_t show_beep(struct device *dev, struct device_attribute *attr,
1266 char *buf)
1267{
1268 int bitnr = to_sensor_dev_attr(attr)->index;
1269 struct it87_data *data = it87_update_device(dev);
1270 return sprintf(buf, "%u\n", (data->beeps >> bitnr) & 1);
1271}
1272static ssize_t set_beep(struct device *dev, struct device_attribute *attr,
1273 const char *buf, size_t count)
1274{
1275 int bitnr = to_sensor_dev_attr(attr)->index;
1276 struct it87_data *data = dev_get_drvdata(dev);
1277 long val;
1278
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001279 if (kstrtol(buf, 10, &val) < 0
Jean Delvared9b327c2010-03-05 22:17:17 +01001280 || (val != 0 && val != 1))
1281 return -EINVAL;
1282
1283 mutex_lock(&data->update_lock);
1284 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
1285 if (val)
1286 data->beeps |= (1 << bitnr);
1287 else
1288 data->beeps &= ~(1 << bitnr);
1289 it87_write_value(data, IT87_REG_BEEP_ENABLE, data->beeps);
1290 mutex_unlock(&data->update_lock);
1291 return count;
1292}
1293
1294static SENSOR_DEVICE_ATTR(in0_beep, S_IRUGO | S_IWUSR,
1295 show_beep, set_beep, 1);
1296static SENSOR_DEVICE_ATTR(in1_beep, S_IRUGO, show_beep, NULL, 1);
1297static SENSOR_DEVICE_ATTR(in2_beep, S_IRUGO, show_beep, NULL, 1);
1298static SENSOR_DEVICE_ATTR(in3_beep, S_IRUGO, show_beep, NULL, 1);
1299static SENSOR_DEVICE_ATTR(in4_beep, S_IRUGO, show_beep, NULL, 1);
1300static SENSOR_DEVICE_ATTR(in5_beep, S_IRUGO, show_beep, NULL, 1);
1301static SENSOR_DEVICE_ATTR(in6_beep, S_IRUGO, show_beep, NULL, 1);
1302static SENSOR_DEVICE_ATTR(in7_beep, S_IRUGO, show_beep, NULL, 1);
1303/* fanX_beep writability is set later */
1304static SENSOR_DEVICE_ATTR(fan1_beep, S_IRUGO, show_beep, set_beep, 0);
1305static SENSOR_DEVICE_ATTR(fan2_beep, S_IRUGO, show_beep, set_beep, 0);
1306static SENSOR_DEVICE_ATTR(fan3_beep, S_IRUGO, show_beep, set_beep, 0);
1307static SENSOR_DEVICE_ATTR(fan4_beep, S_IRUGO, show_beep, set_beep, 0);
1308static SENSOR_DEVICE_ATTR(fan5_beep, S_IRUGO, show_beep, set_beep, 0);
1309static SENSOR_DEVICE_ATTR(temp1_beep, S_IRUGO | S_IWUSR,
1310 show_beep, set_beep, 2);
1311static SENSOR_DEVICE_ATTR(temp2_beep, S_IRUGO, show_beep, NULL, 2);
1312static SENSOR_DEVICE_ATTR(temp3_beep, S_IRUGO, show_beep, NULL, 2);
1313
Jean Delvare5f2dc792010-03-05 22:17:18 +01001314static ssize_t show_vrm_reg(struct device *dev, struct device_attribute *attr,
1315 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316{
Jean Delvare90d66192007-10-08 18:24:35 +02001317 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvarea7be58a2005-12-18 16:40:14 +01001318 return sprintf(buf, "%u\n", data->vrm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319}
Jean Delvare5f2dc792010-03-05 22:17:18 +01001320static ssize_t store_vrm_reg(struct device *dev, struct device_attribute *attr,
1321 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001323 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001324 unsigned long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001326 if (kstrtoul(buf, 10, &val) < 0)
Jean Delvaref5f64502010-03-05 22:17:19 +01001327 return -EINVAL;
1328
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 data->vrm = val;
1330
1331 return count;
1332}
1333static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm_reg, store_vrm_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
Jean Delvare5f2dc792010-03-05 22:17:18 +01001335static ssize_t show_vid_reg(struct device *dev, struct device_attribute *attr,
1336 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337{
1338 struct it87_data *data = it87_update_device(dev);
1339 return sprintf(buf, "%ld\n", (long) vid_from_reg(data->vid, data->vrm));
1340}
1341static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL);
Jean Delvare87808be2006-09-24 21:17:13 +02001342
Jean Delvare738e5e02010-08-14 21:08:50 +02001343static ssize_t show_label(struct device *dev, struct device_attribute *attr,
1344 char *buf)
1345{
Guenter Roeck3c4c4972012-01-20 09:29:44 -08001346 static const char * const labels[] = {
Jean Delvare738e5e02010-08-14 21:08:50 +02001347 "+5V",
1348 "5VSB",
1349 "Vbat",
1350 };
Guenter Roeck3c4c4972012-01-20 09:29:44 -08001351 static const char * const labels_it8721[] = {
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001352 "+3.3V",
1353 "3VSB",
1354 "Vbat",
1355 };
1356 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvare738e5e02010-08-14 21:08:50 +02001357 int nr = to_sensor_dev_attr(attr)->index;
1358
Jean Delvare16b5dda2012-01-16 22:51:48 +01001359 return sprintf(buf, "%s\n", has_12mv_adc(data) ? labels_it8721[nr]
1360 : labels[nr]);
Jean Delvare738e5e02010-08-14 21:08:50 +02001361}
1362static SENSOR_DEVICE_ATTR(in3_label, S_IRUGO, show_label, NULL, 0);
1363static SENSOR_DEVICE_ATTR(in7_label, S_IRUGO, show_label, NULL, 1);
1364static SENSOR_DEVICE_ATTR(in8_label, S_IRUGO, show_label, NULL, 2);
1365
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001366static ssize_t show_name(struct device *dev, struct device_attribute
1367 *devattr, char *buf)
1368{
1369 struct it87_data *data = dev_get_drvdata(dev);
1370 return sprintf(buf, "%s\n", data->name);
1371}
1372static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
1373
Jean Delvare87808be2006-09-24 21:17:13 +02001374static struct attribute *it87_attributes[] = {
1375 &sensor_dev_attr_in0_input.dev_attr.attr,
1376 &sensor_dev_attr_in1_input.dev_attr.attr,
1377 &sensor_dev_attr_in2_input.dev_attr.attr,
1378 &sensor_dev_attr_in3_input.dev_attr.attr,
1379 &sensor_dev_attr_in4_input.dev_attr.attr,
1380 &sensor_dev_attr_in5_input.dev_attr.attr,
1381 &sensor_dev_attr_in6_input.dev_attr.attr,
1382 &sensor_dev_attr_in7_input.dev_attr.attr,
1383 &sensor_dev_attr_in8_input.dev_attr.attr,
1384 &sensor_dev_attr_in0_min.dev_attr.attr,
1385 &sensor_dev_attr_in1_min.dev_attr.attr,
1386 &sensor_dev_attr_in2_min.dev_attr.attr,
1387 &sensor_dev_attr_in3_min.dev_attr.attr,
1388 &sensor_dev_attr_in4_min.dev_attr.attr,
1389 &sensor_dev_attr_in5_min.dev_attr.attr,
1390 &sensor_dev_attr_in6_min.dev_attr.attr,
1391 &sensor_dev_attr_in7_min.dev_attr.attr,
1392 &sensor_dev_attr_in0_max.dev_attr.attr,
1393 &sensor_dev_attr_in1_max.dev_attr.attr,
1394 &sensor_dev_attr_in2_max.dev_attr.attr,
1395 &sensor_dev_attr_in3_max.dev_attr.attr,
1396 &sensor_dev_attr_in4_max.dev_attr.attr,
1397 &sensor_dev_attr_in5_max.dev_attr.attr,
1398 &sensor_dev_attr_in6_max.dev_attr.attr,
1399 &sensor_dev_attr_in7_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001400 &sensor_dev_attr_in0_alarm.dev_attr.attr,
1401 &sensor_dev_attr_in1_alarm.dev_attr.attr,
1402 &sensor_dev_attr_in2_alarm.dev_attr.attr,
1403 &sensor_dev_attr_in3_alarm.dev_attr.attr,
1404 &sensor_dev_attr_in4_alarm.dev_attr.attr,
1405 &sensor_dev_attr_in5_alarm.dev_attr.attr,
1406 &sensor_dev_attr_in6_alarm.dev_attr.attr,
1407 &sensor_dev_attr_in7_alarm.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001408
1409 &sensor_dev_attr_temp1_input.dev_attr.attr,
1410 &sensor_dev_attr_temp2_input.dev_attr.attr,
1411 &sensor_dev_attr_temp3_input.dev_attr.attr,
1412 &sensor_dev_attr_temp1_max.dev_attr.attr,
1413 &sensor_dev_attr_temp2_max.dev_attr.attr,
1414 &sensor_dev_attr_temp3_max.dev_attr.attr,
1415 &sensor_dev_attr_temp1_min.dev_attr.attr,
1416 &sensor_dev_attr_temp2_min.dev_attr.attr,
1417 &sensor_dev_attr_temp3_min.dev_attr.attr,
1418 &sensor_dev_attr_temp1_type.dev_attr.attr,
1419 &sensor_dev_attr_temp2_type.dev_attr.attr,
1420 &sensor_dev_attr_temp3_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001421 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
1422 &sensor_dev_attr_temp2_alarm.dev_attr.attr,
1423 &sensor_dev_attr_temp3_alarm.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001424
1425 &dev_attr_alarms.attr,
Jean Delvare3d30f9e2011-07-25 21:46:10 +02001426 &sensor_dev_attr_intrusion0_alarm.dev_attr.attr,
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001427 &dev_attr_name.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001428 NULL
1429};
1430
1431static const struct attribute_group it87_group = {
1432 .attrs = it87_attributes,
1433};
1434
Jean Delvared9b327c2010-03-05 22:17:17 +01001435static struct attribute *it87_attributes_beep[] = {
1436 &sensor_dev_attr_in0_beep.dev_attr.attr,
1437 &sensor_dev_attr_in1_beep.dev_attr.attr,
1438 &sensor_dev_attr_in2_beep.dev_attr.attr,
1439 &sensor_dev_attr_in3_beep.dev_attr.attr,
1440 &sensor_dev_attr_in4_beep.dev_attr.attr,
1441 &sensor_dev_attr_in5_beep.dev_attr.attr,
1442 &sensor_dev_attr_in6_beep.dev_attr.attr,
1443 &sensor_dev_attr_in7_beep.dev_attr.attr,
1444
1445 &sensor_dev_attr_temp1_beep.dev_attr.attr,
1446 &sensor_dev_attr_temp2_beep.dev_attr.attr,
1447 &sensor_dev_attr_temp3_beep.dev_attr.attr,
1448 NULL
1449};
1450
1451static const struct attribute_group it87_group_beep = {
1452 .attrs = it87_attributes_beep,
1453};
1454
Jean Delvare723a0aa2010-03-05 22:17:16 +01001455static struct attribute *it87_attributes_fan16[5][3+1] = { {
Jean Delvare87808be2006-09-24 21:17:13 +02001456 &sensor_dev_attr_fan1_input16.dev_attr.attr,
1457 &sensor_dev_attr_fan1_min16.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001458 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
1459 NULL
1460}, {
Jean Delvare87808be2006-09-24 21:17:13 +02001461 &sensor_dev_attr_fan2_input16.dev_attr.attr,
1462 &sensor_dev_attr_fan2_min16.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001463 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
1464 NULL
1465}, {
Jean Delvare87808be2006-09-24 21:17:13 +02001466 &sensor_dev_attr_fan3_input16.dev_attr.attr,
1467 &sensor_dev_attr_fan3_min16.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001468 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
1469 NULL
1470}, {
Jean Delvarec7f1f712007-09-03 17:11:46 +02001471 &sensor_dev_attr_fan4_input16.dev_attr.attr,
1472 &sensor_dev_attr_fan4_min16.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001473 &sensor_dev_attr_fan4_alarm.dev_attr.attr,
1474 NULL
1475}, {
Jean Delvarec7f1f712007-09-03 17:11:46 +02001476 &sensor_dev_attr_fan5_input16.dev_attr.attr,
1477 &sensor_dev_attr_fan5_min16.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001478 &sensor_dev_attr_fan5_alarm.dev_attr.attr,
1479 NULL
1480} };
Jean Delvare87808be2006-09-24 21:17:13 +02001481
Jean Delvare723a0aa2010-03-05 22:17:16 +01001482static const struct attribute_group it87_group_fan16[5] = {
1483 { .attrs = it87_attributes_fan16[0] },
1484 { .attrs = it87_attributes_fan16[1] },
1485 { .attrs = it87_attributes_fan16[2] },
1486 { .attrs = it87_attributes_fan16[3] },
1487 { .attrs = it87_attributes_fan16[4] },
1488};
1489
1490static struct attribute *it87_attributes_fan[3][4+1] = { {
Jean Delvare87808be2006-09-24 21:17:13 +02001491 &sensor_dev_attr_fan1_input.dev_attr.attr,
1492 &sensor_dev_attr_fan1_min.dev_attr.attr,
1493 &sensor_dev_attr_fan1_div.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_input.dev_attr.attr,
1498 &sensor_dev_attr_fan2_min.dev_attr.attr,
1499 &sensor_dev_attr_fan2_div.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001500 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
1501 NULL
1502}, {
Jean Delvare87808be2006-09-24 21:17:13 +02001503 &sensor_dev_attr_fan3_input.dev_attr.attr,
1504 &sensor_dev_attr_fan3_min.dev_attr.attr,
1505 &sensor_dev_attr_fan3_div.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001506 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001507 NULL
1508} };
Jean Delvare0124dd72007-11-25 16:16:41 +01001509
Jean Delvare723a0aa2010-03-05 22:17:16 +01001510static const struct attribute_group it87_group_fan[3] = {
1511 { .attrs = it87_attributes_fan[0] },
1512 { .attrs = it87_attributes_fan[1] },
1513 { .attrs = it87_attributes_fan[2] },
1514};
1515
1516static const struct attribute_group *
1517it87_get_fan_group(const struct it87_data *data)
1518{
1519 return has_16bit_fans(data) ? it87_group_fan16 : it87_group_fan;
1520}
1521
1522static struct attribute *it87_attributes_pwm[3][4+1] = { {
Jean Delvare87808be2006-09-24 21:17:13 +02001523 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001524 &sensor_dev_attr_pwm1.dev_attr.attr,
Jean Delvared5b0b5d2007-12-14 14:41:53 +01001525 &dev_attr_pwm1_freq.attr,
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001526 &sensor_dev_attr_pwm1_auto_channels_temp.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001527 NULL
1528}, {
1529 &sensor_dev_attr_pwm2_enable.dev_attr.attr,
1530 &sensor_dev_attr_pwm2.dev_attr.attr,
1531 &dev_attr_pwm2_freq.attr,
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001532 &sensor_dev_attr_pwm2_auto_channels_temp.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001533 NULL
1534}, {
1535 &sensor_dev_attr_pwm3_enable.dev_attr.attr,
1536 &sensor_dev_attr_pwm3.dev_attr.attr,
1537 &dev_attr_pwm3_freq.attr,
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001538 &sensor_dev_attr_pwm3_auto_channels_temp.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001539 NULL
1540} };
Jean Delvare87808be2006-09-24 21:17:13 +02001541
Jean Delvare723a0aa2010-03-05 22:17:16 +01001542static const struct attribute_group it87_group_pwm[3] = {
1543 { .attrs = it87_attributes_pwm[0] },
1544 { .attrs = it87_attributes_pwm[1] },
1545 { .attrs = it87_attributes_pwm[2] },
1546};
1547
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001548static struct attribute *it87_attributes_autopwm[3][9+1] = { {
1549 &sensor_dev_attr_pwm1_auto_point1_pwm.dev_attr.attr,
1550 &sensor_dev_attr_pwm1_auto_point2_pwm.dev_attr.attr,
1551 &sensor_dev_attr_pwm1_auto_point3_pwm.dev_attr.attr,
1552 &sensor_dev_attr_pwm1_auto_point4_pwm.dev_attr.attr,
1553 &sensor_dev_attr_pwm1_auto_point1_temp.dev_attr.attr,
1554 &sensor_dev_attr_pwm1_auto_point1_temp_hyst.dev_attr.attr,
1555 &sensor_dev_attr_pwm1_auto_point2_temp.dev_attr.attr,
1556 &sensor_dev_attr_pwm1_auto_point3_temp.dev_attr.attr,
1557 &sensor_dev_attr_pwm1_auto_point4_temp.dev_attr.attr,
1558 NULL
1559}, {
1560 &sensor_dev_attr_pwm2_auto_point1_pwm.dev_attr.attr,
1561 &sensor_dev_attr_pwm2_auto_point2_pwm.dev_attr.attr,
1562 &sensor_dev_attr_pwm2_auto_point3_pwm.dev_attr.attr,
1563 &sensor_dev_attr_pwm2_auto_point4_pwm.dev_attr.attr,
1564 &sensor_dev_attr_pwm2_auto_point1_temp.dev_attr.attr,
1565 &sensor_dev_attr_pwm2_auto_point1_temp_hyst.dev_attr.attr,
1566 &sensor_dev_attr_pwm2_auto_point2_temp.dev_attr.attr,
1567 &sensor_dev_attr_pwm2_auto_point3_temp.dev_attr.attr,
1568 &sensor_dev_attr_pwm2_auto_point4_temp.dev_attr.attr,
1569 NULL
1570}, {
1571 &sensor_dev_attr_pwm3_auto_point1_pwm.dev_attr.attr,
1572 &sensor_dev_attr_pwm3_auto_point2_pwm.dev_attr.attr,
1573 &sensor_dev_attr_pwm3_auto_point3_pwm.dev_attr.attr,
1574 &sensor_dev_attr_pwm3_auto_point4_pwm.dev_attr.attr,
1575 &sensor_dev_attr_pwm3_auto_point1_temp.dev_attr.attr,
1576 &sensor_dev_attr_pwm3_auto_point1_temp_hyst.dev_attr.attr,
1577 &sensor_dev_attr_pwm3_auto_point2_temp.dev_attr.attr,
1578 &sensor_dev_attr_pwm3_auto_point3_temp.dev_attr.attr,
1579 &sensor_dev_attr_pwm3_auto_point4_temp.dev_attr.attr,
1580 NULL
1581} };
1582
1583static const struct attribute_group it87_group_autopwm[3] = {
1584 { .attrs = it87_attributes_autopwm[0] },
1585 { .attrs = it87_attributes_autopwm[1] },
1586 { .attrs = it87_attributes_autopwm[2] },
1587};
1588
Jean Delvared9b327c2010-03-05 22:17:17 +01001589static struct attribute *it87_attributes_fan_beep[] = {
1590 &sensor_dev_attr_fan1_beep.dev_attr.attr,
1591 &sensor_dev_attr_fan2_beep.dev_attr.attr,
1592 &sensor_dev_attr_fan3_beep.dev_attr.attr,
1593 &sensor_dev_attr_fan4_beep.dev_attr.attr,
1594 &sensor_dev_attr_fan5_beep.dev_attr.attr,
1595};
1596
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01001597static struct attribute *it87_attributes_vid[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02001598 &dev_attr_vrm.attr,
1599 &dev_attr_cpu0_vid.attr,
1600 NULL
1601};
1602
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01001603static const struct attribute_group it87_group_vid = {
1604 .attrs = it87_attributes_vid,
Jean Delvare87808be2006-09-24 21:17:13 +02001605};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
Jean Delvare738e5e02010-08-14 21:08:50 +02001607static struct attribute *it87_attributes_label[] = {
1608 &sensor_dev_attr_in3_label.dev_attr.attr,
1609 &sensor_dev_attr_in7_label.dev_attr.attr,
1610 &sensor_dev_attr_in8_label.dev_attr.attr,
1611 NULL
1612};
1613
1614static const struct attribute_group it87_group_label = {
Jean Delvarefa8b6972011-07-17 18:39:19 +02001615 .attrs = it87_attributes_label,
Jean Delvare738e5e02010-08-14 21:08:50 +02001616};
1617
Jean Delvare2d8672c2005-07-19 23:56:35 +02001618/* SuperIO detection - will change isa_address if a chip is found */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001619static int __init it87_find(unsigned short *address,
1620 struct it87_sio_data *sio_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621{
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +02001622 int err;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001623 u16 chip_type;
Jean Delvare98dd22c2008-10-09 15:33:58 +02001624 const char *board_vendor, *board_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Nat Gurumoorthy5b0380c2011-05-25 20:43:33 +02001626 err = superio_enter();
1627 if (err)
1628 return err;
1629
1630 err = -ENODEV;
Jean Delvare67b671b2007-12-06 23:13:42 +01001631 chip_type = force_id ? force_id : superio_inw(DEVID);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001632
1633 switch (chip_type) {
1634 case IT8705F_DEVID:
1635 sio_data->type = it87;
1636 break;
1637 case IT8712F_DEVID:
1638 sio_data->type = it8712;
1639 break;
1640 case IT8716F_DEVID:
1641 case IT8726F_DEVID:
1642 sio_data->type = it8716;
1643 break;
1644 case IT8718F_DEVID:
1645 sio_data->type = it8718;
1646 break;
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +01001647 case IT8720F_DEVID:
1648 sio_data->type = it8720;
1649 break;
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001650 case IT8721F_DEVID:
1651 sio_data->type = it8721;
1652 break;
Jean Delvare16b5dda2012-01-16 22:51:48 +01001653 case IT8728F_DEVID:
1654 sio_data->type = it8728;
1655 break;
Guenter Roeck0531d982012-03-02 11:46:44 -08001656 case IT8782F_DEVID:
1657 sio_data->type = it8782;
1658 break;
1659 case IT8783E_DEVID:
1660 sio_data->type = it8783;
1661 break;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001662 case 0xffff: /* No device at all */
1663 goto exit;
1664 default:
Joe Perchesa8ca1032011-01-12 21:55:10 +01001665 pr_debug("Unsupported chip (DEVID=0x%x)\n", chip_type);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001666 goto exit;
1667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
Jean Delvare87673dd2006-08-28 14:37:19 +02001669 superio_select(PME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 if (!(superio_inb(IT87_ACT_REG) & 0x01)) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01001671 pr_info("Device not activated, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 goto exit;
1673 }
1674
1675 *address = superio_inw(IT87_BASE_REG) & ~(IT87_EXTENT - 1);
1676 if (*address == 0) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01001677 pr_info("Base address not set, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 goto exit;
1679 }
1680
1681 err = 0;
Andrew Paprocki04751692008-08-06 22:41:06 +02001682 sio_data->revision = superio_inb(DEVREV) & 0x0f;
Joe Perchesa8ca1032011-01-12 21:55:10 +01001683 pr_info("Found IT%04xF chip at 0x%x, revision %d\n",
Andrew Paprocki04751692008-08-06 22:41:06 +02001684 chip_type, *address, sio_data->revision);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
Jean Delvare738e5e02010-08-14 21:08:50 +02001686 /* in8 (Vbat) is always internal */
1687 sio_data->internal = (1 << 2);
1688
Jean Delvare87673dd2006-08-28 14:37:19 +02001689 /* Read GPIO config and VID value from LDN 7 (GPIO) */
Jean Delvare895ff262009-12-09 20:35:47 +01001690 if (sio_data->type == it87) {
1691 /* The IT8705F doesn't have VID pins at all */
1692 sio_data->skip_vid = 1;
Jean Delvared9b327c2010-03-05 22:17:17 +01001693
1694 /* The IT8705F has a different LD number for GPIO */
1695 superio_select(5);
1696 sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f;
Guenter Roeck0531d982012-03-02 11:46:44 -08001697 } else if (sio_data->type == it8783) {
1698 int reg25, reg27, reg2A, reg2C, regEF;
1699 bool uart6;
1700
1701 sio_data->skip_vid = 1; /* No VID */
1702
1703 superio_select(GPIO);
1704
1705 reg25 = superio_inb(IT87_SIO_GPIO1_REG);
1706 reg27 = superio_inb(IT87_SIO_GPIO3_REG);
1707 reg2A = superio_inb(IT87_SIO_PINX1_REG);
1708 reg2C = superio_inb(IT87_SIO_PINX2_REG);
1709 regEF = superio_inb(IT87_SIO_SPI_REG);
1710
1711 uart6 = reg2C & (1 << 2);
1712
1713 /* Check if fan3 is there or not */
1714 if ((reg27 & (1 << 0)) || !uart6)
1715 sio_data->skip_fan |= (1 << 2);
1716 if ((reg25 & (1 << 4))
1717 || (!(reg2A & (1 << 1)) && (regEF & (1 << 0))))
1718 sio_data->skip_pwm |= (1 << 2);
1719
1720 /* Check if fan2 is there or not */
1721 if (reg27 & (1 << 7))
1722 sio_data->skip_fan |= (1 << 1);
1723 if (reg27 & (1 << 3))
1724 sio_data->skip_pwm |= (1 << 1);
1725
1726 /* VIN5 */
1727 if ((reg27 & (1 << 0)) || uart6)
1728 ; /* No VIN5 */
1729
1730 /* VIN6 */
1731 if ((reg27 & (1 << 1)) || uart6)
1732 ; /* No VIN6 */
1733
1734 /*
1735 * VIN7
1736 * Does not depend on bit 2 of Reg2C, contrary to datasheet.
1737 */
1738 if (reg27 & (1 << 2))
1739 ; /* No VIN7 (unless internal) */
1740
1741 if (reg2C & (1 << 0))
1742 sio_data->internal |= (1 << 0);
1743 if (reg2C & (1 << 1))
1744 sio_data->internal |= (1 << 1);
1745
1746 sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f;
1747
Jean Delvare895ff262009-12-09 20:35:47 +01001748 } else {
Jean Delvare87673dd2006-08-28 14:37:19 +02001749 int reg;
1750
1751 superio_select(GPIO);
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001752
Jean Delvare895ff262009-12-09 20:35:47 +01001753 reg = superio_inb(IT87_SIO_GPIO3_REG);
Guenter Roeck0531d982012-03-02 11:46:44 -08001754 if (sio_data->type == it8721 || sio_data->type == it8728 ||
1755 sio_data->type == it8782) {
Jean Delvare16b5dda2012-01-16 22:51:48 +01001756 /*
Guenter Roeck0531d982012-03-02 11:46:44 -08001757 * IT8721F/IT8758E, and IT8782F don't have VID pins
1758 * at all, not sure about the IT8728F.
Jean Delvare16b5dda2012-01-16 22:51:48 +01001759 */
Jean Delvare895ff262009-12-09 20:35:47 +01001760 sio_data->skip_vid = 1;
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001761 } else {
1762 /* We need at least 4 VID pins */
1763 if (reg & 0x0f) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01001764 pr_info("VID is disabled (pins used for GPIO)\n");
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001765 sio_data->skip_vid = 1;
1766 }
Jean Delvare895ff262009-12-09 20:35:47 +01001767 }
1768
Jean Delvare591ec652009-12-09 20:35:48 +01001769 /* Check if fan3 is there or not */
1770 if (reg & (1 << 6))
1771 sio_data->skip_pwm |= (1 << 2);
1772 if (reg & (1 << 7))
1773 sio_data->skip_fan |= (1 << 2);
1774
1775 /* Check if fan2 is there or not */
1776 reg = superio_inb(IT87_SIO_GPIO5_REG);
1777 if (reg & (1 << 1))
1778 sio_data->skip_pwm |= (1 << 1);
1779 if (reg & (1 << 2))
1780 sio_data->skip_fan |= (1 << 1);
1781
Jean Delvare895ff262009-12-09 20:35:47 +01001782 if ((sio_data->type == it8718 || sio_data->type == it8720)
1783 && !(sio_data->skip_vid))
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001784 sio_data->vid_value = superio_inb(IT87_SIO_VID_REG);
Jean Delvare87673dd2006-08-28 14:37:19 +02001785
1786 reg = superio_inb(IT87_SIO_PINX2_REG);
Jean Delvare436cad22010-07-09 16:22:48 +02001787 /*
1788 * The IT8720F has no VIN7 pin, so VCCH should always be
1789 * routed internally to VIN7 with an internal divider.
1790 * Curiously, there still is a configuration bit to control
1791 * this, which means it can be set incorrectly. And even
1792 * more curiously, many boards out there are improperly
1793 * configured, even though the IT8720F datasheet claims
1794 * that the internal routing of VCCH to VIN7 is the default
1795 * setting. So we force the internal routing in this case.
Guenter Roeck0531d982012-03-02 11:46:44 -08001796 *
1797 * On IT8782F, VIN7 is multiplexed with one of the UART6 pins.
1798 * If UART6 is enabled, re-route VIN7 to the internal divider.
Jean Delvare436cad22010-07-09 16:22:48 +02001799 */
Guenter Roeck0531d982012-03-02 11:46:44 -08001800 if ((sio_data->type == it8720 ||
1801 (sio_data->type == it8782 && (reg & (1 << 2))))
1802 && !(reg & (1 << 1))) {
Jean Delvare436cad22010-07-09 16:22:48 +02001803 reg |= (1 << 1);
1804 superio_outb(IT87_SIO_PINX2_REG, reg);
Joe Perchesa8ca1032011-01-12 21:55:10 +01001805 pr_notice("Routing internal VCCH to in7\n");
Jean Delvare436cad22010-07-09 16:22:48 +02001806 }
Jean Delvare87673dd2006-08-28 14:37:19 +02001807 if (reg & (1 << 0))
Jean Delvare738e5e02010-08-14 21:08:50 +02001808 sio_data->internal |= (1 << 0);
Jean Delvare16b5dda2012-01-16 22:51:48 +01001809 if ((reg & (1 << 1)) || sio_data->type == it8721 ||
1810 sio_data->type == it8728)
Jean Delvare738e5e02010-08-14 21:08:50 +02001811 sio_data->internal |= (1 << 1);
Jean Delvared9b327c2010-03-05 22:17:17 +01001812
1813 sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f;
Jean Delvare87673dd2006-08-28 14:37:19 +02001814 }
Jean Delvared9b327c2010-03-05 22:17:17 +01001815 if (sio_data->beep_pin)
Joe Perchesa8ca1032011-01-12 21:55:10 +01001816 pr_info("Beeping is supported\n");
Jean Delvare87673dd2006-08-28 14:37:19 +02001817
Jean Delvare98dd22c2008-10-09 15:33:58 +02001818 /* Disable specific features based on DMI strings */
1819 board_vendor = dmi_get_system_info(DMI_BOARD_VENDOR);
1820 board_name = dmi_get_system_info(DMI_BOARD_NAME);
1821 if (board_vendor && board_name) {
1822 if (strcmp(board_vendor, "nVIDIA") == 0
1823 && strcmp(board_name, "FN68PT") == 0) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001824 /*
1825 * On the Shuttle SN68PT, FAN_CTL2 is apparently not
1826 * connected to a fan, but to something else. One user
1827 * has reported instant system power-off when changing
1828 * the PWM2 duty cycle, so we disable it.
1829 * I use the board name string as the trigger in case
1830 * the same board is ever used in other systems.
1831 */
Joe Perchesa8ca1032011-01-12 21:55:10 +01001832 pr_info("Disabling pwm2 due to hardware constraints\n");
Jean Delvare98dd22c2008-10-09 15:33:58 +02001833 sio_data->skip_pwm = (1 << 1);
1834 }
1835 }
1836
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837exit:
1838 superio_exit();
1839 return err;
1840}
1841
Jean Delvare723a0aa2010-03-05 22:17:16 +01001842static void it87_remove_files(struct device *dev)
1843{
1844 struct it87_data *data = platform_get_drvdata(pdev);
1845 struct it87_sio_data *sio_data = dev->platform_data;
1846 const struct attribute_group *fan_group = it87_get_fan_group(data);
1847 int i;
1848
1849 sysfs_remove_group(&dev->kobj, &it87_group);
Jean Delvared9b327c2010-03-05 22:17:17 +01001850 if (sio_data->beep_pin)
1851 sysfs_remove_group(&dev->kobj, &it87_group_beep);
Jean Delvare723a0aa2010-03-05 22:17:16 +01001852 for (i = 0; i < 5; i++) {
1853 if (!(data->has_fan & (1 << i)))
1854 continue;
1855 sysfs_remove_group(&dev->kobj, &fan_group[i]);
Jean Delvared9b327c2010-03-05 22:17:17 +01001856 if (sio_data->beep_pin)
1857 sysfs_remove_file(&dev->kobj,
1858 it87_attributes_fan_beep[i]);
Jean Delvare723a0aa2010-03-05 22:17:16 +01001859 }
1860 for (i = 0; i < 3; i++) {
1861 if (sio_data->skip_pwm & (1 << 0))
1862 continue;
1863 sysfs_remove_group(&dev->kobj, &it87_group_pwm[i]);
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001864 if (has_old_autopwm(data))
1865 sysfs_remove_group(&dev->kobj,
1866 &it87_group_autopwm[i]);
Jean Delvare723a0aa2010-03-05 22:17:16 +01001867 }
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01001868 if (!sio_data->skip_vid)
1869 sysfs_remove_group(&dev->kobj, &it87_group_vid);
Jean Delvare738e5e02010-08-14 21:08:50 +02001870 sysfs_remove_group(&dev->kobj, &it87_group_label);
Jean Delvare723a0aa2010-03-05 22:17:16 +01001871}
1872
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001873static int __devinit it87_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 struct it87_data *data;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001876 struct resource *res;
1877 struct device *dev = &pdev->dev;
1878 struct it87_sio_data *sio_data = dev->platform_data;
Jean Delvare723a0aa2010-03-05 22:17:16 +01001879 const struct attribute_group *fan_group;
1880 int err = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 int enable_pwm_interface;
Jean Delvared9b327c2010-03-05 22:17:17 +01001882 int fan_beep_need_rw;
Guenter Roeck3c4c4972012-01-20 09:29:44 -08001883 static const char * const names[] = {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001884 "it87",
1885 "it8712",
1886 "it8716",
1887 "it8718",
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +01001888 "it8720",
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001889 "it8721",
Jean Delvare16b5dda2012-01-16 22:51:48 +01001890 "it8728",
Guenter Roeck0531d982012-03-02 11:46:44 -08001891 "it8782",
1892 "it8783",
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001893 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001895 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05001896 if (!request_region(res->start, IT87_EC_EXTENT, DRVNAME)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001897 dev_err(dev, "Failed to request region 0x%lx-0x%lx\n",
1898 (unsigned long)res->start,
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05001899 (unsigned long)(res->start + IT87_EC_EXTENT - 1));
Jean Delvare8e9afcb2006-12-12 18:18:28 +01001900 err = -EBUSY;
1901 goto ERROR0;
1902 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Jean Delvare5f2dc792010-03-05 22:17:18 +01001904 data = kzalloc(sizeof(struct it87_data), GFP_KERNEL);
1905 if (!data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 err = -ENOMEM;
1907 goto ERROR1;
1908 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001910 data->addr = res->start;
1911 data->type = sio_data->type;
Andrew Paprocki04751692008-08-06 22:41:06 +02001912 data->revision = sio_data->revision;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001913 data->name = names[sio_data->type];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
1915 /* Now, we do the remaining detection. */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001916 if ((it87_read_value(data, IT87_REG_CONFIG) & 0x80)
1917 || it87_read_value(data, IT87_REG_CHIPID) != 0x90) {
Jean Delvare8e9afcb2006-12-12 18:18:28 +01001918 err = -ENODEV;
1919 goto ERROR2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 }
1921
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001922 platform_set_drvdata(pdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001924 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 /* Check PWM configuration */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001927 enable_pwm_interface = it87_check_pwm(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001929 /* Starting with IT8721F, we handle scaling of internal voltages */
Jean Delvare16b5dda2012-01-16 22:51:48 +01001930 if (has_12mv_adc(data)) {
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001931 if (sio_data->internal & (1 << 0))
1932 data->in_scaled |= (1 << 3); /* in3 is AVCC */
1933 if (sio_data->internal & (1 << 1))
1934 data->in_scaled |= (1 << 7); /* in7 is VSB */
1935 if (sio_data->internal & (1 << 2))
1936 data->in_scaled |= (1 << 8); /* in8 is Vbat */
Guenter Roeck0531d982012-03-02 11:46:44 -08001937 } else if (sio_data->type == it8782 || sio_data->type == it8783) {
1938 if (sio_data->internal & (1 << 0))
1939 data->in_scaled |= (1 << 3); /* in3 is VCC5V */
1940 if (sio_data->internal & (1 << 1))
1941 data->in_scaled |= (1 << 7); /* in7 is VCCH5V */
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001942 }
1943
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 /* Initialize the IT87 chip */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001945 it87_init_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
1947 /* Register sysfs hooks */
Jean Delvare5f2dc792010-03-05 22:17:18 +01001948 err = sysfs_create_group(&dev->kobj, &it87_group);
1949 if (err)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001950 goto ERROR2;
Jean Delvare17d648b2006-08-28 14:23:46 +02001951
Jean Delvared9b327c2010-03-05 22:17:17 +01001952 if (sio_data->beep_pin) {
1953 err = sysfs_create_group(&dev->kobj, &it87_group_beep);
1954 if (err)
1955 goto ERROR4;
1956 }
1957
Jean Delvare9060f8b2006-08-28 14:24:17 +02001958 /* Do not create fan files for disabled fans */
Jean Delvare723a0aa2010-03-05 22:17:16 +01001959 fan_group = it87_get_fan_group(data);
Jean Delvared9b327c2010-03-05 22:17:17 +01001960 fan_beep_need_rw = 1;
Jean Delvare723a0aa2010-03-05 22:17:16 +01001961 for (i = 0; i < 5; i++) {
1962 if (!(data->has_fan & (1 << i)))
1963 continue;
1964 err = sysfs_create_group(&dev->kobj, &fan_group[i]);
1965 if (err)
1966 goto ERROR4;
Jean Delvared9b327c2010-03-05 22:17:17 +01001967
1968 if (sio_data->beep_pin) {
1969 err = sysfs_create_file(&dev->kobj,
1970 it87_attributes_fan_beep[i]);
1971 if (err)
1972 goto ERROR4;
1973 if (!fan_beep_need_rw)
1974 continue;
1975
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001976 /*
1977 * As we have a single beep enable bit for all fans,
Jean Delvared9b327c2010-03-05 22:17:17 +01001978 * only the first enabled fan has a writable attribute
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08001979 * for it.
1980 */
Jean Delvared9b327c2010-03-05 22:17:17 +01001981 if (sysfs_chmod_file(&dev->kobj,
1982 it87_attributes_fan_beep[i],
1983 S_IRUGO | S_IWUSR))
1984 dev_dbg(dev, "chmod +w fan%d_beep failed\n",
1985 i + 1);
1986 fan_beep_need_rw = 0;
1987 }
Jean Delvare17d648b2006-08-28 14:23:46 +02001988 }
1989
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 if (enable_pwm_interface) {
Jean Delvare723a0aa2010-03-05 22:17:16 +01001991 for (i = 0; i < 3; i++) {
1992 if (sio_data->skip_pwm & (1 << i))
1993 continue;
1994 err = sysfs_create_group(&dev->kobj,
1995 &it87_group_pwm[i]);
1996 if (err)
Jean Delvare98dd22c2008-10-09 15:33:58 +02001997 goto ERROR4;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001998
1999 if (!has_old_autopwm(data))
2000 continue;
2001 err = sysfs_create_group(&dev->kobj,
2002 &it87_group_autopwm[i]);
2003 if (err)
2004 goto ERROR4;
Jean Delvare98dd22c2008-10-09 15:33:58 +02002005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 }
2007
Jean Delvare895ff262009-12-09 20:35:47 +01002008 if (!sio_data->skip_vid) {
Jean Delvare303760b2005-07-31 21:52:01 +02002009 data->vrm = vid_which_vrm();
Jean Delvare87673dd2006-08-28 14:37:19 +02002010 /* VID reading from Super-I/O config space if available */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002011 data->vid = sio_data->vid_value;
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01002012 err = sysfs_create_group(&dev->kobj, &it87_group_vid);
2013 if (err)
Jean Delvare87808be2006-09-24 21:17:13 +02002014 goto ERROR4;
2015 }
2016
Jean Delvare738e5e02010-08-14 21:08:50 +02002017 /* Export labels for internal sensors */
2018 for (i = 0; i < 3; i++) {
2019 if (!(sio_data->internal & (1 << i)))
2020 continue;
2021 err = sysfs_create_file(&dev->kobj,
2022 it87_attributes_label[i]);
2023 if (err)
2024 goto ERROR4;
2025 }
2026
Tony Jones1beeffe2007-08-20 13:46:20 -07002027 data->hwmon_dev = hwmon_device_register(dev);
2028 if (IS_ERR(data->hwmon_dev)) {
2029 err = PTR_ERR(data->hwmon_dev);
Jean Delvare87808be2006-09-24 21:17:13 +02002030 goto ERROR4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 }
2032
2033 return 0;
2034
Jean Delvare87808be2006-09-24 21:17:13 +02002035ERROR4:
Jean Delvare723a0aa2010-03-05 22:17:16 +01002036 it87_remove_files(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037ERROR2:
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002038 platform_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 kfree(data);
2040ERROR1:
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05002041 release_region(res->start, IT87_EC_EXTENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042ERROR0:
2043 return err;
2044}
2045
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002046static int __devexit it87_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002048 struct it87_data *data = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
Tony Jones1beeffe2007-08-20 13:46:20 -07002050 hwmon_device_unregister(data->hwmon_dev);
Jean Delvare723a0aa2010-03-05 22:17:16 +01002051 it87_remove_files(&pdev->dev);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04002052
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05002053 release_region(data->addr, IT87_EC_EXTENT);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002054 platform_set_drvdata(pdev, NULL);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04002055 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
2057 return 0;
2058}
2059
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002060/*
2061 * Must be called with data->update_lock held, except during initialization.
2062 * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
2063 * would slow down the IT87 access and should not be necessary.
2064 */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002065static int it87_read_value(struct it87_data *data, u8 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002067 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
2068 return inb_p(data->addr + IT87_DATA_REG_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069}
2070
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002071/*
2072 * Must be called with data->update_lock held, except during initialization.
2073 * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
2074 * would slow down the IT87 access and should not be necessary.
2075 */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002076static void it87_write_value(struct it87_data *data, u8 reg, u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002078 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
2079 outb_p(value, data->addr + IT87_DATA_REG_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080}
2081
2082/* Return 1 if and only if the PWM interface is safe to use */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002083static int __devinit it87_check_pwm(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002085 struct it87_data *data = dev_get_drvdata(dev);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002086 /*
2087 * Some BIOSes fail to correctly configure the IT87 fans. All fans off
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 * and polarity set to active low is sign that this is the case so we
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002089 * disable pwm control to protect the user.
2090 */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002091 int tmp = it87_read_value(data, IT87_REG_FAN_CTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 if ((tmp & 0x87) == 0) {
2093 if (fix_pwm_polarity) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002094 /*
2095 * The user asks us to attempt a chip reconfiguration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 * This means switching to active high polarity and
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002097 * inverting all fan speed values.
2098 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 int i;
2100 u8 pwm[3];
2101
2102 for (i = 0; i < 3; i++)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002103 pwm[i] = it87_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 IT87_REG_PWM(i));
2105
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002106 /*
2107 * If any fan is in automatic pwm mode, the polarity
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 * might be correct, as suspicious as it seems, so we
2109 * better don't change anything (but still disable the
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002110 * PWM interface).
2111 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 if (!((pwm[0] | pwm[1] | pwm[2]) & 0x80)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002113 dev_info(dev, "Reconfiguring PWM to "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 "active high polarity\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002115 it87_write_value(data, IT87_REG_FAN_CTL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 tmp | 0x87);
2117 for (i = 0; i < 3; i++)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002118 it87_write_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 IT87_REG_PWM(i),
2120 0x7f & ~pwm[i]);
2121 return 1;
2122 }
2123
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002124 dev_info(dev, "PWM configuration is "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 "too broken to be fixed\n");
2126 }
2127
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002128 dev_info(dev, "Detected broken BIOS "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 "defaults, disabling PWM interface\n");
2130 return 0;
2131 } else if (fix_pwm_polarity) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002132 dev_info(dev, "PWM configuration looks "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 "sane, won't touch\n");
2134 }
2135
2136 return 1;
2137}
2138
2139/* Called when we have found a new IT87. */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002140static void __devinit it87_init_device(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141{
Jean Delvare591ec652009-12-09 20:35:48 +01002142 struct it87_sio_data *sio_data = pdev->dev.platform_data;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002143 struct it87_data *data = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 int tmp, i;
Jean Delvare591ec652009-12-09 20:35:48 +01002145 u8 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002147 /*
2148 * For each PWM channel:
Jean Delvareb99883d2010-03-05 22:17:15 +01002149 * - If it is in automatic mode, setting to manual mode should set
2150 * the fan to full speed by default.
2151 * - If it is in manual mode, we need a mapping to temperature
2152 * channels to use when later setting to automatic mode later.
2153 * Use a 1:1 mapping by default (we are clueless.)
2154 * In both cases, the value can (and should) be changed by the user
Jean Delvare6229cdb2010-12-08 16:27:22 +01002155 * prior to switching to a different mode.
2156 * Note that this is no longer needed for the IT8721F and later, as
2157 * these have separate registers for the temperature mapping and the
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002158 * manual duty cycle.
2159 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 for (i = 0; i < 3; i++) {
Jean Delvareb99883d2010-03-05 22:17:15 +01002161 data->pwm_temp_map[i] = i;
2162 data->pwm_duty[i] = 0x7f; /* Full speed */
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002163 data->auto_pwm[i][3] = 0x7f; /* Full speed, hard-coded */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 }
2165
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002166 /*
2167 * Some chips seem to have default value 0xff for all limit
Jean Delvarec5df9b72006-08-28 14:37:54 +02002168 * registers. For low voltage limits it makes no sense and triggers
2169 * alarms, so change to 0 instead. For high temperature limits, it
2170 * means -1 degree C, which surprisingly doesn't trigger an alarm,
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002171 * but is still confusing, so change to 127 degrees C.
2172 */
Jean Delvarec5df9b72006-08-28 14:37:54 +02002173 for (i = 0; i < 8; i++) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002174 tmp = it87_read_value(data, IT87_REG_VIN_MIN(i));
Jean Delvarec5df9b72006-08-28 14:37:54 +02002175 if (tmp == 0xff)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002176 it87_write_value(data, IT87_REG_VIN_MIN(i), 0);
Jean Delvarec5df9b72006-08-28 14:37:54 +02002177 }
2178 for (i = 0; i < 3; i++) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002179 tmp = it87_read_value(data, IT87_REG_TEMP_HIGH(i));
Jean Delvarec5df9b72006-08-28 14:37:54 +02002180 if (tmp == 0xff)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002181 it87_write_value(data, IT87_REG_TEMP_HIGH(i), 127);
Jean Delvarec5df9b72006-08-28 14:37:54 +02002182 }
2183
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002184 /*
2185 * Temperature channels are not forcibly enabled, as they can be
Jean Delvarea00afb92010-04-14 16:14:09 +02002186 * set to two different sensor types and we can't guess which one
2187 * is correct for a given system. These channels can be enabled at
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002188 * run-time through the temp{1-3}_type sysfs accessors if needed.
2189 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
2191 /* Check if voltage monitors are reset manually or by some reason */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002192 tmp = it87_read_value(data, IT87_REG_VIN_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 if ((tmp & 0xff) == 0) {
2194 /* Enable all voltage monitors */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002195 it87_write_value(data, IT87_REG_VIN_ENABLE, 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 }
2197
2198 /* Check if tachometers are reset manually or by some reason */
Jean Delvare591ec652009-12-09 20:35:48 +01002199 mask = 0x70 & ~(sio_data->skip_fan << 4);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002200 data->fan_main_ctrl = it87_read_value(data, IT87_REG_FAN_MAIN_CTRL);
Jean Delvare591ec652009-12-09 20:35:48 +01002201 if ((data->fan_main_ctrl & mask) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 /* Enable all fan tachometers */
Jean Delvare591ec652009-12-09 20:35:48 +01002203 data->fan_main_ctrl |= mask;
Jean Delvare5f2dc792010-03-05 22:17:18 +01002204 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
2205 data->fan_main_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 }
Jean Delvare9060f8b2006-08-28 14:24:17 +02002207 data->has_fan = (data->fan_main_ctrl >> 4) & 0x07;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
Jean Delvare17d648b2006-08-28 14:23:46 +02002209 /* Set tachometers to 16-bit mode if needed */
Andrew Paprocki04751692008-08-06 22:41:06 +02002210 if (has_16bit_fans(data)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002211 tmp = it87_read_value(data, IT87_REG_FAN_16BIT);
Jean Delvare9060f8b2006-08-28 14:24:17 +02002212 if (~tmp & 0x07 & data->has_fan) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002213 dev_dbg(&pdev->dev,
Jean Delvare17d648b2006-08-28 14:23:46 +02002214 "Setting fan1-3 to 16-bit mode\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002215 it87_write_value(data, IT87_REG_FAN_16BIT,
Jean Delvare17d648b2006-08-28 14:23:46 +02002216 tmp | 0x07);
2217 }
Guenter Roeck0531d982012-03-02 11:46:44 -08002218 /* IT8705F, IT8782F, and IT8783E/F only support three fans. */
2219 if (data->type != it87 && data->type != it8782 &&
2220 data->type != it8783) {
Andrew Paprocki816d8c62008-08-06 22:41:06 +02002221 if (tmp & (1 << 4))
2222 data->has_fan |= (1 << 3); /* fan4 enabled */
2223 if (tmp & (1 << 5))
2224 data->has_fan |= (1 << 4); /* fan5 enabled */
2225 }
Jean Delvare17d648b2006-08-28 14:23:46 +02002226 }
2227
Jean Delvare591ec652009-12-09 20:35:48 +01002228 /* Fan input pins may be used for alternative functions */
2229 data->has_fan &= ~sio_data->skip_fan;
2230
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 /* Start monitoring */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002232 it87_write_value(data, IT87_REG_CONFIG,
2233 (it87_read_value(data, IT87_REG_CONFIG) & 0x36)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 | (update_vbat ? 0x41 : 0x01));
2235}
2236
Jean Delvareb99883d2010-03-05 22:17:15 +01002237static void it87_update_pwm_ctrl(struct it87_data *data, int nr)
2238{
2239 data->pwm_ctrl[nr] = it87_read_value(data, IT87_REG_PWM(nr));
Jean Delvare16b5dda2012-01-16 22:51:48 +01002240 if (has_newer_autopwm(data)) {
Jean Delvareb99883d2010-03-05 22:17:15 +01002241 data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03;
Jean Delvare6229cdb2010-12-08 16:27:22 +01002242 data->pwm_duty[nr] = it87_read_value(data,
2243 IT87_REG_PWM_DUTY(nr));
2244 } else {
2245 if (data->pwm_ctrl[nr] & 0x80) /* Automatic mode */
2246 data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03;
2247 else /* Manual mode */
2248 data->pwm_duty[nr] = data->pwm_ctrl[nr] & 0x7f;
2249 }
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002250
2251 if (has_old_autopwm(data)) {
2252 int i;
2253
2254 for (i = 0; i < 5 ; i++)
2255 data->auto_temp[nr][i] = it87_read_value(data,
2256 IT87_REG_AUTO_TEMP(nr, i));
2257 for (i = 0; i < 3 ; i++)
2258 data->auto_pwm[nr][i] = it87_read_value(data,
2259 IT87_REG_AUTO_PWM(nr, i));
2260 }
Jean Delvareb99883d2010-03-05 22:17:15 +01002261}
2262
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263static struct it87_data *it87_update_device(struct device *dev)
2264{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002265 struct it87_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 int i;
2267
Ingo Molnar9a61bf62006-01-18 23:19:26 +01002268 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
2270 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
2271 || !data->valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 if (update_vbat) {
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002273 /*
2274 * Cleared after each update, so reenable. Value
2275 * returned by this read will be previous value
2276 */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002277 it87_write_value(data, IT87_REG_CONFIG,
Jean Delvare5f2dc792010-03-05 22:17:18 +01002278 it87_read_value(data, IT87_REG_CONFIG) | 0x40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 }
2280 for (i = 0; i <= 7; i++) {
2281 data->in[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002282 it87_read_value(data, IT87_REG_VIN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 data->in_min[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002284 it87_read_value(data, IT87_REG_VIN_MIN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 data->in_max[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002286 it87_read_value(data, IT87_REG_VIN_MAX(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 }
Jean Delvare3543a532006-08-28 14:27:25 +02002288 /* in8 (battery) has no limit registers */
Jean Delvare5f2dc792010-03-05 22:17:18 +01002289 data->in[8] = it87_read_value(data, IT87_REG_VIN(8));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290
Jean Delvarec7f1f712007-09-03 17:11:46 +02002291 for (i = 0; i < 5; i++) {
Jean Delvare9060f8b2006-08-28 14:24:17 +02002292 /* Skip disabled fans */
2293 if (!(data->has_fan & (1 << i)))
2294 continue;
2295
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 data->fan_min[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002297 it87_read_value(data, IT87_REG_FAN_MIN[i]);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002298 data->fan[i] = it87_read_value(data,
Jean Delvarec7f1f712007-09-03 17:11:46 +02002299 IT87_REG_FAN[i]);
Jean Delvare17d648b2006-08-28 14:23:46 +02002300 /* Add high byte if in 16-bit mode */
Andrew Paprocki04751692008-08-06 22:41:06 +02002301 if (has_16bit_fans(data)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002302 data->fan[i] |= it87_read_value(data,
Jean Delvarec7f1f712007-09-03 17:11:46 +02002303 IT87_REG_FANX[i]) << 8;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002304 data->fan_min[i] |= it87_read_value(data,
Jean Delvarec7f1f712007-09-03 17:11:46 +02002305 IT87_REG_FANX_MIN[i]) << 8;
Jean Delvare17d648b2006-08-28 14:23:46 +02002306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 }
2308 for (i = 0; i < 3; i++) {
2309 data->temp[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002310 it87_read_value(data, IT87_REG_TEMP(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 data->temp_high[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002312 it87_read_value(data, IT87_REG_TEMP_HIGH(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 data->temp_low[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002314 it87_read_value(data, IT87_REG_TEMP_LOW(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 }
2316
Jean Delvare17d648b2006-08-28 14:23:46 +02002317 /* Newer chips don't have clock dividers */
Andrew Paprocki04751692008-08-06 22:41:06 +02002318 if ((data->has_fan & 0x07) && !has_16bit_fans(data)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002319 i = it87_read_value(data, IT87_REG_FAN_DIV);
Jean Delvare17d648b2006-08-28 14:23:46 +02002320 data->fan_div[0] = i & 0x07;
2321 data->fan_div[1] = (i >> 3) & 0x07;
2322 data->fan_div[2] = (i & 0x40) ? 3 : 1;
2323 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324
2325 data->alarms =
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002326 it87_read_value(data, IT87_REG_ALARM1) |
2327 (it87_read_value(data, IT87_REG_ALARM2) << 8) |
2328 (it87_read_value(data, IT87_REG_ALARM3) << 16);
Jean Delvared9b327c2010-03-05 22:17:17 +01002329 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
Jean Delvareb99883d2010-03-05 22:17:15 +01002330
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002331 data->fan_main_ctrl = it87_read_value(data,
2332 IT87_REG_FAN_MAIN_CTRL);
2333 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL);
Jean Delvareb99883d2010-03-05 22:17:15 +01002334 for (i = 0; i < 3; i++)
2335 it87_update_pwm_ctrl(data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002337 data->sensor = it87_read_value(data, IT87_REG_TEMP_ENABLE);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002338 /*
2339 * The IT8705F does not have VID capability.
2340 * The IT8718F and later don't use IT87_REG_VID for the
2341 * same purpose.
2342 */
Jean Delvare17d648b2006-08-28 14:23:46 +02002343 if (data->type == it8712 || data->type == it8716) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002344 data->vid = it87_read_value(data, IT87_REG_VID);
Guenter Roeck4a0d71c2012-01-19 11:02:18 -08002345 /*
2346 * The older IT8712F revisions had only 5 VID pins,
2347 * but we assume it is always safe to read 6 bits.
2348 */
Jean Delvare17d648b2006-08-28 14:23:46 +02002349 data->vid &= 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 }
2351 data->last_updated = jiffies;
2352 data->valid = 1;
2353 }
2354
Ingo Molnar9a61bf62006-01-18 23:19:26 +01002355 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356
2357 return data;
2358}
2359
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002360static int __init it87_device_add(unsigned short address,
2361 const struct it87_sio_data *sio_data)
2362{
2363 struct resource res = {
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05002364 .start = address + IT87_EC_OFFSET,
2365 .end = address + IT87_EC_OFFSET + IT87_EC_EXTENT - 1,
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002366 .name = DRVNAME,
2367 .flags = IORESOURCE_IO,
2368 };
2369 int err;
2370
Jean Delvareb9acb642009-01-07 16:37:35 +01002371 err = acpi_check_resource_conflict(&res);
2372 if (err)
2373 goto exit;
2374
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002375 pdev = platform_device_alloc(DRVNAME, address);
2376 if (!pdev) {
2377 err = -ENOMEM;
Joe Perchesa8ca1032011-01-12 21:55:10 +01002378 pr_err("Device allocation failed\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002379 goto exit;
2380 }
2381
2382 err = platform_device_add_resources(pdev, &res, 1);
2383 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002384 pr_err("Device resource addition failed (%d)\n", err);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002385 goto exit_device_put;
2386 }
2387
2388 err = platform_device_add_data(pdev, sio_data,
2389 sizeof(struct it87_sio_data));
2390 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002391 pr_err("Platform data allocation failed\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002392 goto exit_device_put;
2393 }
2394
2395 err = platform_device_add(pdev);
2396 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002397 pr_err("Device addition failed (%d)\n", err);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002398 goto exit_device_put;
2399 }
2400
2401 return 0;
2402
2403exit_device_put:
2404 platform_device_put(pdev);
2405exit:
2406 return err;
2407}
2408
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409static int __init sm_it87_init(void)
2410{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002411 int err;
Jean Delvare5f2dc792010-03-05 22:17:18 +01002412 unsigned short isa_address = 0;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002413 struct it87_sio_data sio_data;
Jean Delvarefde09502005-07-19 23:51:07 +02002414
Jean Delvare98dd22c2008-10-09 15:33:58 +02002415 memset(&sio_data, 0, sizeof(struct it87_sio_data));
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002416 err = it87_find(&isa_address, &sio_data);
2417 if (err)
2418 return err;
2419 err = platform_driver_register(&it87_driver);
2420 if (err)
2421 return err;
2422
2423 err = it87_device_add(isa_address, &sio_data);
Jean Delvare5f2dc792010-03-05 22:17:18 +01002424 if (err) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002425 platform_driver_unregister(&it87_driver);
2426 return err;
2427 }
2428
2429 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430}
2431
2432static void __exit sm_it87_exit(void)
2433{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002434 platform_device_unregister(pdev);
2435 platform_driver_unregister(&it87_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436}
2437
2438
Jean Delvaref1d8e332007-11-25 16:14:44 +01002439MODULE_AUTHOR("Chris Gauthron, "
Jean Delvareb19367c2006-08-28 14:39:26 +02002440 "Jean Delvare <khali@linux-fr.org>");
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002441MODULE_DESCRIPTION("IT8705F/IT871xF/IT872xF hardware monitoring driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442module_param(update_vbat, bool, 0);
2443MODULE_PARM_DESC(update_vbat, "Update vbat if set else return powerup value");
2444module_param(fix_pwm_polarity, bool, 0);
Jean Delvare5f2dc792010-03-05 22:17:18 +01002445MODULE_PARM_DESC(fix_pwm_polarity,
2446 "Force PWM polarity to active high (DANGEROUS)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447MODULE_LICENSE("GPL");
2448
2449module_init(sm_it87_init);
2450module_exit(sm_it87_exit);