blob: 2f782e3f9a2be4b6a039ec9ef584529c07945248 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 it87.c - Part of lm_sensors, Linux kernel modules for hardware
3 monitoring.
4
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05005 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
Jean Delvare91749992005-10-08 00:10:00 +020013 Supports: IT8705F Super I/O chip w/LPC interface
Jean Delvare8e9afcb2006-12-12 18:18:28 +010014 IT8712F Super I/O chip w/LPC interface
Jean Delvare17d648b2006-08-28 14:23:46 +020015 IT8716F Super I/O chip w/LPC interface
Jean Delvare87673dd2006-08-28 14:37:19 +020016 IT8718F Super I/O chip w/LPC interface
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +010017 IT8720F Super I/O chip w/LPC interface
Rudolf Marek08a8f6e2007-06-09 10:11:16 -040018 IT8726F Super I/O chip w/LPC interface
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 Sis950 A clone of the IT8705F
20
Jean Delvaref1d8e332007-11-25 16:14:44 +010021 Copyright (C) 2001 Chris Gauthron
Jean Delvare0124dd72007-11-25 16:16:41 +010022 Copyright (C) 2005-2007 Jean Delvare <khali@linux-fr.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
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*/
38
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 Delvare87673dd2006-08-28 14:37:19 +0200128#define IT87_SIO_PINX2_REG 0x2c /* Pin selection */
129#define IT87_SIO_VID_REG 0xfc /* VID value */
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131/* Update battery voltage after every reading if true */
132static int update_vbat;
133
134/* Not all BIOSes properly configure the PWM registers */
135static int fix_pwm_polarity;
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137/* Many IT87 constants specified below */
138
139/* Length of ISA address segment */
140#define IT87_EXTENT 8
141
Bjorn Helgaas87b4b662008-01-22 07:21:03 -0500142/* Length of ISA address segment for Environmental Controller */
143#define IT87_EC_EXTENT 2
144
145/* Offset of EC registers from ISA base address */
146#define IT87_EC_OFFSET 5
147
148/* Where are the ISA address/data registers relative to the EC base address */
149#define IT87_ADDR_REG_OFFSET 0
150#define IT87_DATA_REG_OFFSET 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152/*----- The IT87 registers -----*/
153
154#define IT87_REG_CONFIG 0x00
155
156#define IT87_REG_ALARM1 0x01
157#define IT87_REG_ALARM2 0x02
158#define IT87_REG_ALARM3 0x03
159
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +0100160/* The IT8718F and IT8720F have the VID value in a different register, in
161 Super-I/O configuration space. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162#define IT87_REG_VID 0x0a
Andrew Paprocki04751692008-08-06 22:41:06 +0200163/* The IT8705F and IT8712F earlier than revision 0x08 use register 0x0b
164 for fan divisors. Later IT8712F revisions must use 16-bit tachometer
165 mode. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166#define IT87_REG_FAN_DIV 0x0b
Jean Delvare17d648b2006-08-28 14:23:46 +0200167#define IT87_REG_FAN_16BIT 0x0c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169/* Monitors: 9 voltage (0 to 7, battery), 3 temp (1 to 3), 3 fan (1 to 3) */
170
Jean Delvarec7f1f712007-09-03 17:11:46 +0200171static const u8 IT87_REG_FAN[] = { 0x0d, 0x0e, 0x0f, 0x80, 0x82 };
172static const u8 IT87_REG_FAN_MIN[] = { 0x10, 0x11, 0x12, 0x84, 0x86 };
173static const u8 IT87_REG_FANX[] = { 0x18, 0x19, 0x1a, 0x81, 0x83 };
174static const u8 IT87_REG_FANX_MIN[] = { 0x1b, 0x1c, 0x1d, 0x85, 0x87 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175#define IT87_REG_FAN_MAIN_CTRL 0x13
176#define IT87_REG_FAN_CTL 0x14
177#define IT87_REG_PWM(nr) (0x15 + (nr))
178
179#define IT87_REG_VIN(nr) (0x20 + (nr))
180#define IT87_REG_TEMP(nr) (0x29 + (nr))
181
182#define IT87_REG_VIN_MAX(nr) (0x30 + (nr) * 2)
183#define IT87_REG_VIN_MIN(nr) (0x31 + (nr) * 2)
184#define IT87_REG_TEMP_HIGH(nr) (0x40 + (nr) * 2)
185#define IT87_REG_TEMP_LOW(nr) (0x41 + (nr) * 2)
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187#define IT87_REG_VIN_ENABLE 0x50
188#define IT87_REG_TEMP_ENABLE 0x51
189
190#define IT87_REG_CHIPID 0x58
191
192#define IN_TO_REG(val) (SENSORS_LIMIT((((val) + 8)/16),0,255))
193#define IN_FROM_REG(val) ((val) * 16)
194
195static inline u8 FAN_TO_REG(long rpm, int div)
196{
197 if (rpm == 0)
198 return 255;
199 rpm = SENSORS_LIMIT(rpm, 1, 1000000);
200 return SENSORS_LIMIT((1350000 + rpm * div / 2) / (rpm * div), 1,
201 254);
202}
203
Jean Delvare17d648b2006-08-28 14:23:46 +0200204static inline u16 FAN16_TO_REG(long rpm)
205{
206 if (rpm == 0)
207 return 0xffff;
208 return SENSORS_LIMIT((1350000 + rpm) / (rpm * 2), 1, 0xfffe);
209}
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211#define FAN_FROM_REG(val,div) ((val)==0?-1:(val)==255?0:1350000/((val)*(div)))
Jean Delvare17d648b2006-08-28 14:23:46 +0200212/* The divider is fixed to 2 in 16-bit mode */
213#define FAN16_FROM_REG(val) ((val)==0?-1:(val)==0xffff?0:1350000/((val)*2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215#define TEMP_TO_REG(val) (SENSORS_LIMIT(((val)<0?(((val)-500)/1000):\
216 ((val)+500)/1000),-128,127))
Jean Delvaree267d252009-03-12 13:36:39 +0100217#define TEMP_FROM_REG(val) ((val) * 1000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219#define PWM_TO_REG(val) ((val) >> 1)
220#define PWM_FROM_REG(val) (((val)&0x7f) << 1)
221
222static int DIV_TO_REG(int val)
223{
224 int answer = 0;
Jean Delvareb9e349f2006-08-28 14:26:22 +0200225 while (answer < 7 && (val >>= 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 answer++;
227 return answer;
228}
229#define DIV_FROM_REG(val) (1 << (val))
230
Jean Delvaref8d0c192007-02-14 21:15:02 +0100231static const unsigned int pwm_freq[8] = {
232 48000000 / 128,
233 24000000 / 128,
234 12000000 / 128,
235 8000000 / 128,
236 6000000 / 128,
237 3000000 / 128,
238 1500000 / 128,
239 750000 / 128,
240};
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200243struct it87_sio_data {
244 enum chips type;
245 /* Values read from Super-I/O config space */
Andrew Paprocki04751692008-08-06 22:41:06 +0200246 u8 revision;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200247 u8 vid_value;
Jean Delvare895ff262009-12-09 20:35:47 +0100248 u8 skip_vid;
Jean Delvare98dd22c2008-10-09 15:33:58 +0200249 /* Values set based on DMI strings */
250 u8 skip_pwm;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200251};
252
Jean Delvareed6bafb2007-02-14 21:15:03 +0100253/* For each registered chip, we need to keep some data in memory.
254 The structure is dynamically allocated. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255struct it87_data {
Tony Jones1beeffe2007-08-20 13:46:20 -0700256 struct device *hwmon_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 enum chips type;
Andrew Paprocki04751692008-08-06 22:41:06 +0200258 u8 revision;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200260 unsigned short addr;
261 const char *name;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100262 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 char valid; /* !=0 if following fields are valid */
264 unsigned long last_updated; /* In jiffies */
265
266 u8 in[9]; /* Register value */
Jean Delvare3543a532006-08-28 14:27:25 +0200267 u8 in_max[8]; /* Register value */
268 u8 in_min[8]; /* Register value */
Jean Delvare9060f8b2006-08-28 14:24:17 +0200269 u8 has_fan; /* Bitfield, fans enabled */
Jean Delvarec7f1f712007-09-03 17:11:46 +0200270 u16 fan[5]; /* Register values, possibly combined */
271 u16 fan_min[5]; /* Register values, possibly combined */
Jean Delvaree267d252009-03-12 13:36:39 +0100272 s8 temp[3]; /* Register value */
273 s8 temp_high[3]; /* Register value */
274 s8 temp_low[3]; /* Register value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 u8 sensor; /* Register value */
276 u8 fan_div[3]; /* Register encoding, shifted right */
277 u8 vid; /* Register encoding, combined */
Jean Delvarea7be58a2005-12-18 16:40:14 +0100278 u8 vrm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 u32 alarms; /* Register encoding, combined */
280 u8 fan_main_ctrl; /* Register value */
Jean Delvaref8d0c192007-02-14 21:15:02 +0100281 u8 fan_ctl; /* Register value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 u8 manual_pwm_ctl[3]; /* manual PWM value set by user */
283};
284
Andrew Paprocki04751692008-08-06 22:41:06 +0200285static inline int has_16bit_fans(const struct it87_data *data)
286{
Andrew Paprocki816d8c62008-08-06 22:41:06 +0200287 /* IT8705F Datasheet 0.4.1, 3h == Version G.
Andrew Paprocki859b9ef2008-09-20 10:25:19 +0200288 IT8712F Datasheet 0.9.1, section 8.3.5 indicates 8h == Version J.
Andrew Paprocki816d8c62008-08-06 22:41:06 +0200289 These are the first revisions with 16bit tachometer support. */
290 return (data->type == it87 && data->revision >= 0x03)
Andrew Paprocki859b9ef2008-09-20 10:25:19 +0200291 || (data->type == it8712 && data->revision >= 0x08)
Andrew Paprocki04751692008-08-06 22:41:06 +0200292 || data->type == it8716
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +0100293 || data->type == it8718
294 || data->type == it8720;
Andrew Paprocki04751692008-08-06 22:41:06 +0200295}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200297static int it87_probe(struct platform_device *pdev);
Jean Delvared0546122007-07-22 12:09:48 +0200298static int __devexit it87_remove(struct platform_device *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200300static int it87_read_value(struct it87_data *data, u8 reg);
301static void it87_write_value(struct it87_data *data, u8 reg, u8 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302static struct it87_data *it87_update_device(struct device *dev);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200303static int it87_check_pwm(struct device *dev);
304static void it87_init_device(struct platform_device *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200307static struct platform_driver it87_driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100308 .driver = {
Jean Delvare87218842006-09-03 22:36:14 +0200309 .owner = THIS_MODULE,
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200310 .name = DRVNAME,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100311 },
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200312 .probe = it87_probe,
313 .remove = __devexit_p(it87_remove),
Jean Delvarefde09502005-07-19 23:51:07 +0200314};
315
Jean Delvare20ad93d2005-06-05 11:53:25 +0200316static ssize_t show_in(struct device *dev, struct device_attribute *attr,
317 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200319 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
320 int nr = sensor_attr->index;
321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 struct it87_data *data = it87_update_device(dev);
323 return sprintf(buf, "%d\n", IN_FROM_REG(data->in[nr]));
324}
325
Jean Delvare20ad93d2005-06-05 11:53:25 +0200326static ssize_t show_in_min(struct device *dev, struct device_attribute *attr,
327 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200329 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
330 int nr = sensor_attr->index;
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 struct it87_data *data = it87_update_device(dev);
333 return sprintf(buf, "%d\n", IN_FROM_REG(data->in_min[nr]));
334}
335
Jean Delvare20ad93d2005-06-05 11:53:25 +0200336static ssize_t show_in_max(struct device *dev, struct device_attribute *attr,
337 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200339 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
340 int nr = sensor_attr->index;
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 struct it87_data *data = it87_update_device(dev);
343 return sprintf(buf, "%d\n", IN_FROM_REG(data->in_max[nr]));
344}
345
Jean Delvare20ad93d2005-06-05 11:53:25 +0200346static ssize_t set_in_min(struct device *dev, struct device_attribute *attr,
347 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200349 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
350 int nr = sensor_attr->index;
351
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200352 struct it87_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 unsigned long val = simple_strtoul(buf, NULL, 10);
354
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100355 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 data->in_min[nr] = IN_TO_REG(val);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200357 it87_write_value(data, IT87_REG_VIN_MIN(nr),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 data->in_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100359 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return count;
361}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200362static ssize_t set_in_max(struct device *dev, struct device_attribute *attr,
363 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200365 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
366 int nr = sensor_attr->index;
367
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200368 struct it87_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 unsigned long val = simple_strtoul(buf, NULL, 10);
370
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100371 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 data->in_max[nr] = IN_TO_REG(val);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200373 it87_write_value(data, IT87_REG_VIN_MAX(nr),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 data->in_max[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100375 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return count;
377}
378
379#define show_in_offset(offset) \
Jean Delvare20ad93d2005-06-05 11:53:25 +0200380static SENSOR_DEVICE_ATTR(in##offset##_input, S_IRUGO, \
381 show_in, NULL, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383#define limit_in_offset(offset) \
Jean Delvare20ad93d2005-06-05 11:53:25 +0200384static SENSOR_DEVICE_ATTR(in##offset##_min, S_IRUGO | S_IWUSR, \
385 show_in_min, set_in_min, offset); \
386static SENSOR_DEVICE_ATTR(in##offset##_max, S_IRUGO | S_IWUSR, \
387 show_in_max, set_in_max, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389show_in_offset(0);
390limit_in_offset(0);
391show_in_offset(1);
392limit_in_offset(1);
393show_in_offset(2);
394limit_in_offset(2);
395show_in_offset(3);
396limit_in_offset(3);
397show_in_offset(4);
398limit_in_offset(4);
399show_in_offset(5);
400limit_in_offset(5);
401show_in_offset(6);
402limit_in_offset(6);
403show_in_offset(7);
404limit_in_offset(7);
405show_in_offset(8);
406
407/* 3 temperatures */
Jean Delvare20ad93d2005-06-05 11:53:25 +0200408static ssize_t show_temp(struct device *dev, struct device_attribute *attr,
409 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200411 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
412 int nr = sensor_attr->index;
413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 struct it87_data *data = it87_update_device(dev);
415 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[nr]));
416}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200417static ssize_t show_temp_max(struct device *dev, struct device_attribute *attr,
418 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200420 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
421 int nr = sensor_attr->index;
422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 struct it87_data *data = it87_update_device(dev);
424 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_high[nr]));
425}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200426static ssize_t show_temp_min(struct device *dev, struct device_attribute *attr,
427 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200429 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
430 int nr = sensor_attr->index;
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 struct it87_data *data = it87_update_device(dev);
433 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_low[nr]));
434}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200435static ssize_t set_temp_max(struct device *dev, struct device_attribute *attr,
436 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200438 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
439 int nr = sensor_attr->index;
440
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200441 struct it87_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 int val = simple_strtol(buf, NULL, 10);
443
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100444 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 data->temp_high[nr] = TEMP_TO_REG(val);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200446 it87_write_value(data, IT87_REG_TEMP_HIGH(nr), data->temp_high[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100447 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 return count;
449}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200450static ssize_t set_temp_min(struct device *dev, struct device_attribute *attr,
451 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200453 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
454 int nr = sensor_attr->index;
455
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200456 struct it87_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 int val = simple_strtol(buf, NULL, 10);
458
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100459 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 data->temp_low[nr] = TEMP_TO_REG(val);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200461 it87_write_value(data, IT87_REG_TEMP_LOW(nr), data->temp_low[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100462 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 return count;
464}
465#define show_temp_offset(offset) \
Jean Delvare20ad93d2005-06-05 11:53:25 +0200466static SENSOR_DEVICE_ATTR(temp##offset##_input, S_IRUGO, \
467 show_temp, NULL, offset - 1); \
468static SENSOR_DEVICE_ATTR(temp##offset##_max, S_IRUGO | S_IWUSR, \
469 show_temp_max, set_temp_max, offset - 1); \
470static SENSOR_DEVICE_ATTR(temp##offset##_min, S_IRUGO | S_IWUSR, \
471 show_temp_min, set_temp_min, offset - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473show_temp_offset(1);
474show_temp_offset(2);
475show_temp_offset(3);
476
Jean Delvare20ad93d2005-06-05 11:53:25 +0200477static ssize_t show_sensor(struct device *dev, struct device_attribute *attr,
478 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200480 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
481 int nr = sensor_attr->index;
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 struct it87_data *data = it87_update_device(dev);
484 u8 reg = data->sensor; /* In case the value is updated while we use it */
485
486 if (reg & (1 << nr))
487 return sprintf(buf, "3\n"); /* thermal diode */
488 if (reg & (8 << nr))
Jean Delvare4ed10772008-10-17 17:51:16 +0200489 return sprintf(buf, "4\n"); /* thermistor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 return sprintf(buf, "0\n"); /* disabled */
491}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200492static ssize_t set_sensor(struct device *dev, struct device_attribute *attr,
493 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200495 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
496 int nr = sensor_attr->index;
497
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200498 struct it87_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 int val = simple_strtol(buf, NULL, 10);
500
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100501 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 data->sensor &= ~(1 << nr);
504 data->sensor &= ~(8 << nr);
Jean Delvare4ed10772008-10-17 17:51:16 +0200505 if (val == 2) { /* backwards compatibility */
506 dev_warn(dev, "Sensor type 2 is deprecated, please use 4 "
507 "instead\n");
508 val = 4;
509 }
510 /* 3 = thermal diode; 4 = thermistor; 0 = disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 if (val == 3)
512 data->sensor |= 1 << nr;
Jean Delvare4ed10772008-10-17 17:51:16 +0200513 else if (val == 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 data->sensor |= 8 << nr;
515 else if (val != 0) {
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100516 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 return -EINVAL;
518 }
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200519 it87_write_value(data, IT87_REG_TEMP_ENABLE, data->sensor);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100520 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 return count;
522}
523#define show_sensor_offset(offset) \
Jean Delvare20ad93d2005-06-05 11:53:25 +0200524static SENSOR_DEVICE_ATTR(temp##offset##_type, S_IRUGO | S_IWUSR, \
525 show_sensor, set_sensor, offset - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527show_sensor_offset(1);
528show_sensor_offset(2);
529show_sensor_offset(3);
530
531/* 3 Fans */
Jean Delvare20ad93d2005-06-05 11:53:25 +0200532static ssize_t show_fan(struct device *dev, struct device_attribute *attr,
533 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200535 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
536 int nr = sensor_attr->index;
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 struct it87_data *data = it87_update_device(dev);
539 return sprintf(buf,"%d\n", FAN_FROM_REG(data->fan[nr],
540 DIV_FROM_REG(data->fan_div[nr])));
541}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200542static ssize_t show_fan_min(struct device *dev, struct device_attribute *attr,
543 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200545 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
546 int nr = sensor_attr->index;
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 struct it87_data *data = it87_update_device(dev);
549 return sprintf(buf,"%d\n",
550 FAN_FROM_REG(data->fan_min[nr], DIV_FROM_REG(data->fan_div[nr])));
551}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200552static ssize_t show_fan_div(struct device *dev, struct device_attribute *attr,
553 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200555 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
556 int nr = sensor_attr->index;
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 struct it87_data *data = it87_update_device(dev);
559 return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[nr]));
560}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200561static ssize_t show_pwm_enable(struct device *dev, struct device_attribute *attr,
562 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200564 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
565 int nr = sensor_attr->index;
566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 struct it87_data *data = it87_update_device(dev);
568 return sprintf(buf,"%d\n", (data->fan_main_ctrl & (1 << nr)) ? 1 : 0);
569}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200570static ssize_t show_pwm(struct device *dev, struct device_attribute *attr,
571 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200573 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
574 int nr = sensor_attr->index;
575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 struct it87_data *data = it87_update_device(dev);
577 return sprintf(buf,"%d\n", data->manual_pwm_ctl[nr]);
578}
Jean Delvaref8d0c192007-02-14 21:15:02 +0100579static ssize_t show_pwm_freq(struct device *dev, struct device_attribute *attr,
580 char *buf)
581{
582 struct it87_data *data = it87_update_device(dev);
583 int index = (data->fan_ctl >> 4) & 0x07;
584
585 return sprintf(buf, "%u\n", pwm_freq[index]);
586}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200587static ssize_t set_fan_min(struct device *dev, struct device_attribute *attr,
588 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200590 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
591 int nr = sensor_attr->index;
592
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200593 struct it87_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 int val = simple_strtol(buf, NULL, 10);
Jean Delvare7f999aa2007-02-14 21:15:03 +0100595 u8 reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100597 mutex_lock(&data->update_lock);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200598 reg = it87_read_value(data, IT87_REG_FAN_DIV);
Jean Delvare07eab462005-11-23 15:44:31 -0800599 switch (nr) {
600 case 0: data->fan_div[nr] = reg & 0x07; break;
601 case 1: data->fan_div[nr] = (reg >> 3) & 0x07; break;
602 case 2: data->fan_div[nr] = (reg & 0x40) ? 3 : 1; break;
603 }
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 data->fan_min[nr] = FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
Jean Delvarec7f1f712007-09-03 17:11:46 +0200606 it87_write_value(data, IT87_REG_FAN_MIN[nr], data->fan_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100607 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 return count;
609}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200610static ssize_t set_fan_div(struct device *dev, struct device_attribute *attr,
611 const char *buf, size_t count)
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
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200616 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvareb9e349f2006-08-28 14:26:22 +0200617 unsigned long val = simple_strtoul(buf, NULL, 10);
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200618 int min;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 u8 old;
620
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100621 mutex_lock(&data->update_lock);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200622 old = it87_read_value(data, IT87_REG_FAN_DIV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200624 /* Save fan min limit */
625 min = FAN_FROM_REG(data->fan_min[nr], DIV_FROM_REG(data->fan_div[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627 switch (nr) {
628 case 0:
629 case 1:
630 data->fan_div[nr] = DIV_TO_REG(val);
631 break;
632 case 2:
633 if (val < 8)
634 data->fan_div[nr] = 1;
635 else
636 data->fan_div[nr] = 3;
637 }
638 val = old & 0x80;
639 val |= (data->fan_div[0] & 0x07);
640 val |= (data->fan_div[1] & 0x07) << 3;
641 if (data->fan_div[2] == 3)
642 val |= 0x1 << 6;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200643 it87_write_value(data, IT87_REG_FAN_DIV, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200645 /* Restore fan min limit */
646 data->fan_min[nr] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
Jean Delvarec7f1f712007-09-03 17:11:46 +0200647 it87_write_value(data, IT87_REG_FAN_MIN[nr], data->fan_min[nr]);
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200648
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100649 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 return count;
651}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200652static ssize_t set_pwm_enable(struct device *dev,
653 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200655 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
656 int nr = sensor_attr->index;
657
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200658 struct it87_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 int val = simple_strtol(buf, NULL, 10);
660
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100661 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 if (val == 0) {
664 int tmp;
665 /* make sure the fan is on when in on/off mode */
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200666 tmp = it87_read_value(data, IT87_REG_FAN_CTL);
667 it87_write_value(data, IT87_REG_FAN_CTL, tmp | (1 << nr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 /* set on/off mode */
669 data->fan_main_ctrl &= ~(1 << nr);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200670 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL, data->fan_main_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 } else if (val == 1) {
672 /* set SmartGuardian mode */
673 data->fan_main_ctrl |= (1 << nr);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200674 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL, data->fan_main_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 /* set saved pwm value, clear FAN_CTLX PWM mode bit */
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200676 it87_write_value(data, IT87_REG_PWM(nr), PWM_TO_REG(data->manual_pwm_ctl[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 } else {
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100678 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 return -EINVAL;
680 }
681
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100682 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 return count;
684}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200685static ssize_t set_pwm(struct device *dev, struct device_attribute *attr,
686 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200688 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
689 int nr = sensor_attr->index;
690
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200691 struct it87_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 int val = simple_strtol(buf, NULL, 10);
693
694 if (val < 0 || val > 255)
695 return -EINVAL;
696
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100697 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 data->manual_pwm_ctl[nr] = val;
699 if (data->fan_main_ctrl & (1 << nr))
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200700 it87_write_value(data, IT87_REG_PWM(nr), PWM_TO_REG(data->manual_pwm_ctl[nr]));
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100701 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 return count;
703}
Jean Delvaref8d0c192007-02-14 21:15:02 +0100704static ssize_t set_pwm_freq(struct device *dev,
705 struct device_attribute *attr, const char *buf, size_t count)
706{
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200707 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref8d0c192007-02-14 21:15:02 +0100708 unsigned long val = simple_strtoul(buf, NULL, 10);
709 int i;
710
711 /* Search for the nearest available frequency */
712 for (i = 0; i < 7; i++) {
713 if (val > (pwm_freq[i] + pwm_freq[i+1]) / 2)
714 break;
715 }
716
717 mutex_lock(&data->update_lock);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200718 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL) & 0x8f;
Jean Delvaref8d0c192007-02-14 21:15:02 +0100719 data->fan_ctl |= i << 4;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200720 it87_write_value(data, IT87_REG_FAN_CTL, data->fan_ctl);
Jean Delvaref8d0c192007-02-14 21:15:02 +0100721 mutex_unlock(&data->update_lock);
722
723 return count;
724}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Jean Delvare20ad93d2005-06-05 11:53:25 +0200726#define show_fan_offset(offset) \
727static SENSOR_DEVICE_ATTR(fan##offset##_input, S_IRUGO, \
728 show_fan, NULL, offset - 1); \
729static SENSOR_DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
730 show_fan_min, set_fan_min, offset - 1); \
731static SENSOR_DEVICE_ATTR(fan##offset##_div, S_IRUGO | S_IWUSR, \
732 show_fan_div, set_fan_div, offset - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734show_fan_offset(1);
735show_fan_offset(2);
736show_fan_offset(3);
737
738#define show_pwm_offset(offset) \
Jean Delvare20ad93d2005-06-05 11:53:25 +0200739static SENSOR_DEVICE_ATTR(pwm##offset##_enable, S_IRUGO | S_IWUSR, \
740 show_pwm_enable, set_pwm_enable, offset - 1); \
741static SENSOR_DEVICE_ATTR(pwm##offset, S_IRUGO | S_IWUSR, \
Jean Delvaref8d0c192007-02-14 21:15:02 +0100742 show_pwm, set_pwm, offset - 1); \
743static DEVICE_ATTR(pwm##offset##_freq, \
744 (offset == 1 ? S_IRUGO | S_IWUSR : S_IRUGO), \
745 show_pwm_freq, (offset == 1 ? set_pwm_freq : NULL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
747show_pwm_offset(1);
748show_pwm_offset(2);
749show_pwm_offset(3);
750
Jean Delvare17d648b2006-08-28 14:23:46 +0200751/* A different set of callbacks for 16-bit fans */
752static ssize_t show_fan16(struct device *dev, struct device_attribute *attr,
753 char *buf)
754{
755 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
756 int nr = sensor_attr->index;
757 struct it87_data *data = it87_update_device(dev);
758 return sprintf(buf, "%d\n", FAN16_FROM_REG(data->fan[nr]));
759}
760
761static ssize_t show_fan16_min(struct device *dev, struct device_attribute *attr,
762 char *buf)
763{
764 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
765 int nr = sensor_attr->index;
766 struct it87_data *data = it87_update_device(dev);
767 return sprintf(buf, "%d\n", FAN16_FROM_REG(data->fan_min[nr]));
768}
769
770static ssize_t set_fan16_min(struct device *dev, struct device_attribute *attr,
771 const char *buf, size_t count)
772{
773 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
774 int nr = sensor_attr->index;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200775 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvare17d648b2006-08-28 14:23:46 +0200776 int val = simple_strtol(buf, NULL, 10);
777
778 mutex_lock(&data->update_lock);
779 data->fan_min[nr] = FAN16_TO_REG(val);
Jean Delvarec7f1f712007-09-03 17:11:46 +0200780 it87_write_value(data, IT87_REG_FAN_MIN[nr],
Jean Delvare17d648b2006-08-28 14:23:46 +0200781 data->fan_min[nr] & 0xff);
Jean Delvarec7f1f712007-09-03 17:11:46 +0200782 it87_write_value(data, IT87_REG_FANX_MIN[nr],
Jean Delvare17d648b2006-08-28 14:23:46 +0200783 data->fan_min[nr] >> 8);
784 mutex_unlock(&data->update_lock);
785 return count;
786}
787
788/* We want to use the same sysfs file names as 8-bit fans, but we need
789 different variable names, so we have to use SENSOR_ATTR instead of
790 SENSOR_DEVICE_ATTR. */
791#define show_fan16_offset(offset) \
792static struct sensor_device_attribute sensor_dev_attr_fan##offset##_input16 \
793 = SENSOR_ATTR(fan##offset##_input, S_IRUGO, \
794 show_fan16, NULL, offset - 1); \
795static struct sensor_device_attribute sensor_dev_attr_fan##offset##_min16 \
796 = SENSOR_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
797 show_fan16_min, set_fan16_min, offset - 1)
798
799show_fan16_offset(1);
800show_fan16_offset(2);
801show_fan16_offset(3);
Jean Delvarec7f1f712007-09-03 17:11:46 +0200802show_fan16_offset(4);
803show_fan16_offset(5);
Jean Delvare17d648b2006-08-28 14:23:46 +0200804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805/* Alarms */
Yani Ioannou30f74292005-05-17 06:41:35 -0400806static ssize_t show_alarms(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
808 struct it87_data *data = it87_update_device(dev);
Jean Delvare68188ba2005-05-16 18:52:38 +0200809 return sprintf(buf, "%u\n", data->alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810}
Jean Delvare1d66c642005-04-18 21:16:59 -0700811static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Jean Delvare0124dd72007-11-25 16:16:41 +0100813static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
814 char *buf)
815{
816 int bitnr = to_sensor_dev_attr(attr)->index;
817 struct it87_data *data = it87_update_device(dev);
818 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
819}
820static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 8);
821static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 9);
822static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 10);
823static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 11);
824static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 12);
825static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 13);
826static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 14);
827static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 15);
828static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 0);
829static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 1);
830static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 2);
831static SENSOR_DEVICE_ATTR(fan4_alarm, S_IRUGO, show_alarm, NULL, 3);
832static SENSOR_DEVICE_ATTR(fan5_alarm, S_IRUGO, show_alarm, NULL, 6);
833static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 16);
834static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 17);
835static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 18);
836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837static ssize_t
Yani Ioannou30f74292005-05-17 06:41:35 -0400838show_vrm_reg(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
Jean Delvare90d66192007-10-08 18:24:35 +0200840 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvarea7be58a2005-12-18 16:40:14 +0100841 return sprintf(buf, "%u\n", data->vrm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842}
843static ssize_t
Yani Ioannou30f74292005-05-17 06:41:35 -0400844store_vrm_reg(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200846 struct it87_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 u32 val;
848
849 val = simple_strtoul(buf, NULL, 10);
850 data->vrm = val;
851
852 return count;
853}
854static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm_reg, store_vrm_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856static ssize_t
Yani Ioannou30f74292005-05-17 06:41:35 -0400857show_vid_reg(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
859 struct it87_data *data = it87_update_device(dev);
860 return sprintf(buf, "%ld\n", (long) vid_from_reg(data->vid, data->vrm));
861}
862static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL);
Jean Delvare87808be2006-09-24 21:17:13 +0200863
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200864static ssize_t show_name(struct device *dev, struct device_attribute
865 *devattr, char *buf)
866{
867 struct it87_data *data = dev_get_drvdata(dev);
868 return sprintf(buf, "%s\n", data->name);
869}
870static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
871
Jean Delvare87808be2006-09-24 21:17:13 +0200872static struct attribute *it87_attributes[] = {
873 &sensor_dev_attr_in0_input.dev_attr.attr,
874 &sensor_dev_attr_in1_input.dev_attr.attr,
875 &sensor_dev_attr_in2_input.dev_attr.attr,
876 &sensor_dev_attr_in3_input.dev_attr.attr,
877 &sensor_dev_attr_in4_input.dev_attr.attr,
878 &sensor_dev_attr_in5_input.dev_attr.attr,
879 &sensor_dev_attr_in6_input.dev_attr.attr,
880 &sensor_dev_attr_in7_input.dev_attr.attr,
881 &sensor_dev_attr_in8_input.dev_attr.attr,
882 &sensor_dev_attr_in0_min.dev_attr.attr,
883 &sensor_dev_attr_in1_min.dev_attr.attr,
884 &sensor_dev_attr_in2_min.dev_attr.attr,
885 &sensor_dev_attr_in3_min.dev_attr.attr,
886 &sensor_dev_attr_in4_min.dev_attr.attr,
887 &sensor_dev_attr_in5_min.dev_attr.attr,
888 &sensor_dev_attr_in6_min.dev_attr.attr,
889 &sensor_dev_attr_in7_min.dev_attr.attr,
890 &sensor_dev_attr_in0_max.dev_attr.attr,
891 &sensor_dev_attr_in1_max.dev_attr.attr,
892 &sensor_dev_attr_in2_max.dev_attr.attr,
893 &sensor_dev_attr_in3_max.dev_attr.attr,
894 &sensor_dev_attr_in4_max.dev_attr.attr,
895 &sensor_dev_attr_in5_max.dev_attr.attr,
896 &sensor_dev_attr_in6_max.dev_attr.attr,
897 &sensor_dev_attr_in7_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +0100898 &sensor_dev_attr_in0_alarm.dev_attr.attr,
899 &sensor_dev_attr_in1_alarm.dev_attr.attr,
900 &sensor_dev_attr_in2_alarm.dev_attr.attr,
901 &sensor_dev_attr_in3_alarm.dev_attr.attr,
902 &sensor_dev_attr_in4_alarm.dev_attr.attr,
903 &sensor_dev_attr_in5_alarm.dev_attr.attr,
904 &sensor_dev_attr_in6_alarm.dev_attr.attr,
905 &sensor_dev_attr_in7_alarm.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +0200906
907 &sensor_dev_attr_temp1_input.dev_attr.attr,
908 &sensor_dev_attr_temp2_input.dev_attr.attr,
909 &sensor_dev_attr_temp3_input.dev_attr.attr,
910 &sensor_dev_attr_temp1_max.dev_attr.attr,
911 &sensor_dev_attr_temp2_max.dev_attr.attr,
912 &sensor_dev_attr_temp3_max.dev_attr.attr,
913 &sensor_dev_attr_temp1_min.dev_attr.attr,
914 &sensor_dev_attr_temp2_min.dev_attr.attr,
915 &sensor_dev_attr_temp3_min.dev_attr.attr,
916 &sensor_dev_attr_temp1_type.dev_attr.attr,
917 &sensor_dev_attr_temp2_type.dev_attr.attr,
918 &sensor_dev_attr_temp3_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +0100919 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
920 &sensor_dev_attr_temp2_alarm.dev_attr.attr,
921 &sensor_dev_attr_temp3_alarm.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +0200922
923 &dev_attr_alarms.attr,
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200924 &dev_attr_name.attr,
Jean Delvare87808be2006-09-24 21:17:13 +0200925 NULL
926};
927
928static const struct attribute_group it87_group = {
929 .attrs = it87_attributes,
930};
931
932static struct attribute *it87_attributes_opt[] = {
933 &sensor_dev_attr_fan1_input16.dev_attr.attr,
934 &sensor_dev_attr_fan1_min16.dev_attr.attr,
935 &sensor_dev_attr_fan2_input16.dev_attr.attr,
936 &sensor_dev_attr_fan2_min16.dev_attr.attr,
937 &sensor_dev_attr_fan3_input16.dev_attr.attr,
938 &sensor_dev_attr_fan3_min16.dev_attr.attr,
Jean Delvarec7f1f712007-09-03 17:11:46 +0200939 &sensor_dev_attr_fan4_input16.dev_attr.attr,
940 &sensor_dev_attr_fan4_min16.dev_attr.attr,
941 &sensor_dev_attr_fan5_input16.dev_attr.attr,
942 &sensor_dev_attr_fan5_min16.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +0200943
944 &sensor_dev_attr_fan1_input.dev_attr.attr,
945 &sensor_dev_attr_fan1_min.dev_attr.attr,
946 &sensor_dev_attr_fan1_div.dev_attr.attr,
947 &sensor_dev_attr_fan2_input.dev_attr.attr,
948 &sensor_dev_attr_fan2_min.dev_attr.attr,
949 &sensor_dev_attr_fan2_div.dev_attr.attr,
950 &sensor_dev_attr_fan3_input.dev_attr.attr,
951 &sensor_dev_attr_fan3_min.dev_attr.attr,
952 &sensor_dev_attr_fan3_div.dev_attr.attr,
953
Jean Delvare0124dd72007-11-25 16:16:41 +0100954 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
955 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
956 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
957 &sensor_dev_attr_fan4_alarm.dev_attr.attr,
958 &sensor_dev_attr_fan5_alarm.dev_attr.attr,
959
Jean Delvare87808be2006-09-24 21:17:13 +0200960 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
961 &sensor_dev_attr_pwm2_enable.dev_attr.attr,
962 &sensor_dev_attr_pwm3_enable.dev_attr.attr,
963 &sensor_dev_attr_pwm1.dev_attr.attr,
964 &sensor_dev_attr_pwm2.dev_attr.attr,
965 &sensor_dev_attr_pwm3.dev_attr.attr,
Jean Delvared5b0b5d2007-12-14 14:41:53 +0100966 &dev_attr_pwm1_freq.attr,
967 &dev_attr_pwm2_freq.attr,
968 &dev_attr_pwm3_freq.attr,
Jean Delvare87808be2006-09-24 21:17:13 +0200969
970 &dev_attr_vrm.attr,
971 &dev_attr_cpu0_vid.attr,
972 NULL
973};
974
975static const struct attribute_group it87_group_opt = {
976 .attrs = it87_attributes_opt,
977};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
Jean Delvare2d8672c2005-07-19 23:56:35 +0200979/* SuperIO detection - will change isa_address if a chip is found */
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200980static int __init it87_find(unsigned short *address,
981 struct it87_sio_data *sio_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
983 int err = -ENODEV;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200984 u16 chip_type;
Jean Delvare98dd22c2008-10-09 15:33:58 +0200985 const char *board_vendor, *board_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987 superio_enter();
Jean Delvare67b671b2007-12-06 23:13:42 +0100988 chip_type = force_id ? force_id : superio_inw(DEVID);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200989
990 switch (chip_type) {
991 case IT8705F_DEVID:
992 sio_data->type = it87;
993 break;
994 case IT8712F_DEVID:
995 sio_data->type = it8712;
996 break;
997 case IT8716F_DEVID:
998 case IT8726F_DEVID:
999 sio_data->type = it8716;
1000 break;
1001 case IT8718F_DEVID:
1002 sio_data->type = it8718;
1003 break;
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +01001004 case IT8720F_DEVID:
1005 sio_data->type = it8720;
1006 break;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001007 case 0xffff: /* No device at all */
1008 goto exit;
1009 default:
1010 pr_debug(DRVNAME ": Unsupported chip (DEVID=0x%x)\n",
1011 chip_type);
1012 goto exit;
1013 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Jean Delvare87673dd2006-08-28 14:37:19 +02001015 superio_select(PME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 if (!(superio_inb(IT87_ACT_REG) & 0x01)) {
1017 pr_info("it87: Device not activated, skipping\n");
1018 goto exit;
1019 }
1020
1021 *address = superio_inw(IT87_BASE_REG) & ~(IT87_EXTENT - 1);
1022 if (*address == 0) {
1023 pr_info("it87: Base address not set, skipping\n");
1024 goto exit;
1025 }
1026
1027 err = 0;
Andrew Paprocki04751692008-08-06 22:41:06 +02001028 sio_data->revision = superio_inb(DEVREV) & 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 pr_info("it87: Found IT%04xF chip at 0x%x, revision %d\n",
Andrew Paprocki04751692008-08-06 22:41:06 +02001030 chip_type, *address, sio_data->revision);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Jean Delvare87673dd2006-08-28 14:37:19 +02001032 /* Read GPIO config and VID value from LDN 7 (GPIO) */
Jean Delvare895ff262009-12-09 20:35:47 +01001033 if (sio_data->type == it87) {
1034 /* The IT8705F doesn't have VID pins at all */
1035 sio_data->skip_vid = 1;
1036 } else {
Jean Delvare87673dd2006-08-28 14:37:19 +02001037 int reg;
1038
1039 superio_select(GPIO);
Jean Delvare895ff262009-12-09 20:35:47 +01001040 /* We need at least 4 VID pins */
1041 reg = superio_inb(IT87_SIO_GPIO3_REG);
1042 if (reg & 0x0f) {
1043 pr_info("it87: VID is disabled (pins used for GPIO)\n");
1044 sio_data->skip_vid = 1;
1045 }
1046
1047 if ((sio_data->type == it8718 || sio_data->type == it8720)
1048 && !(sio_data->skip_vid))
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001049 sio_data->vid_value = superio_inb(IT87_SIO_VID_REG);
Jean Delvare87673dd2006-08-28 14:37:19 +02001050
1051 reg = superio_inb(IT87_SIO_PINX2_REG);
1052 if (reg & (1 << 0))
1053 pr_info("it87: in3 is VCC (+5V)\n");
1054 if (reg & (1 << 1))
1055 pr_info("it87: in7 is VCCH (+5V Stand-By)\n");
1056 }
1057
Jean Delvare98dd22c2008-10-09 15:33:58 +02001058 /* Disable specific features based on DMI strings */
1059 board_vendor = dmi_get_system_info(DMI_BOARD_VENDOR);
1060 board_name = dmi_get_system_info(DMI_BOARD_NAME);
1061 if (board_vendor && board_name) {
1062 if (strcmp(board_vendor, "nVIDIA") == 0
1063 && strcmp(board_name, "FN68PT") == 0) {
1064 /* On the Shuttle SN68PT, FAN_CTL2 is apparently not
1065 connected to a fan, but to something else. One user
1066 has reported instant system power-off when changing
1067 the PWM2 duty cycle, so we disable it.
1068 I use the board name string as the trigger in case
1069 the same board is ever used in other systems. */
1070 pr_info("it87: Disabling pwm2 due to "
1071 "hardware constraints\n");
1072 sio_data->skip_pwm = (1 << 1);
1073 }
1074 }
1075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076exit:
1077 superio_exit();
1078 return err;
1079}
1080
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001081static int __devinit it87_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 struct it87_data *data;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001084 struct resource *res;
1085 struct device *dev = &pdev->dev;
1086 struct it87_sio_data *sio_data = dev->platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 int enable_pwm_interface;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001089 static const char *names[] = {
1090 "it87",
1091 "it8712",
1092 "it8716",
1093 "it8718",
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +01001094 "it8720",
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001095 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001097 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05001098 if (!request_region(res->start, IT87_EC_EXTENT, DRVNAME)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001099 dev_err(dev, "Failed to request region 0x%lx-0x%lx\n",
1100 (unsigned long)res->start,
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05001101 (unsigned long)(res->start + IT87_EC_EXTENT - 1));
Jean Delvare8e9afcb2006-12-12 18:18:28 +01001102 err = -EBUSY;
1103 goto ERROR0;
1104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Deepak Saxenaba9c2e82005-10-17 23:08:32 +02001106 if (!(data = kzalloc(sizeof(struct it87_data), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 err = -ENOMEM;
1108 goto ERROR1;
1109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001111 data->addr = res->start;
1112 data->type = sio_data->type;
Andrew Paprocki04751692008-08-06 22:41:06 +02001113 data->revision = sio_data->revision;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001114 data->name = names[sio_data->type];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
1116 /* Now, we do the remaining detection. */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001117 if ((it87_read_value(data, IT87_REG_CONFIG) & 0x80)
1118 || it87_read_value(data, IT87_REG_CHIPID) != 0x90) {
Jean Delvare8e9afcb2006-12-12 18:18:28 +01001119 err = -ENODEV;
1120 goto ERROR2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 }
1122
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001123 platform_set_drvdata(pdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001125 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 /* Check PWM configuration */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001128 enable_pwm_interface = it87_check_pwm(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
1130 /* Initialize the IT87 chip */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001131 it87_init_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
1133 /* Register sysfs hooks */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001134 if ((err = sysfs_create_group(&dev->kobj, &it87_group)))
1135 goto ERROR2;
Jean Delvare17d648b2006-08-28 14:23:46 +02001136
Jean Delvare9060f8b2006-08-28 14:24:17 +02001137 /* Do not create fan files for disabled fans */
Andrew Paprocki04751692008-08-06 22:41:06 +02001138 if (has_16bit_fans(data)) {
Jean Delvare87673dd2006-08-28 14:37:19 +02001139 /* 16-bit tachometers */
Jean Delvare9060f8b2006-08-28 14:24:17 +02001140 if (data->has_fan & (1 << 0)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001141 if ((err = device_create_file(dev,
Jean Delvare87808be2006-09-24 21:17:13 +02001142 &sensor_dev_attr_fan1_input16.dev_attr))
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001143 || (err = device_create_file(dev,
Jean Delvare0124dd72007-11-25 16:16:41 +01001144 &sensor_dev_attr_fan1_min16.dev_attr))
1145 || (err = device_create_file(dev,
1146 &sensor_dev_attr_fan1_alarm.dev_attr)))
Jean Delvare87808be2006-09-24 21:17:13 +02001147 goto ERROR4;
Jean Delvare9060f8b2006-08-28 14:24:17 +02001148 }
1149 if (data->has_fan & (1 << 1)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001150 if ((err = device_create_file(dev,
Jean Delvare87808be2006-09-24 21:17:13 +02001151 &sensor_dev_attr_fan2_input16.dev_attr))
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001152 || (err = device_create_file(dev,
Jean Delvare0124dd72007-11-25 16:16:41 +01001153 &sensor_dev_attr_fan2_min16.dev_attr))
1154 || (err = device_create_file(dev,
1155 &sensor_dev_attr_fan2_alarm.dev_attr)))
Jean Delvare87808be2006-09-24 21:17:13 +02001156 goto ERROR4;
Jean Delvare9060f8b2006-08-28 14:24:17 +02001157 }
1158 if (data->has_fan & (1 << 2)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001159 if ((err = device_create_file(dev,
Jean Delvare87808be2006-09-24 21:17:13 +02001160 &sensor_dev_attr_fan3_input16.dev_attr))
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001161 || (err = device_create_file(dev,
Jean Delvare0124dd72007-11-25 16:16:41 +01001162 &sensor_dev_attr_fan3_min16.dev_attr))
1163 || (err = device_create_file(dev,
1164 &sensor_dev_attr_fan3_alarm.dev_attr)))
Jean Delvare87808be2006-09-24 21:17:13 +02001165 goto ERROR4;
Jean Delvare9060f8b2006-08-28 14:24:17 +02001166 }
Jean Delvarec7f1f712007-09-03 17:11:46 +02001167 if (data->has_fan & (1 << 3)) {
1168 if ((err = device_create_file(dev,
1169 &sensor_dev_attr_fan4_input16.dev_attr))
1170 || (err = device_create_file(dev,
Jean Delvare0124dd72007-11-25 16:16:41 +01001171 &sensor_dev_attr_fan4_min16.dev_attr))
1172 || (err = device_create_file(dev,
1173 &sensor_dev_attr_fan4_alarm.dev_attr)))
Jean Delvarec7f1f712007-09-03 17:11:46 +02001174 goto ERROR4;
1175 }
1176 if (data->has_fan & (1 << 4)) {
1177 if ((err = device_create_file(dev,
1178 &sensor_dev_attr_fan5_input16.dev_attr))
1179 || (err = device_create_file(dev,
Jean Delvare0124dd72007-11-25 16:16:41 +01001180 &sensor_dev_attr_fan5_min16.dev_attr))
1181 || (err = device_create_file(dev,
1182 &sensor_dev_attr_fan5_alarm.dev_attr)))
Jean Delvarec7f1f712007-09-03 17:11:46 +02001183 goto ERROR4;
1184 }
Jean Delvare17d648b2006-08-28 14:23:46 +02001185 } else {
Jean Delvare87673dd2006-08-28 14:37:19 +02001186 /* 8-bit tachometers with clock divider */
Jean Delvare9060f8b2006-08-28 14:24:17 +02001187 if (data->has_fan & (1 << 0)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001188 if ((err = device_create_file(dev,
Jean Delvare87808be2006-09-24 21:17:13 +02001189 &sensor_dev_attr_fan1_input.dev_attr))
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001190 || (err = device_create_file(dev,
Jean Delvare87808be2006-09-24 21:17:13 +02001191 &sensor_dev_attr_fan1_min.dev_attr))
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001192 || (err = device_create_file(dev,
Jean Delvare0124dd72007-11-25 16:16:41 +01001193 &sensor_dev_attr_fan1_div.dev_attr))
1194 || (err = device_create_file(dev,
1195 &sensor_dev_attr_fan1_alarm.dev_attr)))
Jean Delvare87808be2006-09-24 21:17:13 +02001196 goto ERROR4;
Jean Delvare9060f8b2006-08-28 14:24:17 +02001197 }
1198 if (data->has_fan & (1 << 1)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001199 if ((err = device_create_file(dev,
Jean Delvare87808be2006-09-24 21:17:13 +02001200 &sensor_dev_attr_fan2_input.dev_attr))
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001201 || (err = device_create_file(dev,
Jean Delvare87808be2006-09-24 21:17:13 +02001202 &sensor_dev_attr_fan2_min.dev_attr))
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001203 || (err = device_create_file(dev,
Jean Delvare0124dd72007-11-25 16:16:41 +01001204 &sensor_dev_attr_fan2_div.dev_attr))
1205 || (err = device_create_file(dev,
1206 &sensor_dev_attr_fan2_alarm.dev_attr)))
Jean Delvare87808be2006-09-24 21:17:13 +02001207 goto ERROR4;
Jean Delvare9060f8b2006-08-28 14:24:17 +02001208 }
1209 if (data->has_fan & (1 << 2)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001210 if ((err = device_create_file(dev,
Jean Delvare87808be2006-09-24 21:17:13 +02001211 &sensor_dev_attr_fan3_input.dev_attr))
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001212 || (err = device_create_file(dev,
Jean Delvare87808be2006-09-24 21:17:13 +02001213 &sensor_dev_attr_fan3_min.dev_attr))
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001214 || (err = device_create_file(dev,
Jean Delvare0124dd72007-11-25 16:16:41 +01001215 &sensor_dev_attr_fan3_div.dev_attr))
1216 || (err = device_create_file(dev,
1217 &sensor_dev_attr_fan3_alarm.dev_attr)))
Jean Delvare87808be2006-09-24 21:17:13 +02001218 goto ERROR4;
Jean Delvare9060f8b2006-08-28 14:24:17 +02001219 }
Jean Delvare17d648b2006-08-28 14:23:46 +02001220 }
1221
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 if (enable_pwm_interface) {
Jean Delvare98dd22c2008-10-09 15:33:58 +02001223 if (!(sio_data->skip_pwm & (1 << 0))) {
1224 if ((err = device_create_file(dev,
1225 &sensor_dev_attr_pwm1_enable.dev_attr))
1226 || (err = device_create_file(dev,
1227 &sensor_dev_attr_pwm1.dev_attr))
1228 || (err = device_create_file(dev,
1229 &dev_attr_pwm1_freq)))
1230 goto ERROR4;
1231 }
1232 if (!(sio_data->skip_pwm & (1 << 1))) {
1233 if ((err = device_create_file(dev,
1234 &sensor_dev_attr_pwm2_enable.dev_attr))
1235 || (err = device_create_file(dev,
1236 &sensor_dev_attr_pwm2.dev_attr))
1237 || (err = device_create_file(dev,
1238 &dev_attr_pwm2_freq)))
1239 goto ERROR4;
1240 }
1241 if (!(sio_data->skip_pwm & (1 << 2))) {
1242 if ((err = device_create_file(dev,
1243 &sensor_dev_attr_pwm3_enable.dev_attr))
1244 || (err = device_create_file(dev,
1245 &sensor_dev_attr_pwm3.dev_attr))
1246 || (err = device_create_file(dev,
1247 &dev_attr_pwm3_freq)))
1248 goto ERROR4;
1249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 }
1251
Jean Delvare895ff262009-12-09 20:35:47 +01001252 if (!sio_data->skip_vid) {
Jean Delvare303760b2005-07-31 21:52:01 +02001253 data->vrm = vid_which_vrm();
Jean Delvare87673dd2006-08-28 14:37:19 +02001254 /* VID reading from Super-I/O config space if available */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001255 data->vid = sio_data->vid_value;
1256 if ((err = device_create_file(dev,
Jean Delvare87808be2006-09-24 21:17:13 +02001257 &dev_attr_vrm))
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001258 || (err = device_create_file(dev,
Jean Delvare87808be2006-09-24 21:17:13 +02001259 &dev_attr_cpu0_vid)))
1260 goto ERROR4;
1261 }
1262
Tony Jones1beeffe2007-08-20 13:46:20 -07001263 data->hwmon_dev = hwmon_device_register(dev);
1264 if (IS_ERR(data->hwmon_dev)) {
1265 err = PTR_ERR(data->hwmon_dev);
Jean Delvare87808be2006-09-24 21:17:13 +02001266 goto ERROR4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 }
1268
1269 return 0;
1270
Jean Delvare87808be2006-09-24 21:17:13 +02001271ERROR4:
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001272 sysfs_remove_group(&dev->kobj, &it87_group);
1273 sysfs_remove_group(&dev->kobj, &it87_group_opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274ERROR2:
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001275 platform_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 kfree(data);
1277ERROR1:
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05001278 release_region(res->start, IT87_EC_EXTENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279ERROR0:
1280 return err;
1281}
1282
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001283static int __devexit it87_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001285 struct it87_data *data = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
Tony Jones1beeffe2007-08-20 13:46:20 -07001287 hwmon_device_unregister(data->hwmon_dev);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001288 sysfs_remove_group(&pdev->dev.kobj, &it87_group);
1289 sysfs_remove_group(&pdev->dev.kobj, &it87_group_opt);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001290
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05001291 release_region(data->addr, IT87_EC_EXTENT);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001292 platform_set_drvdata(pdev, NULL);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001293 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
1295 return 0;
1296}
1297
Jean Delvare7f999aa2007-02-14 21:15:03 +01001298/* Must be called with data->update_lock held, except during initialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
1300 would slow down the IT87 access and should not be necessary. */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001301static int it87_read_value(struct it87_data *data, u8 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001303 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
1304 return inb_p(data->addr + IT87_DATA_REG_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305}
1306
Jean Delvare7f999aa2007-02-14 21:15:03 +01001307/* Must be called with data->update_lock held, except during initialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
1309 would slow down the IT87 access and should not be necessary. */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001310static void it87_write_value(struct it87_data *data, u8 reg, u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001312 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
1313 outb_p(value, data->addr + IT87_DATA_REG_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314}
1315
1316/* Return 1 if and only if the PWM interface is safe to use */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001317static int __devinit it87_check_pwm(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001319 struct it87_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 /* Some BIOSes fail to correctly configure the IT87 fans. All fans off
1321 * and polarity set to active low is sign that this is the case so we
1322 * disable pwm control to protect the user. */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001323 int tmp = it87_read_value(data, IT87_REG_FAN_CTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 if ((tmp & 0x87) == 0) {
1325 if (fix_pwm_polarity) {
1326 /* The user asks us to attempt a chip reconfiguration.
1327 * This means switching to active high polarity and
1328 * inverting all fan speed values. */
1329 int i;
1330 u8 pwm[3];
1331
1332 for (i = 0; i < 3; i++)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001333 pwm[i] = it87_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 IT87_REG_PWM(i));
1335
1336 /* If any fan is in automatic pwm mode, the polarity
1337 * might be correct, as suspicious as it seems, so we
1338 * better don't change anything (but still disable the
1339 * PWM interface). */
1340 if (!((pwm[0] | pwm[1] | pwm[2]) & 0x80)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001341 dev_info(dev, "Reconfiguring PWM to "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 "active high polarity\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001343 it87_write_value(data, IT87_REG_FAN_CTL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 tmp | 0x87);
1345 for (i = 0; i < 3; i++)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001346 it87_write_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 IT87_REG_PWM(i),
1348 0x7f & ~pwm[i]);
1349 return 1;
1350 }
1351
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001352 dev_info(dev, "PWM configuration is "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 "too broken to be fixed\n");
1354 }
1355
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001356 dev_info(dev, "Detected broken BIOS "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 "defaults, disabling PWM interface\n");
1358 return 0;
1359 } else if (fix_pwm_polarity) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001360 dev_info(dev, "PWM configuration looks "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 "sane, won't touch\n");
1362 }
1363
1364 return 1;
1365}
1366
1367/* Called when we have found a new IT87. */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001368static void __devinit it87_init_device(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001370 struct it87_data *data = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 int tmp, i;
1372
1373 /* initialize to sane defaults:
1374 * - if the chip is in manual pwm mode, this will be overwritten with
1375 * the actual settings on the chip (so in this case, initialization
1376 * is not needed)
1377 * - if in automatic or on/off mode, we could switch to manual mode,
1378 * read the registers and set manual_pwm_ctl accordingly, but currently
1379 * this is not implemented, so we initialize to something sane */
1380 for (i = 0; i < 3; i++) {
1381 data->manual_pwm_ctl[i] = 0xff;
1382 }
1383
Jean Delvarec5df9b72006-08-28 14:37:54 +02001384 /* Some chips seem to have default value 0xff for all limit
1385 * registers. For low voltage limits it makes no sense and triggers
1386 * alarms, so change to 0 instead. For high temperature limits, it
1387 * means -1 degree C, which surprisingly doesn't trigger an alarm,
1388 * but is still confusing, so change to 127 degrees C. */
1389 for (i = 0; i < 8; i++) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001390 tmp = it87_read_value(data, IT87_REG_VIN_MIN(i));
Jean Delvarec5df9b72006-08-28 14:37:54 +02001391 if (tmp == 0xff)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001392 it87_write_value(data, IT87_REG_VIN_MIN(i), 0);
Jean Delvarec5df9b72006-08-28 14:37:54 +02001393 }
1394 for (i = 0; i < 3; i++) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001395 tmp = it87_read_value(data, IT87_REG_TEMP_HIGH(i));
Jean Delvarec5df9b72006-08-28 14:37:54 +02001396 if (tmp == 0xff)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001397 it87_write_value(data, IT87_REG_TEMP_HIGH(i), 127);
Jean Delvarec5df9b72006-08-28 14:37:54 +02001398 }
1399
Jean Delvare77fa49d2009-01-07 16:37:35 +01001400 /* Check if temperature channels are reset manually or by some reason */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001401 tmp = it87_read_value(data, IT87_REG_TEMP_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 if ((tmp & 0x3f) == 0) {
1403 /* Temp1,Temp3=thermistor; Temp2=thermal diode */
1404 tmp = (tmp & 0xc0) | 0x2a;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001405 it87_write_value(data, IT87_REG_TEMP_ENABLE, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 }
1407 data->sensor = tmp;
1408
1409 /* Check if voltage monitors are reset manually or by some reason */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001410 tmp = it87_read_value(data, IT87_REG_VIN_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 if ((tmp & 0xff) == 0) {
1412 /* Enable all voltage monitors */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001413 it87_write_value(data, IT87_REG_VIN_ENABLE, 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 }
1415
1416 /* Check if tachometers are reset manually or by some reason */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001417 data->fan_main_ctrl = it87_read_value(data, IT87_REG_FAN_MAIN_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 if ((data->fan_main_ctrl & 0x70) == 0) {
1419 /* Enable all fan tachometers */
1420 data->fan_main_ctrl |= 0x70;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001421 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL, data->fan_main_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 }
Jean Delvare9060f8b2006-08-28 14:24:17 +02001423 data->has_fan = (data->fan_main_ctrl >> 4) & 0x07;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Jean Delvare17d648b2006-08-28 14:23:46 +02001425 /* Set tachometers to 16-bit mode if needed */
Andrew Paprocki04751692008-08-06 22:41:06 +02001426 if (has_16bit_fans(data)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001427 tmp = it87_read_value(data, IT87_REG_FAN_16BIT);
Jean Delvare9060f8b2006-08-28 14:24:17 +02001428 if (~tmp & 0x07 & data->has_fan) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001429 dev_dbg(&pdev->dev,
Jean Delvare17d648b2006-08-28 14:23:46 +02001430 "Setting fan1-3 to 16-bit mode\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001431 it87_write_value(data, IT87_REG_FAN_16BIT,
Jean Delvare17d648b2006-08-28 14:23:46 +02001432 tmp | 0x07);
1433 }
Andrew Paprocki816d8c62008-08-06 22:41:06 +02001434 /* IT8705F only supports three fans. */
1435 if (data->type != it87) {
1436 if (tmp & (1 << 4))
1437 data->has_fan |= (1 << 3); /* fan4 enabled */
1438 if (tmp & (1 << 5))
1439 data->has_fan |= (1 << 4); /* fan5 enabled */
1440 }
Jean Delvare17d648b2006-08-28 14:23:46 +02001441 }
1442
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 /* Set current fan mode registers and the default settings for the
1444 * other mode registers */
1445 for (i = 0; i < 3; i++) {
1446 if (data->fan_main_ctrl & (1 << i)) {
1447 /* pwm mode */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001448 tmp = it87_read_value(data, IT87_REG_PWM(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 if (tmp & 0x80) {
1450 /* automatic pwm - not yet implemented, but
1451 * leave the settings made by the BIOS alone
1452 * until a change is requested via the sysfs
1453 * interface */
1454 } else {
1455 /* manual pwm */
1456 data->manual_pwm_ctl[i] = PWM_FROM_REG(tmp);
1457 }
1458 }
1459 }
1460
1461 /* Start monitoring */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001462 it87_write_value(data, IT87_REG_CONFIG,
1463 (it87_read_value(data, IT87_REG_CONFIG) & 0x36)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 | (update_vbat ? 0x41 : 0x01));
1465}
1466
1467static struct it87_data *it87_update_device(struct device *dev)
1468{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001469 struct it87_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 int i;
1471
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001472 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
1474 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
1475 || !data->valid) {
1476
1477 if (update_vbat) {
1478 /* Cleared after each update, so reenable. Value
1479 returned by this read will be previous value */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001480 it87_write_value(data, IT87_REG_CONFIG,
1481 it87_read_value(data, IT87_REG_CONFIG) | 0x40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 }
1483 for (i = 0; i <= 7; i++) {
1484 data->in[i] =
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001485 it87_read_value(data, IT87_REG_VIN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 data->in_min[i] =
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001487 it87_read_value(data, IT87_REG_VIN_MIN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 data->in_max[i] =
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001489 it87_read_value(data, IT87_REG_VIN_MAX(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 }
Jean Delvare3543a532006-08-28 14:27:25 +02001491 /* in8 (battery) has no limit registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 data->in[8] =
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001493 it87_read_value(data, IT87_REG_VIN(8));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Jean Delvarec7f1f712007-09-03 17:11:46 +02001495 for (i = 0; i < 5; i++) {
Jean Delvare9060f8b2006-08-28 14:24:17 +02001496 /* Skip disabled fans */
1497 if (!(data->has_fan & (1 << i)))
1498 continue;
1499
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 data->fan_min[i] =
Jean Delvarec7f1f712007-09-03 17:11:46 +02001501 it87_read_value(data, IT87_REG_FAN_MIN[i]);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001502 data->fan[i] = it87_read_value(data,
Jean Delvarec7f1f712007-09-03 17:11:46 +02001503 IT87_REG_FAN[i]);
Jean Delvare17d648b2006-08-28 14:23:46 +02001504 /* Add high byte if in 16-bit mode */
Andrew Paprocki04751692008-08-06 22:41:06 +02001505 if (has_16bit_fans(data)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001506 data->fan[i] |= it87_read_value(data,
Jean Delvarec7f1f712007-09-03 17:11:46 +02001507 IT87_REG_FANX[i]) << 8;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001508 data->fan_min[i] |= it87_read_value(data,
Jean Delvarec7f1f712007-09-03 17:11:46 +02001509 IT87_REG_FANX_MIN[i]) << 8;
Jean Delvare17d648b2006-08-28 14:23:46 +02001510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 }
1512 for (i = 0; i < 3; i++) {
1513 data->temp[i] =
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001514 it87_read_value(data, IT87_REG_TEMP(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 data->temp_high[i] =
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001516 it87_read_value(data, IT87_REG_TEMP_HIGH(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 data->temp_low[i] =
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001518 it87_read_value(data, IT87_REG_TEMP_LOW(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 }
1520
Jean Delvare17d648b2006-08-28 14:23:46 +02001521 /* Newer chips don't have clock dividers */
Andrew Paprocki04751692008-08-06 22:41:06 +02001522 if ((data->has_fan & 0x07) && !has_16bit_fans(data)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001523 i = it87_read_value(data, IT87_REG_FAN_DIV);
Jean Delvare17d648b2006-08-28 14:23:46 +02001524 data->fan_div[0] = i & 0x07;
1525 data->fan_div[1] = (i >> 3) & 0x07;
1526 data->fan_div[2] = (i & 0x40) ? 3 : 1;
1527 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
1529 data->alarms =
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001530 it87_read_value(data, IT87_REG_ALARM1) |
1531 (it87_read_value(data, IT87_REG_ALARM2) << 8) |
1532 (it87_read_value(data, IT87_REG_ALARM3) << 16);
1533 data->fan_main_ctrl = it87_read_value(data,
1534 IT87_REG_FAN_MAIN_CTRL);
1535 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001537 data->sensor = it87_read_value(data, IT87_REG_TEMP_ENABLE);
Andrew Paprocki04751692008-08-06 22:41:06 +02001538 /* The 8705 does not have VID capability.
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +01001539 The 8718 and the 8720 don't use IT87_REG_VID for the
1540 same purpose. */
Jean Delvare17d648b2006-08-28 14:23:46 +02001541 if (data->type == it8712 || data->type == it8716) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001542 data->vid = it87_read_value(data, IT87_REG_VID);
Jean Delvare17d648b2006-08-28 14:23:46 +02001543 /* The older IT8712F revisions had only 5 VID pins,
1544 but we assume it is always safe to read 6 bits. */
1545 data->vid &= 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 }
1547 data->last_updated = jiffies;
1548 data->valid = 1;
1549 }
1550
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001551 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
1553 return data;
1554}
1555
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001556static int __init it87_device_add(unsigned short address,
1557 const struct it87_sio_data *sio_data)
1558{
1559 struct resource res = {
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05001560 .start = address + IT87_EC_OFFSET,
1561 .end = address + IT87_EC_OFFSET + IT87_EC_EXTENT - 1,
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001562 .name = DRVNAME,
1563 .flags = IORESOURCE_IO,
1564 };
1565 int err;
1566
Jean Delvareb9acb642009-01-07 16:37:35 +01001567 err = acpi_check_resource_conflict(&res);
1568 if (err)
1569 goto exit;
1570
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001571 pdev = platform_device_alloc(DRVNAME, address);
1572 if (!pdev) {
1573 err = -ENOMEM;
1574 printk(KERN_ERR DRVNAME ": Device allocation failed\n");
1575 goto exit;
1576 }
1577
1578 err = platform_device_add_resources(pdev, &res, 1);
1579 if (err) {
1580 printk(KERN_ERR DRVNAME ": Device resource addition failed "
1581 "(%d)\n", err);
1582 goto exit_device_put;
1583 }
1584
1585 err = platform_device_add_data(pdev, sio_data,
1586 sizeof(struct it87_sio_data));
1587 if (err) {
1588 printk(KERN_ERR DRVNAME ": Platform data allocation failed\n");
1589 goto exit_device_put;
1590 }
1591
1592 err = platform_device_add(pdev);
1593 if (err) {
1594 printk(KERN_ERR DRVNAME ": Device addition failed (%d)\n",
1595 err);
1596 goto exit_device_put;
1597 }
1598
1599 return 0;
1600
1601exit_device_put:
1602 platform_device_put(pdev);
1603exit:
1604 return err;
1605}
1606
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607static int __init sm_it87_init(void)
1608{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001609 int err;
1610 unsigned short isa_address=0;
1611 struct it87_sio_data sio_data;
Jean Delvarefde09502005-07-19 23:51:07 +02001612
Jean Delvare98dd22c2008-10-09 15:33:58 +02001613 memset(&sio_data, 0, sizeof(struct it87_sio_data));
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001614 err = it87_find(&isa_address, &sio_data);
1615 if (err)
1616 return err;
1617 err = platform_driver_register(&it87_driver);
1618 if (err)
1619 return err;
1620
1621 err = it87_device_add(isa_address, &sio_data);
1622 if (err){
1623 platform_driver_unregister(&it87_driver);
1624 return err;
1625 }
1626
1627 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628}
1629
1630static void __exit sm_it87_exit(void)
1631{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001632 platform_device_unregister(pdev);
1633 platform_driver_unregister(&it87_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634}
1635
1636
Jean Delvaref1d8e332007-11-25 16:14:44 +01001637MODULE_AUTHOR("Chris Gauthron, "
Jean Delvareb19367c2006-08-28 14:39:26 +02001638 "Jean Delvare <khali@linux-fr.org>");
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +01001639MODULE_DESCRIPTION("IT8705F/8712F/8716F/8718F/8720F/8726F, SiS950 driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640module_param(update_vbat, bool, 0);
1641MODULE_PARM_DESC(update_vbat, "Update vbat if set else return powerup value");
1642module_param(fix_pwm_polarity, bool, 0);
1643MODULE_PARM_DESC(fix_pwm_polarity, "Force PWM polarity to active high (DANGEROUS)");
1644MODULE_LICENSE("GPL");
1645
1646module_init(sm_it87_init);
1647module_exit(sm_it87_exit);