blob: bbb0c7443b9beee2e630717c919d3d9f46f572dc [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
18 * IT8726F Super I/O chip w/LPC interface
19 * Sis950 A clone of the IT8705F
20 *
21 * Copyright (C) 2001 Chris Gauthron
22 * Copyright (C) 2005-2010 Jean Delvare <khali@linux-fr.org>
23 *
24 * This program is free software; you can redistribute it and/or modify
25 * it under the terms of the GNU General Public License as published by
26 * the Free Software Foundation; either version 2 of the License, or
27 * (at your option) any later version.
28 *
29 * This program is distributed in the hope that it will be useful,
30 * but WITHOUT ANY WARRANTY; without even the implied warranty of
31 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
32 * GNU General Public License for more details.
33 *
34 * You should have received a copy of the GNU General Public License
35 * along with this program; if not, write to the Free Software
36 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
37 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/module.h>
40#include <linux/init.h>
41#include <linux/slab.h>
42#include <linux/jiffies.h>
corentin.labbeb74f3fd2007-06-13 20:27:36 +020043#include <linux/platform_device.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040044#include <linux/hwmon.h>
Jean Delvare303760b2005-07-31 21:52:01 +020045#include <linux/hwmon-sysfs.h>
46#include <linux/hwmon-vid.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040047#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010048#include <linux/mutex.h>
Jean Delvare87808be2006-09-24 21:17:13 +020049#include <linux/sysfs.h>
Jean Delvare98dd22c2008-10-09 15:33:58 +020050#include <linux/string.h>
51#include <linux/dmi.h>
Jean Delvareb9acb642009-01-07 16:37:35 +010052#include <linux/acpi.h>
H Hartley Sweeten6055fae2009-09-15 17:18:13 +020053#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
corentin.labbeb74f3fd2007-06-13 20:27:36 +020055#define DRVNAME "it87"
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +010057enum chips { it87, it8712, it8716, it8718, it8720 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Jean Delvare67b671b2007-12-06 23:13:42 +010059static unsigned short force_id;
60module_param(force_id, ushort, 0);
61MODULE_PARM_DESC(force_id, "Override the detected device ID");
62
corentin.labbeb74f3fd2007-06-13 20:27:36 +020063static struct platform_device *pdev;
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#define REG 0x2e /* The register to read/write */
66#define DEV 0x07 /* Register: Logical device select */
67#define VAL 0x2f /* The value to read/write */
68#define PME 0x04 /* The device with the fan registers in it */
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +010069
70/* The device with the IT8718F/IT8720F VID value in it */
71#define GPIO 0x07
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#define DEVID 0x20 /* Register: Device ID */
74#define DEVREV 0x22 /* Register: Device Revision */
75
76static inline int
77superio_inb(int reg)
78{
79 outb(reg, REG);
80 return inb(VAL);
81}
82
83static int superio_inw(int reg)
84{
85 int val;
86 outb(reg++, REG);
87 val = inb(VAL) << 8;
88 outb(reg, REG);
89 val |= inb(VAL);
90 return val;
91}
92
93static inline void
Jean Delvare87673dd2006-08-28 14:37:19 +020094superio_select(int ldn)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
96 outb(DEV, REG);
Jean Delvare87673dd2006-08-28 14:37:19 +020097 outb(ldn, VAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
100static inline void
101superio_enter(void)
102{
103 outb(0x87, REG);
104 outb(0x01, REG);
105 outb(0x55, REG);
106 outb(0x55, REG);
107}
108
109static inline void
110superio_exit(void)
111{
112 outb(0x02, REG);
113 outb(0x02, VAL);
114}
115
Jean Delvare87673dd2006-08-28 14:37:19 +0200116/* Logical device 4 registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#define IT8712F_DEVID 0x8712
118#define IT8705F_DEVID 0x8705
Jean Delvare17d648b2006-08-28 14:23:46 +0200119#define IT8716F_DEVID 0x8716
Jean Delvare87673dd2006-08-28 14:37:19 +0200120#define IT8718F_DEVID 0x8718
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +0100121#define IT8720F_DEVID 0x8720
Rudolf Marek08a8f6e2007-06-09 10:11:16 -0400122#define IT8726F_DEVID 0x8726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123#define IT87_ACT_REG 0x30
124#define IT87_BASE_REG 0x60
125
Jean Delvare87673dd2006-08-28 14:37:19 +0200126/* Logical device 7 registers (IT8712F and later) */
Jean Delvare895ff262009-12-09 20:35:47 +0100127#define IT87_SIO_GPIO3_REG 0x27
Jean Delvare591ec652009-12-09 20:35:48 +0100128#define IT87_SIO_GPIO5_REG 0x29
Jean Delvare87673dd2006-08-28 14:37:19 +0200129#define IT87_SIO_PINX2_REG 0x2c /* Pin selection */
130#define IT87_SIO_VID_REG 0xfc /* VID value */
Jean Delvared9b327c2010-03-05 22:17:17 +0100131#define IT87_SIO_BEEP_PIN_REG 0xf6 /* Beep pin mapping */
Jean Delvare87673dd2006-08-28 14:37:19 +0200132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133/* Update battery voltage after every reading if true */
134static int update_vbat;
135
136/* Not all BIOSes properly configure the PWM registers */
137static int fix_pwm_polarity;
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139/* Many IT87 constants specified below */
140
141/* Length of ISA address segment */
142#define IT87_EXTENT 8
143
Bjorn Helgaas87b4b662008-01-22 07:21:03 -0500144/* Length of ISA address segment for Environmental Controller */
145#define IT87_EC_EXTENT 2
146
147/* Offset of EC registers from ISA base address */
148#define IT87_EC_OFFSET 5
149
150/* Where are the ISA address/data registers relative to the EC base address */
151#define IT87_ADDR_REG_OFFSET 0
152#define IT87_DATA_REG_OFFSET 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154/*----- The IT87 registers -----*/
155
156#define IT87_REG_CONFIG 0x00
157
158#define IT87_REG_ALARM1 0x01
159#define IT87_REG_ALARM2 0x02
160#define IT87_REG_ALARM3 0x03
161
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +0100162/* The IT8718F and IT8720F have the VID value in a different register, in
163 Super-I/O configuration space. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164#define IT87_REG_VID 0x0a
Andrew Paprocki04751692008-08-06 22:41:06 +0200165/* The IT8705F and IT8712F earlier than revision 0x08 use register 0x0b
166 for fan divisors. Later IT8712F revisions must use 16-bit tachometer
167 mode. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168#define IT87_REG_FAN_DIV 0x0b
Jean Delvare17d648b2006-08-28 14:23:46 +0200169#define IT87_REG_FAN_16BIT 0x0c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171/* Monitors: 9 voltage (0 to 7, battery), 3 temp (1 to 3), 3 fan (1 to 3) */
172
Jean Delvarec7f1f712007-09-03 17:11:46 +0200173static const u8 IT87_REG_FAN[] = { 0x0d, 0x0e, 0x0f, 0x80, 0x82 };
174static const u8 IT87_REG_FAN_MIN[] = { 0x10, 0x11, 0x12, 0x84, 0x86 };
175static const u8 IT87_REG_FANX[] = { 0x18, 0x19, 0x1a, 0x81, 0x83 };
176static const u8 IT87_REG_FANX_MIN[] = { 0x1b, 0x1c, 0x1d, 0x85, 0x87 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177#define IT87_REG_FAN_MAIN_CTRL 0x13
178#define IT87_REG_FAN_CTL 0x14
179#define IT87_REG_PWM(nr) (0x15 + (nr))
180
181#define IT87_REG_VIN(nr) (0x20 + (nr))
182#define IT87_REG_TEMP(nr) (0x29 + (nr))
183
184#define IT87_REG_VIN_MAX(nr) (0x30 + (nr) * 2)
185#define IT87_REG_VIN_MIN(nr) (0x31 + (nr) * 2)
186#define IT87_REG_TEMP_HIGH(nr) (0x40 + (nr) * 2)
187#define IT87_REG_TEMP_LOW(nr) (0x41 + (nr) * 2)
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189#define IT87_REG_VIN_ENABLE 0x50
190#define IT87_REG_TEMP_ENABLE 0x51
Jean Delvared9b327c2010-03-05 22:17:17 +0100191#define IT87_REG_BEEP_ENABLE 0x5c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193#define IT87_REG_CHIPID 0x58
194
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100195#define IT87_REG_AUTO_TEMP(nr, i) (0x60 + (nr) * 8 + (i))
196#define IT87_REG_AUTO_PWM(nr, i) (0x65 + (nr) * 8 + (i))
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198#define IN_TO_REG(val) (SENSORS_LIMIT((((val) + 8)/16),0,255))
199#define IN_FROM_REG(val) ((val) * 16)
200
201static inline u8 FAN_TO_REG(long rpm, int div)
202{
203 if (rpm == 0)
204 return 255;
205 rpm = SENSORS_LIMIT(rpm, 1, 1000000);
206 return SENSORS_LIMIT((1350000 + rpm * div / 2) / (rpm * div), 1,
207 254);
208}
209
Jean Delvare17d648b2006-08-28 14:23:46 +0200210static inline u16 FAN16_TO_REG(long rpm)
211{
212 if (rpm == 0)
213 return 0xffff;
214 return SENSORS_LIMIT((1350000 + rpm) / (rpm * 2), 1, 0xfffe);
215}
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217#define FAN_FROM_REG(val,div) ((val)==0?-1:(val)==255?0:1350000/((val)*(div)))
Jean Delvare17d648b2006-08-28 14:23:46 +0200218/* The divider is fixed to 2 in 16-bit mode */
219#define FAN16_FROM_REG(val) ((val)==0?-1:(val)==0xffff?0:1350000/((val)*2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221#define TEMP_TO_REG(val) (SENSORS_LIMIT(((val)<0?(((val)-500)/1000):\
222 ((val)+500)/1000),-128,127))
Jean Delvaree267d252009-03-12 13:36:39 +0100223#define TEMP_FROM_REG(val) ((val) * 1000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225#define PWM_TO_REG(val) ((val) >> 1)
226#define PWM_FROM_REG(val) (((val)&0x7f) << 1)
227
228static int DIV_TO_REG(int val)
229{
230 int answer = 0;
Jean Delvareb9e349f2006-08-28 14:26:22 +0200231 while (answer < 7 && (val >>= 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 answer++;
233 return answer;
234}
235#define DIV_FROM_REG(val) (1 << (val))
236
Jean Delvaref8d0c192007-02-14 21:15:02 +0100237static const unsigned int pwm_freq[8] = {
238 48000000 / 128,
239 24000000 / 128,
240 12000000 / 128,
241 8000000 / 128,
242 6000000 / 128,
243 3000000 / 128,
244 1500000 / 128,
245 750000 / 128,
246};
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200249struct it87_sio_data {
250 enum chips type;
251 /* Values read from Super-I/O config space */
Andrew Paprocki04751692008-08-06 22:41:06 +0200252 u8 revision;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200253 u8 vid_value;
Jean Delvared9b327c2010-03-05 22:17:17 +0100254 u8 beep_pin;
Jean Delvare591ec652009-12-09 20:35:48 +0100255 /* Features skipped based on config or DMI */
Jean Delvare895ff262009-12-09 20:35:47 +0100256 u8 skip_vid;
Jean Delvare591ec652009-12-09 20:35:48 +0100257 u8 skip_fan;
Jean Delvare98dd22c2008-10-09 15:33:58 +0200258 u8 skip_pwm;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200259};
260
Jean Delvareed6bafb2007-02-14 21:15:03 +0100261/* For each registered chip, we need to keep some data in memory.
262 The structure is dynamically allocated. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263struct it87_data {
Tony Jones1beeffe2007-08-20 13:46:20 -0700264 struct device *hwmon_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 enum chips type;
Andrew Paprocki04751692008-08-06 22:41:06 +0200266 u8 revision;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200268 unsigned short addr;
269 const char *name;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100270 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 char valid; /* !=0 if following fields are valid */
272 unsigned long last_updated; /* In jiffies */
273
274 u8 in[9]; /* Register value */
Jean Delvare3543a532006-08-28 14:27:25 +0200275 u8 in_max[8]; /* Register value */
276 u8 in_min[8]; /* Register value */
Jean Delvare9060f8b2006-08-28 14:24:17 +0200277 u8 has_fan; /* Bitfield, fans enabled */
Jean Delvarec7f1f712007-09-03 17:11:46 +0200278 u16 fan[5]; /* Register values, possibly combined */
279 u16 fan_min[5]; /* Register values, possibly combined */
Jean Delvaree267d252009-03-12 13:36:39 +0100280 s8 temp[3]; /* Register value */
281 s8 temp_high[3]; /* Register value */
282 s8 temp_low[3]; /* Register value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 u8 sensor; /* Register value */
284 u8 fan_div[3]; /* Register encoding, shifted right */
285 u8 vid; /* Register encoding, combined */
Jean Delvarea7be58a2005-12-18 16:40:14 +0100286 u8 vrm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 u32 alarms; /* Register encoding, combined */
Jean Delvared9b327c2010-03-05 22:17:17 +0100288 u8 beeps; /* Register encoding */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 u8 fan_main_ctrl; /* Register value */
Jean Delvaref8d0c192007-02-14 21:15:02 +0100290 u8 fan_ctl; /* Register value */
Jean Delvareb99883d2010-03-05 22:17:15 +0100291
292 /* The following 3 arrays correspond to the same registers. The
293 * meaning of bits 6-0 depends on the value of bit 7, and we want
294 * to preserve settings on mode changes, so we have to track all
295 * values separately. */
296 u8 pwm_ctrl[3]; /* Register value */
297 u8 pwm_duty[3]; /* Manual PWM value set by user (bit 6-0) */
298 u8 pwm_temp_map[3]; /* PWM to temp. chan. mapping (bits 1-0) */
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100299
300 /* Automatic fan speed control registers */
301 u8 auto_pwm[3][4]; /* [nr][3] is hard-coded */
302 s8 auto_temp[3][5]; /* [nr][0] is point1_temp_hyst */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303};
304
Andrew Paprocki04751692008-08-06 22:41:06 +0200305static inline int has_16bit_fans(const struct it87_data *data)
306{
Andrew Paprocki816d8c62008-08-06 22:41:06 +0200307 /* IT8705F Datasheet 0.4.1, 3h == Version G.
Andrew Paprocki859b9ef2008-09-20 10:25:19 +0200308 IT8712F Datasheet 0.9.1, section 8.3.5 indicates 8h == Version J.
Andrew Paprocki816d8c62008-08-06 22:41:06 +0200309 These are the first revisions with 16bit tachometer support. */
310 return (data->type == it87 && data->revision >= 0x03)
Andrew Paprocki859b9ef2008-09-20 10:25:19 +0200311 || (data->type == it8712 && data->revision >= 0x08)
Andrew Paprocki04751692008-08-06 22:41:06 +0200312 || data->type == it8716
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +0100313 || data->type == it8718
314 || data->type == it8720;
Andrew Paprocki04751692008-08-06 22:41:06 +0200315}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100317static inline int has_old_autopwm(const struct it87_data *data)
318{
319 /* The old automatic fan speed control interface is implemented
320 by IT8705F chips up to revision F and IT8712F chips up to
321 revision G. */
322 return (data->type == it87 && data->revision < 0x03)
323 || (data->type == it8712 && data->revision < 0x08);
324}
325
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200326static int it87_probe(struct platform_device *pdev);
Jean Delvared0546122007-07-22 12:09:48 +0200327static int __devexit it87_remove(struct platform_device *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200329static int it87_read_value(struct it87_data *data, u8 reg);
330static void it87_write_value(struct it87_data *data, u8 reg, u8 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331static struct it87_data *it87_update_device(struct device *dev);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200332static int it87_check_pwm(struct device *dev);
333static void it87_init_device(struct platform_device *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200336static struct platform_driver it87_driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100337 .driver = {
Jean Delvare87218842006-09-03 22:36:14 +0200338 .owner = THIS_MODULE,
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200339 .name = DRVNAME,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100340 },
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200341 .probe = it87_probe,
342 .remove = __devexit_p(it87_remove),
Jean Delvarefde09502005-07-19 23:51:07 +0200343};
344
Jean Delvare20ad93d2005-06-05 11:53:25 +0200345static ssize_t show_in(struct device *dev, struct device_attribute *attr,
346 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200348 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
349 int nr = sensor_attr->index;
350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 struct it87_data *data = it87_update_device(dev);
352 return sprintf(buf, "%d\n", IN_FROM_REG(data->in[nr]));
353}
354
Jean Delvare20ad93d2005-06-05 11:53:25 +0200355static ssize_t show_in_min(struct device *dev, struct device_attribute *attr,
356 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200358 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
359 int nr = sensor_attr->index;
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 struct it87_data *data = it87_update_device(dev);
362 return sprintf(buf, "%d\n", IN_FROM_REG(data->in_min[nr]));
363}
364
Jean Delvare20ad93d2005-06-05 11:53:25 +0200365static ssize_t show_in_max(struct device *dev, struct device_attribute *attr,
366 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200368 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
369 int nr = sensor_attr->index;
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 struct it87_data *data = it87_update_device(dev);
372 return sprintf(buf, "%d\n", IN_FROM_REG(data->in_max[nr]));
373}
374
Jean Delvare20ad93d2005-06-05 11:53:25 +0200375static ssize_t set_in_min(struct device *dev, struct device_attribute *attr,
376 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200378 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
379 int nr = sensor_attr->index;
380
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200381 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100382 unsigned long val;
383
384 if (strict_strtoul(buf, 10, &val) < 0)
385 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100387 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 data->in_min[nr] = IN_TO_REG(val);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200389 it87_write_value(data, IT87_REG_VIN_MIN(nr),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 data->in_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100391 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 return count;
393}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200394static ssize_t set_in_max(struct device *dev, struct device_attribute *attr,
395 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200397 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
398 int nr = sensor_attr->index;
399
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200400 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100401 unsigned long val;
402
403 if (strict_strtoul(buf, 10, &val) < 0)
404 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100406 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 data->in_max[nr] = IN_TO_REG(val);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200408 it87_write_value(data, IT87_REG_VIN_MAX(nr),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 data->in_max[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100410 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 return count;
412}
413
414#define show_in_offset(offset) \
Jean Delvare20ad93d2005-06-05 11:53:25 +0200415static SENSOR_DEVICE_ATTR(in##offset##_input, S_IRUGO, \
416 show_in, NULL, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418#define limit_in_offset(offset) \
Jean Delvare20ad93d2005-06-05 11:53:25 +0200419static SENSOR_DEVICE_ATTR(in##offset##_min, S_IRUGO | S_IWUSR, \
420 show_in_min, set_in_min, offset); \
421static SENSOR_DEVICE_ATTR(in##offset##_max, S_IRUGO | S_IWUSR, \
422 show_in_max, set_in_max, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424show_in_offset(0);
425limit_in_offset(0);
426show_in_offset(1);
427limit_in_offset(1);
428show_in_offset(2);
429limit_in_offset(2);
430show_in_offset(3);
431limit_in_offset(3);
432show_in_offset(4);
433limit_in_offset(4);
434show_in_offset(5);
435limit_in_offset(5);
436show_in_offset(6);
437limit_in_offset(6);
438show_in_offset(7);
439limit_in_offset(7);
440show_in_offset(8);
441
442/* 3 temperatures */
Jean Delvare20ad93d2005-06-05 11:53:25 +0200443static ssize_t show_temp(struct device *dev, struct device_attribute *attr,
444 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200446 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
447 int nr = sensor_attr->index;
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 struct it87_data *data = it87_update_device(dev);
450 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[nr]));
451}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200452static ssize_t show_temp_max(struct device *dev, struct device_attribute *attr,
453 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200455 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
456 int nr = sensor_attr->index;
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 struct it87_data *data = it87_update_device(dev);
459 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_high[nr]));
460}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200461static ssize_t show_temp_min(struct device *dev, struct device_attribute *attr,
462 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200464 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
465 int nr = sensor_attr->index;
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 struct it87_data *data = it87_update_device(dev);
468 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_low[nr]));
469}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200470static ssize_t set_temp_max(struct device *dev, struct device_attribute *attr,
471 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200473 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
474 int nr = sensor_attr->index;
475
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200476 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100477 long val;
478
479 if (strict_strtol(buf, 10, &val) < 0)
480 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100482 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 data->temp_high[nr] = TEMP_TO_REG(val);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200484 it87_write_value(data, IT87_REG_TEMP_HIGH(nr), data->temp_high[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100485 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 return count;
487}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200488static ssize_t set_temp_min(struct device *dev, struct device_attribute *attr,
489 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200491 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
492 int nr = sensor_attr->index;
493
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200494 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100495 long val;
496
497 if (strict_strtol(buf, 10, &val) < 0)
498 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100500 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 data->temp_low[nr] = TEMP_TO_REG(val);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200502 it87_write_value(data, IT87_REG_TEMP_LOW(nr), data->temp_low[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100503 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 return count;
505}
506#define show_temp_offset(offset) \
Jean Delvare20ad93d2005-06-05 11:53:25 +0200507static SENSOR_DEVICE_ATTR(temp##offset##_input, S_IRUGO, \
508 show_temp, NULL, offset - 1); \
509static SENSOR_DEVICE_ATTR(temp##offset##_max, S_IRUGO | S_IWUSR, \
510 show_temp_max, set_temp_max, offset - 1); \
511static SENSOR_DEVICE_ATTR(temp##offset##_min, S_IRUGO | S_IWUSR, \
512 show_temp_min, set_temp_min, offset - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514show_temp_offset(1);
515show_temp_offset(2);
516show_temp_offset(3);
517
Jean Delvare20ad93d2005-06-05 11:53:25 +0200518static ssize_t show_sensor(struct device *dev, struct device_attribute *attr,
519 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200521 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
522 int nr = sensor_attr->index;
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 struct it87_data *data = it87_update_device(dev);
Jean Delvare5f2dc792010-03-05 22:17:18 +0100525 u8 reg = data->sensor; /* In case the value is updated while
526 we use it */
527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 if (reg & (1 << nr))
529 return sprintf(buf, "3\n"); /* thermal diode */
530 if (reg & (8 << nr))
Jean Delvare4ed10772008-10-17 17:51:16 +0200531 return sprintf(buf, "4\n"); /* thermistor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 return sprintf(buf, "0\n"); /* disabled */
533}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200534static ssize_t set_sensor(struct device *dev, struct device_attribute *attr,
535 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200537 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
538 int nr = sensor_attr->index;
539
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200540 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100541 long val;
542
543 if (strict_strtol(buf, 10, &val) < 0)
544 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100546 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548 data->sensor &= ~(1 << nr);
549 data->sensor &= ~(8 << nr);
Jean Delvare4ed10772008-10-17 17:51:16 +0200550 if (val == 2) { /* backwards compatibility */
551 dev_warn(dev, "Sensor type 2 is deprecated, please use 4 "
552 "instead\n");
553 val = 4;
554 }
555 /* 3 = thermal diode; 4 = thermistor; 0 = disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 if (val == 3)
Jean Delvare5f2dc792010-03-05 22:17:18 +0100557 data->sensor |= 1 << nr;
Jean Delvare4ed10772008-10-17 17:51:16 +0200558 else if (val == 4)
Jean Delvare5f2dc792010-03-05 22:17:18 +0100559 data->sensor |= 8 << nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 else if (val != 0) {
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100561 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 return -EINVAL;
563 }
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200564 it87_write_value(data, IT87_REG_TEMP_ENABLE, data->sensor);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100565 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 return count;
567}
568#define show_sensor_offset(offset) \
Jean Delvare20ad93d2005-06-05 11:53:25 +0200569static SENSOR_DEVICE_ATTR(temp##offset##_type, S_IRUGO | S_IWUSR, \
570 show_sensor, set_sensor, offset - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572show_sensor_offset(1);
573show_sensor_offset(2);
574show_sensor_offset(3);
575
576/* 3 Fans */
Jean Delvareb99883d2010-03-05 22:17:15 +0100577
578static int pwm_mode(const struct it87_data *data, int nr)
579{
580 int ctrl = data->fan_main_ctrl & (1 << nr);
581
582 if (ctrl == 0) /* Full speed */
583 return 0;
584 if (data->pwm_ctrl[nr] & 0x80) /* Automatic mode */
585 return 2;
586 else /* Manual mode */
587 return 1;
588}
589
Jean Delvare20ad93d2005-06-05 11:53:25 +0200590static ssize_t show_fan(struct device *dev, struct device_attribute *attr,
591 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200593 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
594 int nr = sensor_attr->index;
595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 struct it87_data *data = it87_update_device(dev);
Jean Delvare5f2dc792010-03-05 22:17:18 +0100597 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[nr],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 DIV_FROM_REG(data->fan_div[nr])));
599}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200600static ssize_t show_fan_min(struct device *dev, struct device_attribute *attr,
601 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200603 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
604 int nr = sensor_attr->index;
605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 struct it87_data *data = it87_update_device(dev);
Jean Delvare5f2dc792010-03-05 22:17:18 +0100607 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan_min[nr],
608 DIV_FROM_REG(data->fan_div[nr])));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200610static ssize_t show_fan_div(struct device *dev, struct device_attribute *attr,
611 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200613 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
614 int nr = sensor_attr->index;
615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 struct it87_data *data = it87_update_device(dev);
617 return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[nr]));
618}
Jean Delvare5f2dc792010-03-05 22:17:18 +0100619static ssize_t show_pwm_enable(struct device *dev,
620 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200622 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
623 int nr = sensor_attr->index;
624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 struct it87_data *data = it87_update_device(dev);
Jean Delvareb99883d2010-03-05 22:17:15 +0100626 return sprintf(buf, "%d\n", pwm_mode(data, nr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200628static ssize_t show_pwm(struct device *dev, struct device_attribute *attr,
629 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200631 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
632 int nr = sensor_attr->index;
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 struct it87_data *data = it87_update_device(dev);
Jean Delvareb99883d2010-03-05 22:17:15 +0100635 return sprintf(buf, "%d\n", PWM_FROM_REG(data->pwm_duty[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636}
Jean Delvaref8d0c192007-02-14 21:15:02 +0100637static ssize_t show_pwm_freq(struct device *dev, struct device_attribute *attr,
638 char *buf)
639{
640 struct it87_data *data = it87_update_device(dev);
641 int index = (data->fan_ctl >> 4) & 0x07;
642
643 return sprintf(buf, "%u\n", pwm_freq[index]);
644}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200645static ssize_t set_fan_min(struct device *dev, struct device_attribute *attr,
646 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200648 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
649 int nr = sensor_attr->index;
650
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200651 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100652 long val;
Jean Delvare7f999aa2007-02-14 21:15:03 +0100653 u8 reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Jean Delvaref5f64502010-03-05 22:17:19 +0100655 if (strict_strtol(buf, 10, &val) < 0)
656 return -EINVAL;
657
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100658 mutex_lock(&data->update_lock);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200659 reg = it87_read_value(data, IT87_REG_FAN_DIV);
Jean Delvare07eab462005-11-23 15:44:31 -0800660 switch (nr) {
Jean Delvare5f2dc792010-03-05 22:17:18 +0100661 case 0:
662 data->fan_div[nr] = reg & 0x07;
663 break;
664 case 1:
665 data->fan_div[nr] = (reg >> 3) & 0x07;
666 break;
667 case 2:
668 data->fan_div[nr] = (reg & 0x40) ? 3 : 1;
669 break;
Jean Delvare07eab462005-11-23 15:44:31 -0800670 }
671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 data->fan_min[nr] = FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
Jean Delvarec7f1f712007-09-03 17:11:46 +0200673 it87_write_value(data, IT87_REG_FAN_MIN[nr], data->fan_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100674 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 return count;
676}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200677static ssize_t set_fan_div(struct device *dev, struct device_attribute *attr,
678 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200680 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
681 int nr = sensor_attr->index;
682
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200683 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100684 unsigned long val;
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200685 int min;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 u8 old;
687
Jean Delvaref5f64502010-03-05 22:17:19 +0100688 if (strict_strtoul(buf, 10, &val) < 0)
689 return -EINVAL;
690
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100691 mutex_lock(&data->update_lock);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200692 old = it87_read_value(data, IT87_REG_FAN_DIV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200694 /* Save fan min limit */
695 min = FAN_FROM_REG(data->fan_min[nr], DIV_FROM_REG(data->fan_div[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 switch (nr) {
698 case 0:
699 case 1:
700 data->fan_div[nr] = DIV_TO_REG(val);
701 break;
702 case 2:
703 if (val < 8)
704 data->fan_div[nr] = 1;
705 else
706 data->fan_div[nr] = 3;
707 }
708 val = old & 0x80;
709 val |= (data->fan_div[0] & 0x07);
710 val |= (data->fan_div[1] & 0x07) << 3;
711 if (data->fan_div[2] == 3)
712 val |= 0x1 << 6;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200713 it87_write_value(data, IT87_REG_FAN_DIV, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200715 /* Restore fan min limit */
716 data->fan_min[nr] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
Jean Delvarec7f1f712007-09-03 17:11:46 +0200717 it87_write_value(data, IT87_REG_FAN_MIN[nr], data->fan_min[nr]);
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200718
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100719 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 return count;
721}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200722static ssize_t set_pwm_enable(struct device *dev,
723 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200725 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
726 int nr = sensor_attr->index;
727
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200728 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100729 long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Jean Delvaref5f64502010-03-05 22:17:19 +0100731 if (strict_strtol(buf, 10, &val) < 0 || val < 0 || val > 2)
Jean Delvareb99883d2010-03-05 22:17:15 +0100732 return -EINVAL;
733
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100734 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
736 if (val == 0) {
737 int tmp;
738 /* make sure the fan is on when in on/off mode */
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200739 tmp = it87_read_value(data, IT87_REG_FAN_CTL);
740 it87_write_value(data, IT87_REG_FAN_CTL, tmp | (1 << nr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 /* set on/off mode */
742 data->fan_main_ctrl &= ~(1 << nr);
Jean Delvare5f2dc792010-03-05 22:17:18 +0100743 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
744 data->fan_main_ctrl);
Jean Delvareb99883d2010-03-05 22:17:15 +0100745 } else {
746 if (val == 1) /* Manual mode */
747 data->pwm_ctrl[nr] = data->pwm_duty[nr];
748 else /* Automatic mode */
749 data->pwm_ctrl[nr] = 0x80 | data->pwm_temp_map[nr];
750 it87_write_value(data, IT87_REG_PWM(nr), data->pwm_ctrl[nr]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 /* set SmartGuardian mode */
752 data->fan_main_ctrl |= (1 << nr);
Jean Delvare5f2dc792010-03-05 22:17:18 +0100753 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
754 data->fan_main_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 }
756
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100757 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 return count;
759}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200760static ssize_t set_pwm(struct device *dev, struct device_attribute *attr,
761 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200763 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
764 int nr = sensor_attr->index;
765
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200766 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100767 long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Jean Delvaref5f64502010-03-05 22:17:19 +0100769 if (strict_strtol(buf, 10, &val) < 0 || val < 0 || val > 255)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 return -EINVAL;
771
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100772 mutex_lock(&data->update_lock);
Jean Delvareb99883d2010-03-05 22:17:15 +0100773 data->pwm_duty[nr] = PWM_TO_REG(val);
774 /* If we are in manual mode, write the duty cycle immediately;
775 * otherwise, just store it for later use. */
776 if (!(data->pwm_ctrl[nr] & 0x80)) {
777 data->pwm_ctrl[nr] = data->pwm_duty[nr];
778 it87_write_value(data, IT87_REG_PWM(nr), data->pwm_ctrl[nr]);
779 }
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100780 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 return count;
782}
Jean Delvaref8d0c192007-02-14 21:15:02 +0100783static ssize_t set_pwm_freq(struct device *dev,
784 struct device_attribute *attr, const char *buf, size_t count)
785{
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200786 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100787 unsigned long val;
Jean Delvaref8d0c192007-02-14 21:15:02 +0100788 int i;
789
Jean Delvaref5f64502010-03-05 22:17:19 +0100790 if (strict_strtoul(buf, 10, &val) < 0)
791 return -EINVAL;
792
Jean Delvaref8d0c192007-02-14 21:15:02 +0100793 /* Search for the nearest available frequency */
794 for (i = 0; i < 7; i++) {
795 if (val > (pwm_freq[i] + pwm_freq[i+1]) / 2)
796 break;
797 }
798
799 mutex_lock(&data->update_lock);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200800 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL) & 0x8f;
Jean Delvaref8d0c192007-02-14 21:15:02 +0100801 data->fan_ctl |= i << 4;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200802 it87_write_value(data, IT87_REG_FAN_CTL, data->fan_ctl);
Jean Delvaref8d0c192007-02-14 21:15:02 +0100803 mutex_unlock(&data->update_lock);
804
805 return count;
806}
Jean Delvare94ac7ee2010-03-05 22:17:16 +0100807static ssize_t show_pwm_temp_map(struct device *dev,
808 struct device_attribute *attr, char *buf)
809{
810 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
811 int nr = sensor_attr->index;
812
813 struct it87_data *data = it87_update_device(dev);
814 int map;
815
816 if (data->pwm_temp_map[nr] < 3)
817 map = 1 << data->pwm_temp_map[nr];
818 else
819 map = 0; /* Should never happen */
820 return sprintf(buf, "%d\n", map);
821}
822static ssize_t set_pwm_temp_map(struct device *dev,
823 struct device_attribute *attr, const char *buf, size_t count)
824{
825 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
826 int nr = sensor_attr->index;
827
828 struct it87_data *data = dev_get_drvdata(dev);
829 long val;
830 u8 reg;
831
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100832 /* This check can go away if we ever support automatic fan speed
833 control on newer chips. */
834 if (!has_old_autopwm(data)) {
835 dev_notice(dev, "Mapping change disabled for safety reasons\n");
836 return -EINVAL;
837 }
838
Jean Delvare94ac7ee2010-03-05 22:17:16 +0100839 if (strict_strtol(buf, 10, &val) < 0)
840 return -EINVAL;
841
842 switch (val) {
843 case (1 << 0):
844 reg = 0x00;
845 break;
846 case (1 << 1):
847 reg = 0x01;
848 break;
849 case (1 << 2):
850 reg = 0x02;
851 break;
852 default:
853 return -EINVAL;
854 }
855
856 mutex_lock(&data->update_lock);
857 data->pwm_temp_map[nr] = reg;
858 /* If we are in automatic mode, write the temp mapping immediately;
859 * otherwise, just store it for later use. */
860 if (data->pwm_ctrl[nr] & 0x80) {
861 data->pwm_ctrl[nr] = 0x80 | data->pwm_temp_map[nr];
862 it87_write_value(data, IT87_REG_PWM(nr), data->pwm_ctrl[nr]);
863 }
864 mutex_unlock(&data->update_lock);
865 return count;
866}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100868static ssize_t show_auto_pwm(struct device *dev,
869 struct device_attribute *attr, char *buf)
870{
871 struct it87_data *data = it87_update_device(dev);
872 struct sensor_device_attribute_2 *sensor_attr =
873 to_sensor_dev_attr_2(attr);
874 int nr = sensor_attr->nr;
875 int point = sensor_attr->index;
876
877 return sprintf(buf, "%d\n", PWM_FROM_REG(data->auto_pwm[nr][point]));
878}
879
880static ssize_t set_auto_pwm(struct device *dev,
881 struct device_attribute *attr, const char *buf, size_t count)
882{
883 struct it87_data *data = dev_get_drvdata(dev);
884 struct sensor_device_attribute_2 *sensor_attr =
885 to_sensor_dev_attr_2(attr);
886 int nr = sensor_attr->nr;
887 int point = sensor_attr->index;
888 long val;
889
890 if (strict_strtol(buf, 10, &val) < 0 || val < 0 || val > 255)
891 return -EINVAL;
892
893 mutex_lock(&data->update_lock);
894 data->auto_pwm[nr][point] = PWM_TO_REG(val);
895 it87_write_value(data, IT87_REG_AUTO_PWM(nr, point),
896 data->auto_pwm[nr][point]);
897 mutex_unlock(&data->update_lock);
898 return count;
899}
900
901static ssize_t show_auto_temp(struct device *dev,
902 struct device_attribute *attr, char *buf)
903{
904 struct it87_data *data = it87_update_device(dev);
905 struct sensor_device_attribute_2 *sensor_attr =
906 to_sensor_dev_attr_2(attr);
907 int nr = sensor_attr->nr;
908 int point = sensor_attr->index;
909
910 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->auto_temp[nr][point]));
911}
912
913static ssize_t set_auto_temp(struct device *dev,
914 struct device_attribute *attr, const char *buf, size_t count)
915{
916 struct it87_data *data = dev_get_drvdata(dev);
917 struct sensor_device_attribute_2 *sensor_attr =
918 to_sensor_dev_attr_2(attr);
919 int nr = sensor_attr->nr;
920 int point = sensor_attr->index;
921 long val;
922
923 if (strict_strtol(buf, 10, &val) < 0 || val < -128000 || val > 127000)
924 return -EINVAL;
925
926 mutex_lock(&data->update_lock);
927 data->auto_temp[nr][point] = TEMP_TO_REG(val);
928 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, point),
929 data->auto_temp[nr][point]);
930 mutex_unlock(&data->update_lock);
931 return count;
932}
933
Jean Delvare20ad93d2005-06-05 11:53:25 +0200934#define show_fan_offset(offset) \
935static SENSOR_DEVICE_ATTR(fan##offset##_input, S_IRUGO, \
936 show_fan, NULL, offset - 1); \
937static SENSOR_DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
938 show_fan_min, set_fan_min, offset - 1); \
939static SENSOR_DEVICE_ATTR(fan##offset##_div, S_IRUGO | S_IWUSR, \
940 show_fan_div, set_fan_div, offset - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942show_fan_offset(1);
943show_fan_offset(2);
944show_fan_offset(3);
945
946#define show_pwm_offset(offset) \
Jean Delvare20ad93d2005-06-05 11:53:25 +0200947static SENSOR_DEVICE_ATTR(pwm##offset##_enable, S_IRUGO | S_IWUSR, \
948 show_pwm_enable, set_pwm_enable, offset - 1); \
949static SENSOR_DEVICE_ATTR(pwm##offset, S_IRUGO | S_IWUSR, \
Jean Delvaref8d0c192007-02-14 21:15:02 +0100950 show_pwm, set_pwm, offset - 1); \
951static DEVICE_ATTR(pwm##offset##_freq, \
952 (offset == 1 ? S_IRUGO | S_IWUSR : S_IRUGO), \
Jean Delvare94ac7ee2010-03-05 22:17:16 +0100953 show_pwm_freq, (offset == 1 ? set_pwm_freq : NULL)); \
954static SENSOR_DEVICE_ATTR(pwm##offset##_auto_channels_temp, \
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100955 S_IRUGO | S_IWUSR, show_pwm_temp_map, set_pwm_temp_map, \
956 offset - 1); \
957static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point1_pwm, \
958 S_IRUGO | S_IWUSR, show_auto_pwm, set_auto_pwm, \
959 offset - 1, 0); \
960static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point2_pwm, \
961 S_IRUGO | S_IWUSR, show_auto_pwm, set_auto_pwm, \
962 offset - 1, 1); \
963static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point3_pwm, \
964 S_IRUGO | S_IWUSR, show_auto_pwm, set_auto_pwm, \
965 offset - 1, 2); \
966static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point4_pwm, \
967 S_IRUGO, show_auto_pwm, NULL, offset - 1, 3); \
968static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point1_temp, \
969 S_IRUGO | S_IWUSR, show_auto_temp, set_auto_temp, \
970 offset - 1, 1); \
971static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point1_temp_hyst, \
972 S_IRUGO | S_IWUSR, show_auto_temp, set_auto_temp, \
973 offset - 1, 0); \
974static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point2_temp, \
975 S_IRUGO | S_IWUSR, show_auto_temp, set_auto_temp, \
976 offset - 1, 2); \
977static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point3_temp, \
978 S_IRUGO | S_IWUSR, show_auto_temp, set_auto_temp, \
979 offset - 1, 3); \
980static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point4_temp, \
981 S_IRUGO | S_IWUSR, show_auto_temp, set_auto_temp, \
982 offset - 1, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
984show_pwm_offset(1);
985show_pwm_offset(2);
986show_pwm_offset(3);
987
Jean Delvare17d648b2006-08-28 14:23:46 +0200988/* A different set of callbacks for 16-bit fans */
989static ssize_t show_fan16(struct device *dev, struct device_attribute *attr,
990 char *buf)
991{
992 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
993 int nr = sensor_attr->index;
994 struct it87_data *data = it87_update_device(dev);
995 return sprintf(buf, "%d\n", FAN16_FROM_REG(data->fan[nr]));
996}
997
998static ssize_t show_fan16_min(struct device *dev, struct device_attribute *attr,
999 char *buf)
1000{
1001 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1002 int nr = sensor_attr->index;
1003 struct it87_data *data = it87_update_device(dev);
1004 return sprintf(buf, "%d\n", FAN16_FROM_REG(data->fan_min[nr]));
1005}
1006
1007static ssize_t set_fan16_min(struct device *dev, struct device_attribute *attr,
1008 const char *buf, size_t count)
1009{
1010 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1011 int nr = sensor_attr->index;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001012 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001013 long val;
1014
1015 if (strict_strtol(buf, 10, &val) < 0)
1016 return -EINVAL;
Jean Delvare17d648b2006-08-28 14:23:46 +02001017
1018 mutex_lock(&data->update_lock);
1019 data->fan_min[nr] = FAN16_TO_REG(val);
Jean Delvarec7f1f712007-09-03 17:11:46 +02001020 it87_write_value(data, IT87_REG_FAN_MIN[nr],
Jean Delvare17d648b2006-08-28 14:23:46 +02001021 data->fan_min[nr] & 0xff);
Jean Delvarec7f1f712007-09-03 17:11:46 +02001022 it87_write_value(data, IT87_REG_FANX_MIN[nr],
Jean Delvare17d648b2006-08-28 14:23:46 +02001023 data->fan_min[nr] >> 8);
1024 mutex_unlock(&data->update_lock);
1025 return count;
1026}
1027
1028/* We want to use the same sysfs file names as 8-bit fans, but we need
1029 different variable names, so we have to use SENSOR_ATTR instead of
1030 SENSOR_DEVICE_ATTR. */
1031#define show_fan16_offset(offset) \
1032static struct sensor_device_attribute sensor_dev_attr_fan##offset##_input16 \
1033 = SENSOR_ATTR(fan##offset##_input, S_IRUGO, \
1034 show_fan16, NULL, offset - 1); \
1035static struct sensor_device_attribute sensor_dev_attr_fan##offset##_min16 \
1036 = SENSOR_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
1037 show_fan16_min, set_fan16_min, offset - 1)
1038
1039show_fan16_offset(1);
1040show_fan16_offset(2);
1041show_fan16_offset(3);
Jean Delvarec7f1f712007-09-03 17:11:46 +02001042show_fan16_offset(4);
1043show_fan16_offset(5);
Jean Delvare17d648b2006-08-28 14:23:46 +02001044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045/* Alarms */
Jean Delvare5f2dc792010-03-05 22:17:18 +01001046static ssize_t show_alarms(struct device *dev, struct device_attribute *attr,
1047 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048{
1049 struct it87_data *data = it87_update_device(dev);
Jean Delvare68188ba2005-05-16 18:52:38 +02001050 return sprintf(buf, "%u\n", data->alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051}
Jean Delvare1d66c642005-04-18 21:16:59 -07001052static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Jean Delvare0124dd72007-11-25 16:16:41 +01001054static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
1055 char *buf)
1056{
1057 int bitnr = to_sensor_dev_attr(attr)->index;
1058 struct it87_data *data = it87_update_device(dev);
1059 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
1060}
1061static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 8);
1062static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 9);
1063static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 10);
1064static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 11);
1065static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 12);
1066static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 13);
1067static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 14);
1068static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 15);
1069static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 0);
1070static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 1);
1071static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 2);
1072static SENSOR_DEVICE_ATTR(fan4_alarm, S_IRUGO, show_alarm, NULL, 3);
1073static SENSOR_DEVICE_ATTR(fan5_alarm, S_IRUGO, show_alarm, NULL, 6);
1074static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 16);
1075static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 17);
1076static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 18);
1077
Jean Delvared9b327c2010-03-05 22:17:17 +01001078static ssize_t show_beep(struct device *dev, struct device_attribute *attr,
1079 char *buf)
1080{
1081 int bitnr = to_sensor_dev_attr(attr)->index;
1082 struct it87_data *data = it87_update_device(dev);
1083 return sprintf(buf, "%u\n", (data->beeps >> bitnr) & 1);
1084}
1085static ssize_t set_beep(struct device *dev, struct device_attribute *attr,
1086 const char *buf, size_t count)
1087{
1088 int bitnr = to_sensor_dev_attr(attr)->index;
1089 struct it87_data *data = dev_get_drvdata(dev);
1090 long val;
1091
1092 if (strict_strtol(buf, 10, &val) < 0
1093 || (val != 0 && val != 1))
1094 return -EINVAL;
1095
1096 mutex_lock(&data->update_lock);
1097 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
1098 if (val)
1099 data->beeps |= (1 << bitnr);
1100 else
1101 data->beeps &= ~(1 << bitnr);
1102 it87_write_value(data, IT87_REG_BEEP_ENABLE, data->beeps);
1103 mutex_unlock(&data->update_lock);
1104 return count;
1105}
1106
1107static SENSOR_DEVICE_ATTR(in0_beep, S_IRUGO | S_IWUSR,
1108 show_beep, set_beep, 1);
1109static SENSOR_DEVICE_ATTR(in1_beep, S_IRUGO, show_beep, NULL, 1);
1110static SENSOR_DEVICE_ATTR(in2_beep, S_IRUGO, show_beep, NULL, 1);
1111static SENSOR_DEVICE_ATTR(in3_beep, S_IRUGO, show_beep, NULL, 1);
1112static SENSOR_DEVICE_ATTR(in4_beep, S_IRUGO, show_beep, NULL, 1);
1113static SENSOR_DEVICE_ATTR(in5_beep, S_IRUGO, show_beep, NULL, 1);
1114static SENSOR_DEVICE_ATTR(in6_beep, S_IRUGO, show_beep, NULL, 1);
1115static SENSOR_DEVICE_ATTR(in7_beep, S_IRUGO, show_beep, NULL, 1);
1116/* fanX_beep writability is set later */
1117static SENSOR_DEVICE_ATTR(fan1_beep, S_IRUGO, show_beep, set_beep, 0);
1118static SENSOR_DEVICE_ATTR(fan2_beep, S_IRUGO, show_beep, set_beep, 0);
1119static SENSOR_DEVICE_ATTR(fan3_beep, S_IRUGO, show_beep, set_beep, 0);
1120static SENSOR_DEVICE_ATTR(fan4_beep, S_IRUGO, show_beep, set_beep, 0);
1121static SENSOR_DEVICE_ATTR(fan5_beep, S_IRUGO, show_beep, set_beep, 0);
1122static SENSOR_DEVICE_ATTR(temp1_beep, S_IRUGO | S_IWUSR,
1123 show_beep, set_beep, 2);
1124static SENSOR_DEVICE_ATTR(temp2_beep, S_IRUGO, show_beep, NULL, 2);
1125static SENSOR_DEVICE_ATTR(temp3_beep, S_IRUGO, show_beep, NULL, 2);
1126
Jean Delvare5f2dc792010-03-05 22:17:18 +01001127static ssize_t show_vrm_reg(struct device *dev, struct device_attribute *attr,
1128 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129{
Jean Delvare90d66192007-10-08 18:24:35 +02001130 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvarea7be58a2005-12-18 16:40:14 +01001131 return sprintf(buf, "%u\n", data->vrm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132}
Jean Delvare5f2dc792010-03-05 22:17:18 +01001133static ssize_t store_vrm_reg(struct device *dev, struct device_attribute *attr,
1134 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001136 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001137 unsigned long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
Jean Delvaref5f64502010-03-05 22:17:19 +01001139 if (strict_strtoul(buf, 10, &val) < 0)
1140 return -EINVAL;
1141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 data->vrm = val;
1143
1144 return count;
1145}
1146static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm_reg, store_vrm_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Jean Delvare5f2dc792010-03-05 22:17:18 +01001148static ssize_t show_vid_reg(struct device *dev, struct device_attribute *attr,
1149 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150{
1151 struct it87_data *data = it87_update_device(dev);
1152 return sprintf(buf, "%ld\n", (long) vid_from_reg(data->vid, data->vrm));
1153}
1154static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL);
Jean Delvare87808be2006-09-24 21:17:13 +02001155
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001156static ssize_t show_name(struct device *dev, struct device_attribute
1157 *devattr, char *buf)
1158{
1159 struct it87_data *data = dev_get_drvdata(dev);
1160 return sprintf(buf, "%s\n", data->name);
1161}
1162static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
1163
Jean Delvare87808be2006-09-24 21:17:13 +02001164static struct attribute *it87_attributes[] = {
1165 &sensor_dev_attr_in0_input.dev_attr.attr,
1166 &sensor_dev_attr_in1_input.dev_attr.attr,
1167 &sensor_dev_attr_in2_input.dev_attr.attr,
1168 &sensor_dev_attr_in3_input.dev_attr.attr,
1169 &sensor_dev_attr_in4_input.dev_attr.attr,
1170 &sensor_dev_attr_in5_input.dev_attr.attr,
1171 &sensor_dev_attr_in6_input.dev_attr.attr,
1172 &sensor_dev_attr_in7_input.dev_attr.attr,
1173 &sensor_dev_attr_in8_input.dev_attr.attr,
1174 &sensor_dev_attr_in0_min.dev_attr.attr,
1175 &sensor_dev_attr_in1_min.dev_attr.attr,
1176 &sensor_dev_attr_in2_min.dev_attr.attr,
1177 &sensor_dev_attr_in3_min.dev_attr.attr,
1178 &sensor_dev_attr_in4_min.dev_attr.attr,
1179 &sensor_dev_attr_in5_min.dev_attr.attr,
1180 &sensor_dev_attr_in6_min.dev_attr.attr,
1181 &sensor_dev_attr_in7_min.dev_attr.attr,
1182 &sensor_dev_attr_in0_max.dev_attr.attr,
1183 &sensor_dev_attr_in1_max.dev_attr.attr,
1184 &sensor_dev_attr_in2_max.dev_attr.attr,
1185 &sensor_dev_attr_in3_max.dev_attr.attr,
1186 &sensor_dev_attr_in4_max.dev_attr.attr,
1187 &sensor_dev_attr_in5_max.dev_attr.attr,
1188 &sensor_dev_attr_in6_max.dev_attr.attr,
1189 &sensor_dev_attr_in7_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001190 &sensor_dev_attr_in0_alarm.dev_attr.attr,
1191 &sensor_dev_attr_in1_alarm.dev_attr.attr,
1192 &sensor_dev_attr_in2_alarm.dev_attr.attr,
1193 &sensor_dev_attr_in3_alarm.dev_attr.attr,
1194 &sensor_dev_attr_in4_alarm.dev_attr.attr,
1195 &sensor_dev_attr_in5_alarm.dev_attr.attr,
1196 &sensor_dev_attr_in6_alarm.dev_attr.attr,
1197 &sensor_dev_attr_in7_alarm.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001198
1199 &sensor_dev_attr_temp1_input.dev_attr.attr,
1200 &sensor_dev_attr_temp2_input.dev_attr.attr,
1201 &sensor_dev_attr_temp3_input.dev_attr.attr,
1202 &sensor_dev_attr_temp1_max.dev_attr.attr,
1203 &sensor_dev_attr_temp2_max.dev_attr.attr,
1204 &sensor_dev_attr_temp3_max.dev_attr.attr,
1205 &sensor_dev_attr_temp1_min.dev_attr.attr,
1206 &sensor_dev_attr_temp2_min.dev_attr.attr,
1207 &sensor_dev_attr_temp3_min.dev_attr.attr,
1208 &sensor_dev_attr_temp1_type.dev_attr.attr,
1209 &sensor_dev_attr_temp2_type.dev_attr.attr,
1210 &sensor_dev_attr_temp3_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001211 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
1212 &sensor_dev_attr_temp2_alarm.dev_attr.attr,
1213 &sensor_dev_attr_temp3_alarm.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001214
1215 &dev_attr_alarms.attr,
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001216 &dev_attr_name.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001217 NULL
1218};
1219
1220static const struct attribute_group it87_group = {
1221 .attrs = it87_attributes,
1222};
1223
Jean Delvared9b327c2010-03-05 22:17:17 +01001224static struct attribute *it87_attributes_beep[] = {
1225 &sensor_dev_attr_in0_beep.dev_attr.attr,
1226 &sensor_dev_attr_in1_beep.dev_attr.attr,
1227 &sensor_dev_attr_in2_beep.dev_attr.attr,
1228 &sensor_dev_attr_in3_beep.dev_attr.attr,
1229 &sensor_dev_attr_in4_beep.dev_attr.attr,
1230 &sensor_dev_attr_in5_beep.dev_attr.attr,
1231 &sensor_dev_attr_in6_beep.dev_attr.attr,
1232 &sensor_dev_attr_in7_beep.dev_attr.attr,
1233
1234 &sensor_dev_attr_temp1_beep.dev_attr.attr,
1235 &sensor_dev_attr_temp2_beep.dev_attr.attr,
1236 &sensor_dev_attr_temp3_beep.dev_attr.attr,
1237 NULL
1238};
1239
1240static const struct attribute_group it87_group_beep = {
1241 .attrs = it87_attributes_beep,
1242};
1243
Jean Delvare723a0aa2010-03-05 22:17:16 +01001244static struct attribute *it87_attributes_fan16[5][3+1] = { {
Jean Delvare87808be2006-09-24 21:17:13 +02001245 &sensor_dev_attr_fan1_input16.dev_attr.attr,
1246 &sensor_dev_attr_fan1_min16.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001247 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
1248 NULL
1249}, {
Jean Delvare87808be2006-09-24 21:17:13 +02001250 &sensor_dev_attr_fan2_input16.dev_attr.attr,
1251 &sensor_dev_attr_fan2_min16.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001252 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
1253 NULL
1254}, {
Jean Delvare87808be2006-09-24 21:17:13 +02001255 &sensor_dev_attr_fan3_input16.dev_attr.attr,
1256 &sensor_dev_attr_fan3_min16.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001257 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
1258 NULL
1259}, {
Jean Delvarec7f1f712007-09-03 17:11:46 +02001260 &sensor_dev_attr_fan4_input16.dev_attr.attr,
1261 &sensor_dev_attr_fan4_min16.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001262 &sensor_dev_attr_fan4_alarm.dev_attr.attr,
1263 NULL
1264}, {
Jean Delvarec7f1f712007-09-03 17:11:46 +02001265 &sensor_dev_attr_fan5_input16.dev_attr.attr,
1266 &sensor_dev_attr_fan5_min16.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001267 &sensor_dev_attr_fan5_alarm.dev_attr.attr,
1268 NULL
1269} };
Jean Delvare87808be2006-09-24 21:17:13 +02001270
Jean Delvare723a0aa2010-03-05 22:17:16 +01001271static const struct attribute_group it87_group_fan16[5] = {
1272 { .attrs = it87_attributes_fan16[0] },
1273 { .attrs = it87_attributes_fan16[1] },
1274 { .attrs = it87_attributes_fan16[2] },
1275 { .attrs = it87_attributes_fan16[3] },
1276 { .attrs = it87_attributes_fan16[4] },
1277};
1278
1279static struct attribute *it87_attributes_fan[3][4+1] = { {
Jean Delvare87808be2006-09-24 21:17:13 +02001280 &sensor_dev_attr_fan1_input.dev_attr.attr,
1281 &sensor_dev_attr_fan1_min.dev_attr.attr,
1282 &sensor_dev_attr_fan1_div.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001283 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
1284 NULL
1285}, {
Jean Delvare87808be2006-09-24 21:17:13 +02001286 &sensor_dev_attr_fan2_input.dev_attr.attr,
1287 &sensor_dev_attr_fan2_min.dev_attr.attr,
1288 &sensor_dev_attr_fan2_div.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001289 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
1290 NULL
1291}, {
Jean Delvare87808be2006-09-24 21:17:13 +02001292 &sensor_dev_attr_fan3_input.dev_attr.attr,
1293 &sensor_dev_attr_fan3_min.dev_attr.attr,
1294 &sensor_dev_attr_fan3_div.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001295 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001296 NULL
1297} };
Jean Delvare0124dd72007-11-25 16:16:41 +01001298
Jean Delvare723a0aa2010-03-05 22:17:16 +01001299static const struct attribute_group it87_group_fan[3] = {
1300 { .attrs = it87_attributes_fan[0] },
1301 { .attrs = it87_attributes_fan[1] },
1302 { .attrs = it87_attributes_fan[2] },
1303};
1304
1305static const struct attribute_group *
1306it87_get_fan_group(const struct it87_data *data)
1307{
1308 return has_16bit_fans(data) ? it87_group_fan16 : it87_group_fan;
1309}
1310
1311static struct attribute *it87_attributes_pwm[3][4+1] = { {
Jean Delvare87808be2006-09-24 21:17:13 +02001312 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001313 &sensor_dev_attr_pwm1.dev_attr.attr,
Jean Delvared5b0b5d2007-12-14 14:41:53 +01001314 &dev_attr_pwm1_freq.attr,
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001315 &sensor_dev_attr_pwm1_auto_channels_temp.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001316 NULL
1317}, {
1318 &sensor_dev_attr_pwm2_enable.dev_attr.attr,
1319 &sensor_dev_attr_pwm2.dev_attr.attr,
1320 &dev_attr_pwm2_freq.attr,
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001321 &sensor_dev_attr_pwm2_auto_channels_temp.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001322 NULL
1323}, {
1324 &sensor_dev_attr_pwm3_enable.dev_attr.attr,
1325 &sensor_dev_attr_pwm3.dev_attr.attr,
1326 &dev_attr_pwm3_freq.attr,
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001327 &sensor_dev_attr_pwm3_auto_channels_temp.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001328 NULL
1329} };
Jean Delvare87808be2006-09-24 21:17:13 +02001330
Jean Delvare723a0aa2010-03-05 22:17:16 +01001331static const struct attribute_group it87_group_pwm[3] = {
1332 { .attrs = it87_attributes_pwm[0] },
1333 { .attrs = it87_attributes_pwm[1] },
1334 { .attrs = it87_attributes_pwm[2] },
1335};
1336
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001337static struct attribute *it87_attributes_autopwm[3][9+1] = { {
1338 &sensor_dev_attr_pwm1_auto_point1_pwm.dev_attr.attr,
1339 &sensor_dev_attr_pwm1_auto_point2_pwm.dev_attr.attr,
1340 &sensor_dev_attr_pwm1_auto_point3_pwm.dev_attr.attr,
1341 &sensor_dev_attr_pwm1_auto_point4_pwm.dev_attr.attr,
1342 &sensor_dev_attr_pwm1_auto_point1_temp.dev_attr.attr,
1343 &sensor_dev_attr_pwm1_auto_point1_temp_hyst.dev_attr.attr,
1344 &sensor_dev_attr_pwm1_auto_point2_temp.dev_attr.attr,
1345 &sensor_dev_attr_pwm1_auto_point3_temp.dev_attr.attr,
1346 &sensor_dev_attr_pwm1_auto_point4_temp.dev_attr.attr,
1347 NULL
1348}, {
1349 &sensor_dev_attr_pwm2_auto_point1_pwm.dev_attr.attr,
1350 &sensor_dev_attr_pwm2_auto_point2_pwm.dev_attr.attr,
1351 &sensor_dev_attr_pwm2_auto_point3_pwm.dev_attr.attr,
1352 &sensor_dev_attr_pwm2_auto_point4_pwm.dev_attr.attr,
1353 &sensor_dev_attr_pwm2_auto_point1_temp.dev_attr.attr,
1354 &sensor_dev_attr_pwm2_auto_point1_temp_hyst.dev_attr.attr,
1355 &sensor_dev_attr_pwm2_auto_point2_temp.dev_attr.attr,
1356 &sensor_dev_attr_pwm2_auto_point3_temp.dev_attr.attr,
1357 &sensor_dev_attr_pwm2_auto_point4_temp.dev_attr.attr,
1358 NULL
1359}, {
1360 &sensor_dev_attr_pwm3_auto_point1_pwm.dev_attr.attr,
1361 &sensor_dev_attr_pwm3_auto_point2_pwm.dev_attr.attr,
1362 &sensor_dev_attr_pwm3_auto_point3_pwm.dev_attr.attr,
1363 &sensor_dev_attr_pwm3_auto_point4_pwm.dev_attr.attr,
1364 &sensor_dev_attr_pwm3_auto_point1_temp.dev_attr.attr,
1365 &sensor_dev_attr_pwm3_auto_point1_temp_hyst.dev_attr.attr,
1366 &sensor_dev_attr_pwm3_auto_point2_temp.dev_attr.attr,
1367 &sensor_dev_attr_pwm3_auto_point3_temp.dev_attr.attr,
1368 &sensor_dev_attr_pwm3_auto_point4_temp.dev_attr.attr,
1369 NULL
1370} };
1371
1372static const struct attribute_group it87_group_autopwm[3] = {
1373 { .attrs = it87_attributes_autopwm[0] },
1374 { .attrs = it87_attributes_autopwm[1] },
1375 { .attrs = it87_attributes_autopwm[2] },
1376};
1377
Jean Delvared9b327c2010-03-05 22:17:17 +01001378static struct attribute *it87_attributes_fan_beep[] = {
1379 &sensor_dev_attr_fan1_beep.dev_attr.attr,
1380 &sensor_dev_attr_fan2_beep.dev_attr.attr,
1381 &sensor_dev_attr_fan3_beep.dev_attr.attr,
1382 &sensor_dev_attr_fan4_beep.dev_attr.attr,
1383 &sensor_dev_attr_fan5_beep.dev_attr.attr,
1384};
1385
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01001386static struct attribute *it87_attributes_vid[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02001387 &dev_attr_vrm.attr,
1388 &dev_attr_cpu0_vid.attr,
1389 NULL
1390};
1391
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01001392static const struct attribute_group it87_group_vid = {
1393 .attrs = it87_attributes_vid,
Jean Delvare87808be2006-09-24 21:17:13 +02001394};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
Jean Delvare2d8672c2005-07-19 23:56:35 +02001396/* SuperIO detection - will change isa_address if a chip is found */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001397static int __init it87_find(unsigned short *address,
1398 struct it87_sio_data *sio_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399{
1400 int err = -ENODEV;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001401 u16 chip_type;
Jean Delvare98dd22c2008-10-09 15:33:58 +02001402 const char *board_vendor, *board_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
1404 superio_enter();
Jean Delvare67b671b2007-12-06 23:13:42 +01001405 chip_type = force_id ? force_id : superio_inw(DEVID);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001406
1407 switch (chip_type) {
1408 case IT8705F_DEVID:
1409 sio_data->type = it87;
1410 break;
1411 case IT8712F_DEVID:
1412 sio_data->type = it8712;
1413 break;
1414 case IT8716F_DEVID:
1415 case IT8726F_DEVID:
1416 sio_data->type = it8716;
1417 break;
1418 case IT8718F_DEVID:
1419 sio_data->type = it8718;
1420 break;
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +01001421 case IT8720F_DEVID:
1422 sio_data->type = it8720;
1423 break;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001424 case 0xffff: /* No device at all */
1425 goto exit;
1426 default:
1427 pr_debug(DRVNAME ": Unsupported chip (DEVID=0x%x)\n",
1428 chip_type);
1429 goto exit;
1430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Jean Delvare87673dd2006-08-28 14:37:19 +02001432 superio_select(PME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 if (!(superio_inb(IT87_ACT_REG) & 0x01)) {
1434 pr_info("it87: Device not activated, skipping\n");
1435 goto exit;
1436 }
1437
1438 *address = superio_inw(IT87_BASE_REG) & ~(IT87_EXTENT - 1);
1439 if (*address == 0) {
1440 pr_info("it87: Base address not set, skipping\n");
1441 goto exit;
1442 }
1443
1444 err = 0;
Andrew Paprocki04751692008-08-06 22:41:06 +02001445 sio_data->revision = superio_inb(DEVREV) & 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 pr_info("it87: Found IT%04xF chip at 0x%x, revision %d\n",
Andrew Paprocki04751692008-08-06 22:41:06 +02001447 chip_type, *address, sio_data->revision);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Jean Delvare87673dd2006-08-28 14:37:19 +02001449 /* Read GPIO config and VID value from LDN 7 (GPIO) */
Jean Delvare895ff262009-12-09 20:35:47 +01001450 if (sio_data->type == it87) {
1451 /* The IT8705F doesn't have VID pins at all */
1452 sio_data->skip_vid = 1;
Jean Delvared9b327c2010-03-05 22:17:17 +01001453
1454 /* The IT8705F has a different LD number for GPIO */
1455 superio_select(5);
1456 sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f;
Jean Delvare895ff262009-12-09 20:35:47 +01001457 } else {
Jean Delvare87673dd2006-08-28 14:37:19 +02001458 int reg;
1459
1460 superio_select(GPIO);
Jean Delvare895ff262009-12-09 20:35:47 +01001461 /* We need at least 4 VID pins */
1462 reg = superio_inb(IT87_SIO_GPIO3_REG);
1463 if (reg & 0x0f) {
1464 pr_info("it87: VID is disabled (pins used for GPIO)\n");
1465 sio_data->skip_vid = 1;
1466 }
1467
Jean Delvare591ec652009-12-09 20:35:48 +01001468 /* Check if fan3 is there or not */
1469 if (reg & (1 << 6))
1470 sio_data->skip_pwm |= (1 << 2);
1471 if (reg & (1 << 7))
1472 sio_data->skip_fan |= (1 << 2);
1473
1474 /* Check if fan2 is there or not */
1475 reg = superio_inb(IT87_SIO_GPIO5_REG);
1476 if (reg & (1 << 1))
1477 sio_data->skip_pwm |= (1 << 1);
1478 if (reg & (1 << 2))
1479 sio_data->skip_fan |= (1 << 1);
1480
Jean Delvare895ff262009-12-09 20:35:47 +01001481 if ((sio_data->type == it8718 || sio_data->type == it8720)
1482 && !(sio_data->skip_vid))
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001483 sio_data->vid_value = superio_inb(IT87_SIO_VID_REG);
Jean Delvare87673dd2006-08-28 14:37:19 +02001484
1485 reg = superio_inb(IT87_SIO_PINX2_REG);
1486 if (reg & (1 << 0))
1487 pr_info("it87: in3 is VCC (+5V)\n");
1488 if (reg & (1 << 1))
1489 pr_info("it87: in7 is VCCH (+5V Stand-By)\n");
Jean Delvared9b327c2010-03-05 22:17:17 +01001490
1491 sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f;
Jean Delvare87673dd2006-08-28 14:37:19 +02001492 }
Jean Delvared9b327c2010-03-05 22:17:17 +01001493 if (sio_data->beep_pin)
1494 pr_info("it87: Beeping is supported\n");
Jean Delvare87673dd2006-08-28 14:37:19 +02001495
Jean Delvare98dd22c2008-10-09 15:33:58 +02001496 /* Disable specific features based on DMI strings */
1497 board_vendor = dmi_get_system_info(DMI_BOARD_VENDOR);
1498 board_name = dmi_get_system_info(DMI_BOARD_NAME);
1499 if (board_vendor && board_name) {
1500 if (strcmp(board_vendor, "nVIDIA") == 0
1501 && strcmp(board_name, "FN68PT") == 0) {
1502 /* On the Shuttle SN68PT, FAN_CTL2 is apparently not
1503 connected to a fan, but to something else. One user
1504 has reported instant system power-off when changing
1505 the PWM2 duty cycle, so we disable it.
1506 I use the board name string as the trigger in case
1507 the same board is ever used in other systems. */
1508 pr_info("it87: Disabling pwm2 due to "
1509 "hardware constraints\n");
1510 sio_data->skip_pwm = (1 << 1);
1511 }
1512 }
1513
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514exit:
1515 superio_exit();
1516 return err;
1517}
1518
Jean Delvare723a0aa2010-03-05 22:17:16 +01001519static void it87_remove_files(struct device *dev)
1520{
1521 struct it87_data *data = platform_get_drvdata(pdev);
1522 struct it87_sio_data *sio_data = dev->platform_data;
1523 const struct attribute_group *fan_group = it87_get_fan_group(data);
1524 int i;
1525
1526 sysfs_remove_group(&dev->kobj, &it87_group);
Jean Delvared9b327c2010-03-05 22:17:17 +01001527 if (sio_data->beep_pin)
1528 sysfs_remove_group(&dev->kobj, &it87_group_beep);
Jean Delvare723a0aa2010-03-05 22:17:16 +01001529 for (i = 0; i < 5; i++) {
1530 if (!(data->has_fan & (1 << i)))
1531 continue;
1532 sysfs_remove_group(&dev->kobj, &fan_group[i]);
Jean Delvared9b327c2010-03-05 22:17:17 +01001533 if (sio_data->beep_pin)
1534 sysfs_remove_file(&dev->kobj,
1535 it87_attributes_fan_beep[i]);
Jean Delvare723a0aa2010-03-05 22:17:16 +01001536 }
1537 for (i = 0; i < 3; i++) {
1538 if (sio_data->skip_pwm & (1 << 0))
1539 continue;
1540 sysfs_remove_group(&dev->kobj, &it87_group_pwm[i]);
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001541 if (has_old_autopwm(data))
1542 sysfs_remove_group(&dev->kobj,
1543 &it87_group_autopwm[i]);
Jean Delvare723a0aa2010-03-05 22:17:16 +01001544 }
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01001545 if (!sio_data->skip_vid)
1546 sysfs_remove_group(&dev->kobj, &it87_group_vid);
Jean Delvare723a0aa2010-03-05 22:17:16 +01001547}
1548
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001549static int __devinit it87_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 struct it87_data *data;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001552 struct resource *res;
1553 struct device *dev = &pdev->dev;
1554 struct it87_sio_data *sio_data = dev->platform_data;
Jean Delvare723a0aa2010-03-05 22:17:16 +01001555 const struct attribute_group *fan_group;
1556 int err = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 int enable_pwm_interface;
Jean Delvared9b327c2010-03-05 22:17:17 +01001558 int fan_beep_need_rw;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001559 static const char *names[] = {
1560 "it87",
1561 "it8712",
1562 "it8716",
1563 "it8718",
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +01001564 "it8720",
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001565 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001567 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05001568 if (!request_region(res->start, IT87_EC_EXTENT, DRVNAME)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001569 dev_err(dev, "Failed to request region 0x%lx-0x%lx\n",
1570 (unsigned long)res->start,
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05001571 (unsigned long)(res->start + IT87_EC_EXTENT - 1));
Jean Delvare8e9afcb2006-12-12 18:18:28 +01001572 err = -EBUSY;
1573 goto ERROR0;
1574 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Jean Delvare5f2dc792010-03-05 22:17:18 +01001576 data = kzalloc(sizeof(struct it87_data), GFP_KERNEL);
1577 if (!data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 err = -ENOMEM;
1579 goto ERROR1;
1580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001582 data->addr = res->start;
1583 data->type = sio_data->type;
Andrew Paprocki04751692008-08-06 22:41:06 +02001584 data->revision = sio_data->revision;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001585 data->name = names[sio_data->type];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
1587 /* Now, we do the remaining detection. */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001588 if ((it87_read_value(data, IT87_REG_CONFIG) & 0x80)
1589 || it87_read_value(data, IT87_REG_CHIPID) != 0x90) {
Jean Delvare8e9afcb2006-12-12 18:18:28 +01001590 err = -ENODEV;
1591 goto ERROR2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 }
1593
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001594 platform_set_drvdata(pdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001596 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 /* Check PWM configuration */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001599 enable_pwm_interface = it87_check_pwm(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
1601 /* Initialize the IT87 chip */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001602 it87_init_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
1604 /* Register sysfs hooks */
Jean Delvare5f2dc792010-03-05 22:17:18 +01001605 err = sysfs_create_group(&dev->kobj, &it87_group);
1606 if (err)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001607 goto ERROR2;
Jean Delvare17d648b2006-08-28 14:23:46 +02001608
Jean Delvared9b327c2010-03-05 22:17:17 +01001609 if (sio_data->beep_pin) {
1610 err = sysfs_create_group(&dev->kobj, &it87_group_beep);
1611 if (err)
1612 goto ERROR4;
1613 }
1614
Jean Delvare9060f8b2006-08-28 14:24:17 +02001615 /* Do not create fan files for disabled fans */
Jean Delvare723a0aa2010-03-05 22:17:16 +01001616 fan_group = it87_get_fan_group(data);
Jean Delvared9b327c2010-03-05 22:17:17 +01001617 fan_beep_need_rw = 1;
Jean Delvare723a0aa2010-03-05 22:17:16 +01001618 for (i = 0; i < 5; i++) {
1619 if (!(data->has_fan & (1 << i)))
1620 continue;
1621 err = sysfs_create_group(&dev->kobj, &fan_group[i]);
1622 if (err)
1623 goto ERROR4;
Jean Delvared9b327c2010-03-05 22:17:17 +01001624
1625 if (sio_data->beep_pin) {
1626 err = sysfs_create_file(&dev->kobj,
1627 it87_attributes_fan_beep[i]);
1628 if (err)
1629 goto ERROR4;
1630 if (!fan_beep_need_rw)
1631 continue;
1632
1633 /* As we have a single beep enable bit for all fans,
1634 * only the first enabled fan has a writable attribute
1635 * for it. */
1636 if (sysfs_chmod_file(&dev->kobj,
1637 it87_attributes_fan_beep[i],
1638 S_IRUGO | S_IWUSR))
1639 dev_dbg(dev, "chmod +w fan%d_beep failed\n",
1640 i + 1);
1641 fan_beep_need_rw = 0;
1642 }
Jean Delvare17d648b2006-08-28 14:23:46 +02001643 }
1644
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 if (enable_pwm_interface) {
Jean Delvare723a0aa2010-03-05 22:17:16 +01001646 for (i = 0; i < 3; i++) {
1647 if (sio_data->skip_pwm & (1 << i))
1648 continue;
1649 err = sysfs_create_group(&dev->kobj,
1650 &it87_group_pwm[i]);
1651 if (err)
Jean Delvare98dd22c2008-10-09 15:33:58 +02001652 goto ERROR4;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001653
1654 if (!has_old_autopwm(data))
1655 continue;
1656 err = sysfs_create_group(&dev->kobj,
1657 &it87_group_autopwm[i]);
1658 if (err)
1659 goto ERROR4;
Jean Delvare98dd22c2008-10-09 15:33:58 +02001660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 }
1662
Jean Delvare895ff262009-12-09 20:35:47 +01001663 if (!sio_data->skip_vid) {
Jean Delvare303760b2005-07-31 21:52:01 +02001664 data->vrm = vid_which_vrm();
Jean Delvare87673dd2006-08-28 14:37:19 +02001665 /* VID reading from Super-I/O config space if available */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001666 data->vid = sio_data->vid_value;
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01001667 err = sysfs_create_group(&dev->kobj, &it87_group_vid);
1668 if (err)
Jean Delvare87808be2006-09-24 21:17:13 +02001669 goto ERROR4;
1670 }
1671
Tony Jones1beeffe2007-08-20 13:46:20 -07001672 data->hwmon_dev = hwmon_device_register(dev);
1673 if (IS_ERR(data->hwmon_dev)) {
1674 err = PTR_ERR(data->hwmon_dev);
Jean Delvare87808be2006-09-24 21:17:13 +02001675 goto ERROR4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 }
1677
1678 return 0;
1679
Jean Delvare87808be2006-09-24 21:17:13 +02001680ERROR4:
Jean Delvare723a0aa2010-03-05 22:17:16 +01001681 it87_remove_files(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682ERROR2:
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001683 platform_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 kfree(data);
1685ERROR1:
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05001686 release_region(res->start, IT87_EC_EXTENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687ERROR0:
1688 return err;
1689}
1690
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001691static int __devexit it87_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001693 struct it87_data *data = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
Tony Jones1beeffe2007-08-20 13:46:20 -07001695 hwmon_device_unregister(data->hwmon_dev);
Jean Delvare723a0aa2010-03-05 22:17:16 +01001696 it87_remove_files(&pdev->dev);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001697
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05001698 release_region(data->addr, IT87_EC_EXTENT);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001699 platform_set_drvdata(pdev, NULL);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001700 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
1702 return 0;
1703}
1704
Jean Delvare7f999aa2007-02-14 21:15:03 +01001705/* Must be called with data->update_lock held, except during initialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
1707 would slow down the IT87 access and should not be necessary. */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001708static int it87_read_value(struct it87_data *data, u8 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001710 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
1711 return inb_p(data->addr + IT87_DATA_REG_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712}
1713
Jean Delvare7f999aa2007-02-14 21:15:03 +01001714/* Must be called with data->update_lock held, except during initialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
1716 would slow down the IT87 access and should not be necessary. */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001717static void it87_write_value(struct it87_data *data, u8 reg, u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001719 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
1720 outb_p(value, data->addr + IT87_DATA_REG_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721}
1722
1723/* Return 1 if and only if the PWM interface is safe to use */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001724static int __devinit it87_check_pwm(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001726 struct it87_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 /* Some BIOSes fail to correctly configure the IT87 fans. All fans off
1728 * and polarity set to active low is sign that this is the case so we
1729 * disable pwm control to protect the user. */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001730 int tmp = it87_read_value(data, IT87_REG_FAN_CTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 if ((tmp & 0x87) == 0) {
1732 if (fix_pwm_polarity) {
1733 /* The user asks us to attempt a chip reconfiguration.
1734 * This means switching to active high polarity and
1735 * inverting all fan speed values. */
1736 int i;
1737 u8 pwm[3];
1738
1739 for (i = 0; i < 3; i++)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001740 pwm[i] = it87_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 IT87_REG_PWM(i));
1742
1743 /* If any fan is in automatic pwm mode, the polarity
1744 * might be correct, as suspicious as it seems, so we
1745 * better don't change anything (but still disable the
1746 * PWM interface). */
1747 if (!((pwm[0] | pwm[1] | pwm[2]) & 0x80)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001748 dev_info(dev, "Reconfiguring PWM to "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 "active high polarity\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001750 it87_write_value(data, IT87_REG_FAN_CTL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 tmp | 0x87);
1752 for (i = 0; i < 3; i++)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001753 it87_write_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 IT87_REG_PWM(i),
1755 0x7f & ~pwm[i]);
1756 return 1;
1757 }
1758
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001759 dev_info(dev, "PWM configuration is "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 "too broken to be fixed\n");
1761 }
1762
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001763 dev_info(dev, "Detected broken BIOS "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 "defaults, disabling PWM interface\n");
1765 return 0;
1766 } else if (fix_pwm_polarity) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001767 dev_info(dev, "PWM configuration looks "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 "sane, won't touch\n");
1769 }
1770
1771 return 1;
1772}
1773
1774/* Called when we have found a new IT87. */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001775static void __devinit it87_init_device(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776{
Jean Delvare591ec652009-12-09 20:35:48 +01001777 struct it87_sio_data *sio_data = pdev->dev.platform_data;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001778 struct it87_data *data = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 int tmp, i;
Jean Delvare591ec652009-12-09 20:35:48 +01001780 u8 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Jean Delvareb99883d2010-03-05 22:17:15 +01001782 /* For each PWM channel:
1783 * - If it is in automatic mode, setting to manual mode should set
1784 * the fan to full speed by default.
1785 * - If it is in manual mode, we need a mapping to temperature
1786 * channels to use when later setting to automatic mode later.
1787 * Use a 1:1 mapping by default (we are clueless.)
1788 * In both cases, the value can (and should) be changed by the user
1789 * prior to switching to a different mode. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 for (i = 0; i < 3; i++) {
Jean Delvareb99883d2010-03-05 22:17:15 +01001791 data->pwm_temp_map[i] = i;
1792 data->pwm_duty[i] = 0x7f; /* Full speed */
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001793 data->auto_pwm[i][3] = 0x7f; /* Full speed, hard-coded */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 }
1795
Jean Delvarec5df9b72006-08-28 14:37:54 +02001796 /* Some chips seem to have default value 0xff for all limit
1797 * registers. For low voltage limits it makes no sense and triggers
1798 * alarms, so change to 0 instead. For high temperature limits, it
1799 * means -1 degree C, which surprisingly doesn't trigger an alarm,
1800 * but is still confusing, so change to 127 degrees C. */
1801 for (i = 0; i < 8; i++) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001802 tmp = it87_read_value(data, IT87_REG_VIN_MIN(i));
Jean Delvarec5df9b72006-08-28 14:37:54 +02001803 if (tmp == 0xff)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001804 it87_write_value(data, IT87_REG_VIN_MIN(i), 0);
Jean Delvarec5df9b72006-08-28 14:37:54 +02001805 }
1806 for (i = 0; i < 3; i++) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001807 tmp = it87_read_value(data, IT87_REG_TEMP_HIGH(i));
Jean Delvarec5df9b72006-08-28 14:37:54 +02001808 if (tmp == 0xff)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001809 it87_write_value(data, IT87_REG_TEMP_HIGH(i), 127);
Jean Delvarec5df9b72006-08-28 14:37:54 +02001810 }
1811
Jean Delvare77fa49d2009-01-07 16:37:35 +01001812 /* Check if temperature channels are reset manually or by some reason */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001813 tmp = it87_read_value(data, IT87_REG_TEMP_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 if ((tmp & 0x3f) == 0) {
1815 /* Temp1,Temp3=thermistor; Temp2=thermal diode */
1816 tmp = (tmp & 0xc0) | 0x2a;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001817 it87_write_value(data, IT87_REG_TEMP_ENABLE, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 }
1819 data->sensor = tmp;
1820
1821 /* Check if voltage monitors are reset manually or by some reason */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001822 tmp = it87_read_value(data, IT87_REG_VIN_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 if ((tmp & 0xff) == 0) {
1824 /* Enable all voltage monitors */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001825 it87_write_value(data, IT87_REG_VIN_ENABLE, 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 }
1827
1828 /* Check if tachometers are reset manually or by some reason */
Jean Delvare591ec652009-12-09 20:35:48 +01001829 mask = 0x70 & ~(sio_data->skip_fan << 4);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001830 data->fan_main_ctrl = it87_read_value(data, IT87_REG_FAN_MAIN_CTRL);
Jean Delvare591ec652009-12-09 20:35:48 +01001831 if ((data->fan_main_ctrl & mask) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 /* Enable all fan tachometers */
Jean Delvare591ec652009-12-09 20:35:48 +01001833 data->fan_main_ctrl |= mask;
Jean Delvare5f2dc792010-03-05 22:17:18 +01001834 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
1835 data->fan_main_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 }
Jean Delvare9060f8b2006-08-28 14:24:17 +02001837 data->has_fan = (data->fan_main_ctrl >> 4) & 0x07;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
Jean Delvare17d648b2006-08-28 14:23:46 +02001839 /* Set tachometers to 16-bit mode if needed */
Andrew Paprocki04751692008-08-06 22:41:06 +02001840 if (has_16bit_fans(data)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001841 tmp = it87_read_value(data, IT87_REG_FAN_16BIT);
Jean Delvare9060f8b2006-08-28 14:24:17 +02001842 if (~tmp & 0x07 & data->has_fan) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001843 dev_dbg(&pdev->dev,
Jean Delvare17d648b2006-08-28 14:23:46 +02001844 "Setting fan1-3 to 16-bit mode\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001845 it87_write_value(data, IT87_REG_FAN_16BIT,
Jean Delvare17d648b2006-08-28 14:23:46 +02001846 tmp | 0x07);
1847 }
Andrew Paprocki816d8c62008-08-06 22:41:06 +02001848 /* IT8705F only supports three fans. */
1849 if (data->type != it87) {
1850 if (tmp & (1 << 4))
1851 data->has_fan |= (1 << 3); /* fan4 enabled */
1852 if (tmp & (1 << 5))
1853 data->has_fan |= (1 << 4); /* fan5 enabled */
1854 }
Jean Delvare17d648b2006-08-28 14:23:46 +02001855 }
1856
Jean Delvare591ec652009-12-09 20:35:48 +01001857 /* Fan input pins may be used for alternative functions */
1858 data->has_fan &= ~sio_data->skip_fan;
1859
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 /* Start monitoring */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001861 it87_write_value(data, IT87_REG_CONFIG,
1862 (it87_read_value(data, IT87_REG_CONFIG) & 0x36)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 | (update_vbat ? 0x41 : 0x01));
1864}
1865
Jean Delvareb99883d2010-03-05 22:17:15 +01001866static void it87_update_pwm_ctrl(struct it87_data *data, int nr)
1867{
1868 data->pwm_ctrl[nr] = it87_read_value(data, IT87_REG_PWM(nr));
1869 if (data->pwm_ctrl[nr] & 0x80) /* Automatic mode */
1870 data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03;
1871 else /* Manual mode */
1872 data->pwm_duty[nr] = data->pwm_ctrl[nr] & 0x7f;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001873
1874 if (has_old_autopwm(data)) {
1875 int i;
1876
1877 for (i = 0; i < 5 ; i++)
1878 data->auto_temp[nr][i] = it87_read_value(data,
1879 IT87_REG_AUTO_TEMP(nr, i));
1880 for (i = 0; i < 3 ; i++)
1881 data->auto_pwm[nr][i] = it87_read_value(data,
1882 IT87_REG_AUTO_PWM(nr, i));
1883 }
Jean Delvareb99883d2010-03-05 22:17:15 +01001884}
1885
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886static struct it87_data *it87_update_device(struct device *dev)
1887{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001888 struct it87_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 int i;
1890
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001891 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
1893 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
1894 || !data->valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 if (update_vbat) {
1896 /* Cleared after each update, so reenable. Value
Jean Delvare5f2dc792010-03-05 22:17:18 +01001897 returned by this read will be previous value */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001898 it87_write_value(data, IT87_REG_CONFIG,
Jean Delvare5f2dc792010-03-05 22:17:18 +01001899 it87_read_value(data, IT87_REG_CONFIG) | 0x40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 }
1901 for (i = 0; i <= 7; i++) {
1902 data->in[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01001903 it87_read_value(data, IT87_REG_VIN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 data->in_min[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01001905 it87_read_value(data, IT87_REG_VIN_MIN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 data->in_max[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01001907 it87_read_value(data, IT87_REG_VIN_MAX(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 }
Jean Delvare3543a532006-08-28 14:27:25 +02001909 /* in8 (battery) has no limit registers */
Jean Delvare5f2dc792010-03-05 22:17:18 +01001910 data->in[8] = it87_read_value(data, IT87_REG_VIN(8));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Jean Delvarec7f1f712007-09-03 17:11:46 +02001912 for (i = 0; i < 5; i++) {
Jean Delvare9060f8b2006-08-28 14:24:17 +02001913 /* Skip disabled fans */
1914 if (!(data->has_fan & (1 << i)))
1915 continue;
1916
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 data->fan_min[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01001918 it87_read_value(data, IT87_REG_FAN_MIN[i]);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001919 data->fan[i] = it87_read_value(data,
Jean Delvarec7f1f712007-09-03 17:11:46 +02001920 IT87_REG_FAN[i]);
Jean Delvare17d648b2006-08-28 14:23:46 +02001921 /* Add high byte if in 16-bit mode */
Andrew Paprocki04751692008-08-06 22:41:06 +02001922 if (has_16bit_fans(data)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001923 data->fan[i] |= it87_read_value(data,
Jean Delvarec7f1f712007-09-03 17:11:46 +02001924 IT87_REG_FANX[i]) << 8;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001925 data->fan_min[i] |= it87_read_value(data,
Jean Delvarec7f1f712007-09-03 17:11:46 +02001926 IT87_REG_FANX_MIN[i]) << 8;
Jean Delvare17d648b2006-08-28 14:23:46 +02001927 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 }
1929 for (i = 0; i < 3; i++) {
1930 data->temp[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01001931 it87_read_value(data, IT87_REG_TEMP(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 data->temp_high[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01001933 it87_read_value(data, IT87_REG_TEMP_HIGH(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 data->temp_low[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01001935 it87_read_value(data, IT87_REG_TEMP_LOW(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 }
1937
Jean Delvare17d648b2006-08-28 14:23:46 +02001938 /* Newer chips don't have clock dividers */
Andrew Paprocki04751692008-08-06 22:41:06 +02001939 if ((data->has_fan & 0x07) && !has_16bit_fans(data)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001940 i = it87_read_value(data, IT87_REG_FAN_DIV);
Jean Delvare17d648b2006-08-28 14:23:46 +02001941 data->fan_div[0] = i & 0x07;
1942 data->fan_div[1] = (i >> 3) & 0x07;
1943 data->fan_div[2] = (i & 0x40) ? 3 : 1;
1944 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
1946 data->alarms =
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001947 it87_read_value(data, IT87_REG_ALARM1) |
1948 (it87_read_value(data, IT87_REG_ALARM2) << 8) |
1949 (it87_read_value(data, IT87_REG_ALARM3) << 16);
Jean Delvared9b327c2010-03-05 22:17:17 +01001950 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
Jean Delvareb99883d2010-03-05 22:17:15 +01001951
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001952 data->fan_main_ctrl = it87_read_value(data,
1953 IT87_REG_FAN_MAIN_CTRL);
1954 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL);
Jean Delvareb99883d2010-03-05 22:17:15 +01001955 for (i = 0; i < 3; i++)
1956 it87_update_pwm_ctrl(data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001958 data->sensor = it87_read_value(data, IT87_REG_TEMP_ENABLE);
Andrew Paprocki04751692008-08-06 22:41:06 +02001959 /* The 8705 does not have VID capability.
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +01001960 The 8718 and the 8720 don't use IT87_REG_VID for the
1961 same purpose. */
Jean Delvare17d648b2006-08-28 14:23:46 +02001962 if (data->type == it8712 || data->type == it8716) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001963 data->vid = it87_read_value(data, IT87_REG_VID);
Jean Delvare17d648b2006-08-28 14:23:46 +02001964 /* The older IT8712F revisions had only 5 VID pins,
1965 but we assume it is always safe to read 6 bits. */
1966 data->vid &= 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 }
1968 data->last_updated = jiffies;
1969 data->valid = 1;
1970 }
1971
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001972 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
1974 return data;
1975}
1976
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001977static int __init it87_device_add(unsigned short address,
1978 const struct it87_sio_data *sio_data)
1979{
1980 struct resource res = {
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05001981 .start = address + IT87_EC_OFFSET,
1982 .end = address + IT87_EC_OFFSET + IT87_EC_EXTENT - 1,
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001983 .name = DRVNAME,
1984 .flags = IORESOURCE_IO,
1985 };
1986 int err;
1987
Jean Delvareb9acb642009-01-07 16:37:35 +01001988 err = acpi_check_resource_conflict(&res);
1989 if (err)
1990 goto exit;
1991
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001992 pdev = platform_device_alloc(DRVNAME, address);
1993 if (!pdev) {
1994 err = -ENOMEM;
1995 printk(KERN_ERR DRVNAME ": Device allocation failed\n");
1996 goto exit;
1997 }
1998
1999 err = platform_device_add_resources(pdev, &res, 1);
2000 if (err) {
2001 printk(KERN_ERR DRVNAME ": Device resource addition failed "
2002 "(%d)\n", err);
2003 goto exit_device_put;
2004 }
2005
2006 err = platform_device_add_data(pdev, sio_data,
2007 sizeof(struct it87_sio_data));
2008 if (err) {
2009 printk(KERN_ERR DRVNAME ": Platform data allocation failed\n");
2010 goto exit_device_put;
2011 }
2012
2013 err = platform_device_add(pdev);
2014 if (err) {
2015 printk(KERN_ERR DRVNAME ": Device addition failed (%d)\n",
2016 err);
2017 goto exit_device_put;
2018 }
2019
2020 return 0;
2021
2022exit_device_put:
2023 platform_device_put(pdev);
2024exit:
2025 return err;
2026}
2027
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028static int __init sm_it87_init(void)
2029{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002030 int err;
Jean Delvare5f2dc792010-03-05 22:17:18 +01002031 unsigned short isa_address = 0;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002032 struct it87_sio_data sio_data;
Jean Delvarefde09502005-07-19 23:51:07 +02002033
Jean Delvare98dd22c2008-10-09 15:33:58 +02002034 memset(&sio_data, 0, sizeof(struct it87_sio_data));
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002035 err = it87_find(&isa_address, &sio_data);
2036 if (err)
2037 return err;
2038 err = platform_driver_register(&it87_driver);
2039 if (err)
2040 return err;
2041
2042 err = it87_device_add(isa_address, &sio_data);
Jean Delvare5f2dc792010-03-05 22:17:18 +01002043 if (err) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002044 platform_driver_unregister(&it87_driver);
2045 return err;
2046 }
2047
2048 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049}
2050
2051static void __exit sm_it87_exit(void)
2052{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002053 platform_device_unregister(pdev);
2054 platform_driver_unregister(&it87_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055}
2056
2057
Jean Delvaref1d8e332007-11-25 16:14:44 +01002058MODULE_AUTHOR("Chris Gauthron, "
Jean Delvareb19367c2006-08-28 14:39:26 +02002059 "Jean Delvare <khali@linux-fr.org>");
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +01002060MODULE_DESCRIPTION("IT8705F/8712F/8716F/8718F/8720F/8726F, SiS950 driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061module_param(update_vbat, bool, 0);
2062MODULE_PARM_DESC(update_vbat, "Update vbat if set else return powerup value");
2063module_param(fix_pwm_polarity, bool, 0);
Jean Delvare5f2dc792010-03-05 22:17:18 +01002064MODULE_PARM_DESC(fix_pwm_polarity,
2065 "Force PWM polarity to active high (DANGEROUS)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066MODULE_LICENSE("GPL");
2067
2068module_init(sm_it87_init);
2069module_exit(sm_it87_exit);