blob: 316b64823f7b39b805823e606453e244a32d3bae [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jean Delvare5f2dc792010-03-05 22:17:18 +01002 * it87.c - Part of lm_sensors, Linux kernel modules for hardware
3 * monitoring.
4 *
5 * The IT8705F is an LPC-based Super I/O part that contains UARTs, a
6 * parallel port, an IR port, a MIDI port, a floppy controller, etc., in
7 * addition to an Environment Controller (Enhanced Hardware Monitor and
8 * Fan Controller)
9 *
10 * This driver supports only the Environment Controller in the IT8705F and
11 * similar parts. The other devices are supported by different drivers.
12 *
13 * Supports: IT8705F Super I/O chip w/LPC interface
14 * IT8712F Super I/O chip w/LPC interface
15 * IT8716F Super I/O chip w/LPC interface
16 * IT8718F Super I/O chip w/LPC interface
17 * IT8720F Super I/O chip w/LPC interface
Jean Delvare44c1bcd2010-10-28 20:31:51 +020018 * IT8721F Super I/O chip w/LPC interface
Jean Delvare5f2dc792010-03-05 22:17:18 +010019 * IT8726F Super I/O chip w/LPC interface
Jean Delvare44c1bcd2010-10-28 20:31:51 +020020 * IT8758E Super I/O chip w/LPC interface
Jean Delvare5f2dc792010-03-05 22:17:18 +010021 * Sis950 A clone of the IT8705F
22 *
23 * Copyright (C) 2001 Chris Gauthron
24 * Copyright (C) 2005-2010 Jean Delvare <khali@linux-fr.org>
25 *
26 * This program is free software; you can redistribute it and/or modify
27 * it under the terms of the GNU General Public License as published by
28 * the Free Software Foundation; either version 2 of the License, or
29 * (at your option) any later version.
30 *
31 * This program is distributed in the hope that it will be useful,
32 * but WITHOUT ANY WARRANTY; without even the implied warranty of
33 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
34 * GNU General Public License for more details.
35 *
36 * You should have received a copy of the GNU General Public License
37 * along with this program; if not, write to the Free Software
38 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
39 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Joe Perchesa8ca1032011-01-12 21:55:10 +010041#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/module.h>
44#include <linux/init.h>
45#include <linux/slab.h>
46#include <linux/jiffies.h>
corentin.labbeb74f3fd2007-06-13 20:27:36 +020047#include <linux/platform_device.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040048#include <linux/hwmon.h>
Jean Delvare303760b2005-07-31 21:52:01 +020049#include <linux/hwmon-sysfs.h>
50#include <linux/hwmon-vid.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040051#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010052#include <linux/mutex.h>
Jean Delvare87808be2006-09-24 21:17:13 +020053#include <linux/sysfs.h>
Jean Delvare98dd22c2008-10-09 15:33:58 +020054#include <linux/string.h>
55#include <linux/dmi.h>
Jean Delvareb9acb642009-01-07 16:37:35 +010056#include <linux/acpi.h>
H Hartley Sweeten6055fae2009-09-15 17:18:13 +020057#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
corentin.labbeb74f3fd2007-06-13 20:27:36 +020059#define DRVNAME "it87"
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Jean Delvare44c1bcd2010-10-28 20:31:51 +020061enum chips { it87, it8712, it8716, it8718, it8720, it8721 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Jean Delvare67b671b2007-12-06 23:13:42 +010063static unsigned short force_id;
64module_param(force_id, ushort, 0);
65MODULE_PARM_DESC(force_id, "Override the detected device ID");
66
corentin.labbeb74f3fd2007-06-13 20:27:36 +020067static struct platform_device *pdev;
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#define REG 0x2e /* The register to read/write */
70#define DEV 0x07 /* Register: Logical device select */
71#define VAL 0x2f /* The value to read/write */
72#define PME 0x04 /* The device with the fan registers in it */
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +010073
74/* The device with the IT8718F/IT8720F VID value in it */
75#define GPIO 0x07
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#define DEVID 0x20 /* Register: Device ID */
78#define DEVREV 0x22 /* Register: Device Revision */
79
80static inline int
81superio_inb(int reg)
82{
83 outb(reg, REG);
84 return inb(VAL);
85}
86
Jean Delvare436cad22010-07-09 16:22:48 +020087static inline void
88superio_outb(int reg, int val)
89{
90 outb(reg, REG);
91 outb(val, VAL);
92}
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094static int superio_inw(int reg)
95{
96 int val;
97 outb(reg++, REG);
98 val = inb(VAL) << 8;
99 outb(reg, REG);
100 val |= inb(VAL);
101 return val;
102}
103
104static inline void
Jean Delvare87673dd2006-08-28 14:37:19 +0200105superio_select(int ldn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
107 outb(DEV, REG);
Jean Delvare87673dd2006-08-28 14:37:19 +0200108 outb(ldn, VAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109}
110
111static inline void
112superio_enter(void)
113{
114 outb(0x87, REG);
115 outb(0x01, REG);
116 outb(0x55, REG);
117 outb(0x55, REG);
118}
119
120static inline void
121superio_exit(void)
122{
123 outb(0x02, REG);
124 outb(0x02, VAL);
125}
126
Jean Delvare87673dd2006-08-28 14:37:19 +0200127/* Logical device 4 registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#define IT8712F_DEVID 0x8712
129#define IT8705F_DEVID 0x8705
Jean Delvare17d648b2006-08-28 14:23:46 +0200130#define IT8716F_DEVID 0x8716
Jean Delvare87673dd2006-08-28 14:37:19 +0200131#define IT8718F_DEVID 0x8718
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +0100132#define IT8720F_DEVID 0x8720
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200133#define IT8721F_DEVID 0x8721
Rudolf Marek08a8f6e2007-06-09 10:11:16 -0400134#define IT8726F_DEVID 0x8726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135#define IT87_ACT_REG 0x30
136#define IT87_BASE_REG 0x60
137
Jean Delvare87673dd2006-08-28 14:37:19 +0200138/* Logical device 7 registers (IT8712F and later) */
Jean Delvare895ff262009-12-09 20:35:47 +0100139#define IT87_SIO_GPIO3_REG 0x27
Jean Delvare591ec652009-12-09 20:35:48 +0100140#define IT87_SIO_GPIO5_REG 0x29
Jean Delvare87673dd2006-08-28 14:37:19 +0200141#define IT87_SIO_PINX2_REG 0x2c /* Pin selection */
142#define IT87_SIO_VID_REG 0xfc /* VID value */
Jean Delvared9b327c2010-03-05 22:17:17 +0100143#define IT87_SIO_BEEP_PIN_REG 0xf6 /* Beep pin mapping */
Jean Delvare87673dd2006-08-28 14:37:19 +0200144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145/* Update battery voltage after every reading if true */
146static int update_vbat;
147
148/* Not all BIOSes properly configure the PWM registers */
149static int fix_pwm_polarity;
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151/* Many IT87 constants specified below */
152
153/* Length of ISA address segment */
154#define IT87_EXTENT 8
155
Bjorn Helgaas87b4b662008-01-22 07:21:03 -0500156/* Length of ISA address segment for Environmental Controller */
157#define IT87_EC_EXTENT 2
158
159/* Offset of EC registers from ISA base address */
160#define IT87_EC_OFFSET 5
161
162/* Where are the ISA address/data registers relative to the EC base address */
163#define IT87_ADDR_REG_OFFSET 0
164#define IT87_DATA_REG_OFFSET 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166/*----- The IT87 registers -----*/
167
168#define IT87_REG_CONFIG 0x00
169
170#define IT87_REG_ALARM1 0x01
171#define IT87_REG_ALARM2 0x02
172#define IT87_REG_ALARM3 0x03
173
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +0100174/* The IT8718F and IT8720F have the VID value in a different register, in
175 Super-I/O configuration space. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176#define IT87_REG_VID 0x0a
Andrew Paprocki04751692008-08-06 22:41:06 +0200177/* The IT8705F and IT8712F earlier than revision 0x08 use register 0x0b
178 for fan divisors. Later IT8712F revisions must use 16-bit tachometer
179 mode. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180#define IT87_REG_FAN_DIV 0x0b
Jean Delvare17d648b2006-08-28 14:23:46 +0200181#define IT87_REG_FAN_16BIT 0x0c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183/* Monitors: 9 voltage (0 to 7, battery), 3 temp (1 to 3), 3 fan (1 to 3) */
184
Jean Delvarec7f1f712007-09-03 17:11:46 +0200185static const u8 IT87_REG_FAN[] = { 0x0d, 0x0e, 0x0f, 0x80, 0x82 };
186static const u8 IT87_REG_FAN_MIN[] = { 0x10, 0x11, 0x12, 0x84, 0x86 };
187static const u8 IT87_REG_FANX[] = { 0x18, 0x19, 0x1a, 0x81, 0x83 };
188static const u8 IT87_REG_FANX_MIN[] = { 0x1b, 0x1c, 0x1d, 0x85, 0x87 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189#define IT87_REG_FAN_MAIN_CTRL 0x13
190#define IT87_REG_FAN_CTL 0x14
191#define IT87_REG_PWM(nr) (0x15 + (nr))
Jean Delvare6229cdb2010-12-08 16:27:22 +0100192#define IT87_REG_PWM_DUTY(nr) (0x63 + (nr) * 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194#define IT87_REG_VIN(nr) (0x20 + (nr))
195#define IT87_REG_TEMP(nr) (0x29 + (nr))
196
197#define IT87_REG_VIN_MAX(nr) (0x30 + (nr) * 2)
198#define IT87_REG_VIN_MIN(nr) (0x31 + (nr) * 2)
199#define IT87_REG_TEMP_HIGH(nr) (0x40 + (nr) * 2)
200#define IT87_REG_TEMP_LOW(nr) (0x41 + (nr) * 2)
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202#define IT87_REG_VIN_ENABLE 0x50
203#define IT87_REG_TEMP_ENABLE 0x51
Jean Delvared9b327c2010-03-05 22:17:17 +0100204#define IT87_REG_BEEP_ENABLE 0x5c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206#define IT87_REG_CHIPID 0x58
207
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100208#define IT87_REG_AUTO_TEMP(nr, i) (0x60 + (nr) * 8 + (i))
209#define IT87_REG_AUTO_PWM(nr, i) (0x65 + (nr) * 8 + (i))
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200212struct it87_sio_data {
213 enum chips type;
214 /* Values read from Super-I/O config space */
Andrew Paprocki04751692008-08-06 22:41:06 +0200215 u8 revision;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200216 u8 vid_value;
Jean Delvared9b327c2010-03-05 22:17:17 +0100217 u8 beep_pin;
Jean Delvare738e5e02010-08-14 21:08:50 +0200218 u8 internal; /* Internal sensors can be labeled */
Jean Delvare591ec652009-12-09 20:35:48 +0100219 /* Features skipped based on config or DMI */
Jean Delvare895ff262009-12-09 20:35:47 +0100220 u8 skip_vid;
Jean Delvare591ec652009-12-09 20:35:48 +0100221 u8 skip_fan;
Jean Delvare98dd22c2008-10-09 15:33:58 +0200222 u8 skip_pwm;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200223};
224
Jean Delvareed6bafb2007-02-14 21:15:03 +0100225/* For each registered chip, we need to keep some data in memory.
226 The structure is dynamically allocated. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227struct it87_data {
Tony Jones1beeffe2007-08-20 13:46:20 -0700228 struct device *hwmon_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 enum chips type;
Andrew Paprocki04751692008-08-06 22:41:06 +0200230 u8 revision;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200232 unsigned short addr;
233 const char *name;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100234 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 char valid; /* !=0 if following fields are valid */
236 unsigned long last_updated; /* In jiffies */
237
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200238 u16 in_scaled; /* Internal voltage sensors are scaled */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 u8 in[9]; /* Register value */
Jean Delvare3543a532006-08-28 14:27:25 +0200240 u8 in_max[8]; /* Register value */
241 u8 in_min[8]; /* Register value */
Jean Delvare9060f8b2006-08-28 14:24:17 +0200242 u8 has_fan; /* Bitfield, fans enabled */
Jean Delvarec7f1f712007-09-03 17:11:46 +0200243 u16 fan[5]; /* Register values, possibly combined */
244 u16 fan_min[5]; /* Register values, possibly combined */
Jean Delvaree267d252009-03-12 13:36:39 +0100245 s8 temp[3]; /* Register value */
246 s8 temp_high[3]; /* Register value */
247 s8 temp_low[3]; /* Register value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 u8 sensor; /* Register value */
249 u8 fan_div[3]; /* Register encoding, shifted right */
250 u8 vid; /* Register encoding, combined */
Jean Delvarea7be58a2005-12-18 16:40:14 +0100251 u8 vrm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 u32 alarms; /* Register encoding, combined */
Jean Delvared9b327c2010-03-05 22:17:17 +0100253 u8 beeps; /* Register encoding */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 u8 fan_main_ctrl; /* Register value */
Jean Delvaref8d0c192007-02-14 21:15:02 +0100255 u8 fan_ctl; /* Register value */
Jean Delvareb99883d2010-03-05 22:17:15 +0100256
Jean Delvare6229cdb2010-12-08 16:27:22 +0100257 /* The following 3 arrays correspond to the same registers up to
258 * the IT8720F. The meaning of bits 6-0 depends on the value of bit
259 * 7, and we want to preserve settings on mode changes, so we have
260 * to track all values separately.
261 * Starting with the IT8721F, the manual PWM duty cycles are stored
262 * in separate registers (8-bit values), so the separate tracking
263 * is no longer needed, but it is still done to keep the driver
264 * simple. */
Jean Delvareb99883d2010-03-05 22:17:15 +0100265 u8 pwm_ctrl[3]; /* Register value */
Jean Delvare6229cdb2010-12-08 16:27:22 +0100266 u8 pwm_duty[3]; /* Manual PWM value set by user */
Jean Delvareb99883d2010-03-05 22:17:15 +0100267 u8 pwm_temp_map[3]; /* PWM to temp. chan. mapping (bits 1-0) */
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100268
269 /* Automatic fan speed control registers */
270 u8 auto_pwm[3][4]; /* [nr][3] is hard-coded */
271 s8 auto_temp[3][5]; /* [nr][0] is point1_temp_hyst */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272};
273
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200274static u8 in_to_reg(const struct it87_data *data, int nr, long val)
275{
276 long lsb;
277
278 if (data->type == it8721) {
279 if (data->in_scaled & (1 << nr))
280 lsb = 24;
281 else
282 lsb = 12;
283 } else
284 lsb = 16;
285
286 val = DIV_ROUND_CLOSEST(val, lsb);
287 return SENSORS_LIMIT(val, 0, 255);
288}
289
290static int in_from_reg(const struct it87_data *data, int nr, int val)
291{
292 if (data->type == it8721) {
293 if (data->in_scaled & (1 << nr))
294 return val * 24;
295 else
296 return val * 12;
297 } else
298 return val * 16;
299}
Jean Delvare0df6454d2010-10-28 20:31:51 +0200300
301static inline u8 FAN_TO_REG(long rpm, int div)
302{
303 if (rpm == 0)
304 return 255;
305 rpm = SENSORS_LIMIT(rpm, 1, 1000000);
306 return SENSORS_LIMIT((1350000 + rpm * div / 2) / (rpm * div), 1,
307 254);
308}
309
310static inline u16 FAN16_TO_REG(long rpm)
311{
312 if (rpm == 0)
313 return 0xffff;
314 return SENSORS_LIMIT((1350000 + rpm) / (rpm * 2), 1, 0xfffe);
315}
316
317#define FAN_FROM_REG(val, div) ((val) == 0 ? -1 : (val) == 255 ? 0 : \
318 1350000 / ((val) * (div)))
319/* The divider is fixed to 2 in 16-bit mode */
320#define FAN16_FROM_REG(val) ((val) == 0 ? -1 : (val) == 0xffff ? 0 : \
321 1350000 / ((val) * 2))
322
323#define TEMP_TO_REG(val) (SENSORS_LIMIT(((val) < 0 ? (((val) - 500) / 1000) : \
324 ((val) + 500) / 1000), -128, 127))
325#define TEMP_FROM_REG(val) ((val) * 1000)
326
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200327static u8 pwm_to_reg(const struct it87_data *data, long val)
328{
329 if (data->type == it8721)
330 return val;
331 else
332 return val >> 1;
333}
334
335static int pwm_from_reg(const struct it87_data *data, u8 reg)
336{
337 if (data->type == it8721)
338 return reg;
339 else
340 return (reg & 0x7f) << 1;
341}
342
Jean Delvare0df6454d2010-10-28 20:31:51 +0200343
344static int DIV_TO_REG(int val)
345{
346 int answer = 0;
347 while (answer < 7 && (val >>= 1))
348 answer++;
349 return answer;
350}
351#define DIV_FROM_REG(val) (1 << (val))
352
353static const unsigned int pwm_freq[8] = {
354 48000000 / 128,
355 24000000 / 128,
356 12000000 / 128,
357 8000000 / 128,
358 6000000 / 128,
359 3000000 / 128,
360 1500000 / 128,
361 750000 / 128,
362};
363
Andrew Paprocki04751692008-08-06 22:41:06 +0200364static inline int has_16bit_fans(const struct it87_data *data)
365{
Andrew Paprocki816d8c62008-08-06 22:41:06 +0200366 /* IT8705F Datasheet 0.4.1, 3h == Version G.
Andrew Paprocki859b9ef2008-09-20 10:25:19 +0200367 IT8712F Datasheet 0.9.1, section 8.3.5 indicates 8h == Version J.
Andrew Paprocki816d8c62008-08-06 22:41:06 +0200368 These are the first revisions with 16bit tachometer support. */
369 return (data->type == it87 && data->revision >= 0x03)
Andrew Paprocki859b9ef2008-09-20 10:25:19 +0200370 || (data->type == it8712 && data->revision >= 0x08)
Andrew Paprocki04751692008-08-06 22:41:06 +0200371 || data->type == it8716
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +0100372 || data->type == it8718
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200373 || data->type == it8720
374 || data->type == it8721;
Andrew Paprocki04751692008-08-06 22:41:06 +0200375}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100377static inline int has_old_autopwm(const struct it87_data *data)
378{
379 /* The old automatic fan speed control interface is implemented
380 by IT8705F chips up to revision F and IT8712F chips up to
381 revision G. */
382 return (data->type == it87 && data->revision < 0x03)
383 || (data->type == it8712 && data->revision < 0x08);
384}
385
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200386static int it87_probe(struct platform_device *pdev);
Jean Delvared0546122007-07-22 12:09:48 +0200387static int __devexit it87_remove(struct platform_device *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200389static int it87_read_value(struct it87_data *data, u8 reg);
390static void it87_write_value(struct it87_data *data, u8 reg, u8 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391static struct it87_data *it87_update_device(struct device *dev);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200392static int it87_check_pwm(struct device *dev);
393static void it87_init_device(struct platform_device *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200396static struct platform_driver it87_driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100397 .driver = {
Jean Delvare87218842006-09-03 22:36:14 +0200398 .owner = THIS_MODULE,
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200399 .name = DRVNAME,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100400 },
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200401 .probe = it87_probe,
402 .remove = __devexit_p(it87_remove),
Jean Delvarefde09502005-07-19 23:51:07 +0200403};
404
Jean Delvare20ad93d2005-06-05 11:53:25 +0200405static ssize_t show_in(struct device *dev, struct device_attribute *attr,
406 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200408 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
409 int nr = sensor_attr->index;
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 struct it87_data *data = it87_update_device(dev);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200412 return sprintf(buf, "%d\n", in_from_reg(data, nr, data->in[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
414
Jean Delvare20ad93d2005-06-05 11:53:25 +0200415static ssize_t show_in_min(struct device *dev, struct device_attribute *attr,
416 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200418 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
419 int nr = sensor_attr->index;
420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 struct it87_data *data = it87_update_device(dev);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200422 return sprintf(buf, "%d\n", in_from_reg(data, nr, data->in_min[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423}
424
Jean Delvare20ad93d2005-06-05 11:53:25 +0200425static ssize_t show_in_max(struct device *dev, struct device_attribute *attr,
426 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200428 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
429 int nr = sensor_attr->index;
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 struct it87_data *data = it87_update_device(dev);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200432 return sprintf(buf, "%d\n", in_from_reg(data, nr, data->in_max[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
Jean Delvare20ad93d2005-06-05 11:53:25 +0200435static ssize_t set_in_min(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);
Jean Delvaref5f64502010-03-05 22:17:19 +0100442 unsigned long val;
443
444 if (strict_strtoul(buf, 10, &val) < 0)
445 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100447 mutex_lock(&data->update_lock);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200448 data->in_min[nr] = in_to_reg(data, nr, val);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200449 it87_write_value(data, IT87_REG_VIN_MIN(nr),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 data->in_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100451 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 return count;
453}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200454static ssize_t set_in_max(struct device *dev, struct device_attribute *attr,
455 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200457 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
458 int nr = sensor_attr->index;
459
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200460 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100461 unsigned long val;
462
463 if (strict_strtoul(buf, 10, &val) < 0)
464 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100466 mutex_lock(&data->update_lock);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200467 data->in_max[nr] = in_to_reg(data, nr, val);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200468 it87_write_value(data, IT87_REG_VIN_MAX(nr),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 data->in_max[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100470 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 return count;
472}
473
474#define show_in_offset(offset) \
Jean Delvare20ad93d2005-06-05 11:53:25 +0200475static SENSOR_DEVICE_ATTR(in##offset##_input, S_IRUGO, \
476 show_in, NULL, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478#define limit_in_offset(offset) \
Jean Delvare20ad93d2005-06-05 11:53:25 +0200479static SENSOR_DEVICE_ATTR(in##offset##_min, S_IRUGO | S_IWUSR, \
480 show_in_min, set_in_min, offset); \
481static SENSOR_DEVICE_ATTR(in##offset##_max, S_IRUGO | S_IWUSR, \
482 show_in_max, set_in_max, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484show_in_offset(0);
485limit_in_offset(0);
486show_in_offset(1);
487limit_in_offset(1);
488show_in_offset(2);
489limit_in_offset(2);
490show_in_offset(3);
491limit_in_offset(3);
492show_in_offset(4);
493limit_in_offset(4);
494show_in_offset(5);
495limit_in_offset(5);
496show_in_offset(6);
497limit_in_offset(6);
498show_in_offset(7);
499limit_in_offset(7);
500show_in_offset(8);
501
502/* 3 temperatures */
Jean Delvare20ad93d2005-06-05 11:53:25 +0200503static ssize_t show_temp(struct device *dev, struct device_attribute *attr,
504 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200506 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
507 int nr = sensor_attr->index;
508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 struct it87_data *data = it87_update_device(dev);
510 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[nr]));
511}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200512static ssize_t show_temp_max(struct device *dev, struct device_attribute *attr,
513 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200515 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
516 int nr = sensor_attr->index;
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 struct it87_data *data = it87_update_device(dev);
519 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_high[nr]));
520}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200521static ssize_t show_temp_min(struct device *dev, struct device_attribute *attr,
522 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200524 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
525 int nr = sensor_attr->index;
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 struct it87_data *data = it87_update_device(dev);
528 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_low[nr]));
529}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200530static ssize_t set_temp_max(struct device *dev, struct device_attribute *attr,
531 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200533 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
534 int nr = sensor_attr->index;
535
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200536 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100537 long val;
538
539 if (strict_strtol(buf, 10, &val) < 0)
540 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100542 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 data->temp_high[nr] = TEMP_TO_REG(val);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200544 it87_write_value(data, IT87_REG_TEMP_HIGH(nr), data->temp_high[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100545 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 return count;
547}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200548static ssize_t set_temp_min(struct device *dev, struct device_attribute *attr,
549 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200551 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
552 int nr = sensor_attr->index;
553
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200554 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100555 long val;
556
557 if (strict_strtol(buf, 10, &val) < 0)
558 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100560 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 data->temp_low[nr] = TEMP_TO_REG(val);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200562 it87_write_value(data, IT87_REG_TEMP_LOW(nr), data->temp_low[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100563 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 return count;
565}
566#define show_temp_offset(offset) \
Jean Delvare20ad93d2005-06-05 11:53:25 +0200567static SENSOR_DEVICE_ATTR(temp##offset##_input, S_IRUGO, \
568 show_temp, NULL, offset - 1); \
569static SENSOR_DEVICE_ATTR(temp##offset##_max, S_IRUGO | S_IWUSR, \
570 show_temp_max, set_temp_max, offset - 1); \
571static SENSOR_DEVICE_ATTR(temp##offset##_min, S_IRUGO | S_IWUSR, \
572 show_temp_min, set_temp_min, offset - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574show_temp_offset(1);
575show_temp_offset(2);
576show_temp_offset(3);
577
Jean Delvare20ad93d2005-06-05 11:53:25 +0200578static ssize_t show_sensor(struct device *dev, struct device_attribute *attr,
579 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200581 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
582 int nr = sensor_attr->index;
583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 struct it87_data *data = it87_update_device(dev);
Jean Delvare5f2dc792010-03-05 22:17:18 +0100585 u8 reg = data->sensor; /* In case the value is updated while
586 we use it */
587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 if (reg & (1 << nr))
589 return sprintf(buf, "3\n"); /* thermal diode */
590 if (reg & (8 << nr))
Jean Delvare4ed10772008-10-17 17:51:16 +0200591 return sprintf(buf, "4\n"); /* thermistor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 return sprintf(buf, "0\n"); /* disabled */
593}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200594static ssize_t set_sensor(struct device *dev, struct device_attribute *attr,
595 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200597 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
598 int nr = sensor_attr->index;
599
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200600 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100601 long val;
Jean Delvare8acf07c2010-04-14 16:14:09 +0200602 u8 reg;
Jean Delvaref5f64502010-03-05 22:17:19 +0100603
604 if (strict_strtol(buf, 10, &val) < 0)
605 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Jean Delvare8acf07c2010-04-14 16:14:09 +0200607 reg = it87_read_value(data, IT87_REG_TEMP_ENABLE);
608 reg &= ~(1 << nr);
609 reg &= ~(8 << nr);
Jean Delvare4ed10772008-10-17 17:51:16 +0200610 if (val == 2) { /* backwards compatibility */
611 dev_warn(dev, "Sensor type 2 is deprecated, please use 4 "
612 "instead\n");
613 val = 4;
614 }
615 /* 3 = thermal diode; 4 = thermistor; 0 = disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 if (val == 3)
Jean Delvare8acf07c2010-04-14 16:14:09 +0200617 reg |= 1 << nr;
Jean Delvare4ed10772008-10-17 17:51:16 +0200618 else if (val == 4)
Jean Delvare8acf07c2010-04-14 16:14:09 +0200619 reg |= 8 << nr;
620 else if (val != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 return -EINVAL;
Jean Delvare8acf07c2010-04-14 16:14:09 +0200622
623 mutex_lock(&data->update_lock);
624 data->sensor = reg;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200625 it87_write_value(data, IT87_REG_TEMP_ENABLE, data->sensor);
Jean Delvare2b3d1d82010-04-14 16:14:10 +0200626 data->valid = 0; /* Force cache refresh */
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100627 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 return count;
629}
630#define show_sensor_offset(offset) \
Jean Delvare20ad93d2005-06-05 11:53:25 +0200631static SENSOR_DEVICE_ATTR(temp##offset##_type, S_IRUGO | S_IWUSR, \
632 show_sensor, set_sensor, offset - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634show_sensor_offset(1);
635show_sensor_offset(2);
636show_sensor_offset(3);
637
638/* 3 Fans */
Jean Delvareb99883d2010-03-05 22:17:15 +0100639
640static int pwm_mode(const struct it87_data *data, int nr)
641{
642 int ctrl = data->fan_main_ctrl & (1 << nr);
643
644 if (ctrl == 0) /* Full speed */
645 return 0;
646 if (data->pwm_ctrl[nr] & 0x80) /* Automatic mode */
647 return 2;
648 else /* Manual mode */
649 return 1;
650}
651
Jean Delvare20ad93d2005-06-05 11:53:25 +0200652static ssize_t show_fan(struct device *dev, struct device_attribute *attr,
653 char *buf)
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 struct it87_data *data = it87_update_device(dev);
Jean Delvare5f2dc792010-03-05 22:17:18 +0100659 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[nr],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 DIV_FROM_REG(data->fan_div[nr])));
661}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200662static ssize_t show_fan_min(struct device *dev, struct device_attribute *attr,
663 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200665 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
666 int nr = sensor_attr->index;
667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 struct it87_data *data = it87_update_device(dev);
Jean Delvare5f2dc792010-03-05 22:17:18 +0100669 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan_min[nr],
670 DIV_FROM_REG(data->fan_div[nr])));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200672static ssize_t show_fan_div(struct device *dev, struct device_attribute *attr,
673 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200675 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
676 int nr = sensor_attr->index;
677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 struct it87_data *data = it87_update_device(dev);
679 return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[nr]));
680}
Jean Delvare5f2dc792010-03-05 22:17:18 +0100681static ssize_t show_pwm_enable(struct device *dev,
682 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200684 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
685 int nr = sensor_attr->index;
686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 struct it87_data *data = it87_update_device(dev);
Jean Delvareb99883d2010-03-05 22:17:15 +0100688 return sprintf(buf, "%d\n", pwm_mode(data, nr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200690static ssize_t show_pwm(struct device *dev, struct device_attribute *attr,
691 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200693 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
694 int nr = sensor_attr->index;
695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 struct it87_data *data = it87_update_device(dev);
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200697 return sprintf(buf, "%d\n",
698 pwm_from_reg(data, data->pwm_duty[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699}
Jean Delvaref8d0c192007-02-14 21:15:02 +0100700static ssize_t show_pwm_freq(struct device *dev, struct device_attribute *attr,
701 char *buf)
702{
703 struct it87_data *data = it87_update_device(dev);
704 int index = (data->fan_ctl >> 4) & 0x07;
705
706 return sprintf(buf, "%u\n", pwm_freq[index]);
707}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200708static ssize_t set_fan_min(struct device *dev, struct device_attribute *attr,
709 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200711 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
712 int nr = sensor_attr->index;
713
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200714 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100715 long val;
Jean Delvare7f999aa2007-02-14 21:15:03 +0100716 u8 reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Jean Delvaref5f64502010-03-05 22:17:19 +0100718 if (strict_strtol(buf, 10, &val) < 0)
719 return -EINVAL;
720
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100721 mutex_lock(&data->update_lock);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200722 reg = it87_read_value(data, IT87_REG_FAN_DIV);
Jean Delvare07eab462005-11-23 15:44:31 -0800723 switch (nr) {
Jean Delvare5f2dc792010-03-05 22:17:18 +0100724 case 0:
725 data->fan_div[nr] = reg & 0x07;
726 break;
727 case 1:
728 data->fan_div[nr] = (reg >> 3) & 0x07;
729 break;
730 case 2:
731 data->fan_div[nr] = (reg & 0x40) ? 3 : 1;
732 break;
Jean Delvare07eab462005-11-23 15:44:31 -0800733 }
734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 data->fan_min[nr] = FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
Jean Delvarec7f1f712007-09-03 17:11:46 +0200736 it87_write_value(data, IT87_REG_FAN_MIN[nr], data->fan_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100737 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return count;
739}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200740static ssize_t set_fan_div(struct device *dev, struct device_attribute *attr,
741 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200743 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
744 int nr = sensor_attr->index;
745
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200746 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100747 unsigned long val;
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200748 int min;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 u8 old;
750
Jean Delvaref5f64502010-03-05 22:17:19 +0100751 if (strict_strtoul(buf, 10, &val) < 0)
752 return -EINVAL;
753
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100754 mutex_lock(&data->update_lock);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200755 old = it87_read_value(data, IT87_REG_FAN_DIV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200757 /* Save fan min limit */
758 min = FAN_FROM_REG(data->fan_min[nr], DIV_FROM_REG(data->fan_div[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760 switch (nr) {
761 case 0:
762 case 1:
763 data->fan_div[nr] = DIV_TO_REG(val);
764 break;
765 case 2:
766 if (val < 8)
767 data->fan_div[nr] = 1;
768 else
769 data->fan_div[nr] = 3;
770 }
771 val = old & 0x80;
772 val |= (data->fan_div[0] & 0x07);
773 val |= (data->fan_div[1] & 0x07) << 3;
774 if (data->fan_div[2] == 3)
775 val |= 0x1 << 6;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200776 it87_write_value(data, IT87_REG_FAN_DIV, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200778 /* Restore fan min limit */
779 data->fan_min[nr] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
Jean Delvarec7f1f712007-09-03 17:11:46 +0200780 it87_write_value(data, IT87_REG_FAN_MIN[nr], data->fan_min[nr]);
Jean Delvare8ab4ec32006-08-28 14:35:46 +0200781
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100782 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 return count;
784}
Jean Delvarecccfc9c2010-03-05 22:17:21 +0100785
786/* Returns 0 if OK, -EINVAL otherwise */
787static int check_trip_points(struct device *dev, int nr)
788{
789 const struct it87_data *data = dev_get_drvdata(dev);
790 int i, err = 0;
791
792 if (has_old_autopwm(data)) {
793 for (i = 0; i < 3; i++) {
794 if (data->auto_temp[nr][i] > data->auto_temp[nr][i + 1])
795 err = -EINVAL;
796 }
797 for (i = 0; i < 2; i++) {
798 if (data->auto_pwm[nr][i] > data->auto_pwm[nr][i + 1])
799 err = -EINVAL;
800 }
801 }
802
803 if (err) {
804 dev_err(dev, "Inconsistent trip points, not switching to "
805 "automatic mode\n");
806 dev_err(dev, "Adjust the trip points and try again\n");
807 }
808 return err;
809}
810
Jean Delvare20ad93d2005-06-05 11:53:25 +0200811static ssize_t set_pwm_enable(struct device *dev,
812 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200814 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
815 int nr = sensor_attr->index;
816
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200817 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100818 long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Jean Delvaref5f64502010-03-05 22:17:19 +0100820 if (strict_strtol(buf, 10, &val) < 0 || val < 0 || val > 2)
Jean Delvareb99883d2010-03-05 22:17:15 +0100821 return -EINVAL;
822
Jean Delvarecccfc9c2010-03-05 22:17:21 +0100823 /* Check trip points before switching to automatic mode */
824 if (val == 2) {
825 if (check_trip_points(dev, nr) < 0)
826 return -EINVAL;
827 }
828
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100829 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
831 if (val == 0) {
832 int tmp;
833 /* make sure the fan is on when in on/off mode */
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200834 tmp = it87_read_value(data, IT87_REG_FAN_CTL);
835 it87_write_value(data, IT87_REG_FAN_CTL, tmp | (1 << nr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 /* set on/off mode */
837 data->fan_main_ctrl &= ~(1 << nr);
Jean Delvare5f2dc792010-03-05 22:17:18 +0100838 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
839 data->fan_main_ctrl);
Jean Delvareb99883d2010-03-05 22:17:15 +0100840 } else {
841 if (val == 1) /* Manual mode */
Jean Delvare6229cdb2010-12-08 16:27:22 +0100842 data->pwm_ctrl[nr] = data->type == it8721 ?
843 data->pwm_temp_map[nr] :
844 data->pwm_duty[nr];
Jean Delvareb99883d2010-03-05 22:17:15 +0100845 else /* Automatic mode */
846 data->pwm_ctrl[nr] = 0x80 | data->pwm_temp_map[nr];
847 it87_write_value(data, IT87_REG_PWM(nr), data->pwm_ctrl[nr]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 /* set SmartGuardian mode */
849 data->fan_main_ctrl |= (1 << nr);
Jean Delvare5f2dc792010-03-05 22:17:18 +0100850 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
851 data->fan_main_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 }
853
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100854 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 return count;
856}
Jean Delvare20ad93d2005-06-05 11:53:25 +0200857static ssize_t set_pwm(struct device *dev, struct device_attribute *attr,
858 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
Jean Delvare20ad93d2005-06-05 11:53:25 +0200860 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
861 int nr = sensor_attr->index;
862
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200863 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100864 long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Jean Delvaref5f64502010-03-05 22:17:19 +0100866 if (strict_strtol(buf, 10, &val) < 0 || val < 0 || val > 255)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 return -EINVAL;
868
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100869 mutex_lock(&data->update_lock);
Jean Delvare6229cdb2010-12-08 16:27:22 +0100870 if (data->type == it8721) {
871 /* If we are in automatic mode, the PWM duty cycle register
872 * is read-only so we can't write the value */
873 if (data->pwm_ctrl[nr] & 0x80) {
874 mutex_unlock(&data->update_lock);
875 return -EBUSY;
876 }
877 data->pwm_duty[nr] = pwm_to_reg(data, val);
878 it87_write_value(data, IT87_REG_PWM_DUTY(nr),
879 data->pwm_duty[nr]);
880 } else {
881 data->pwm_duty[nr] = pwm_to_reg(data, val);
882 /* If we are in manual mode, write the duty cycle immediately;
883 * otherwise, just store it for later use. */
884 if (!(data->pwm_ctrl[nr] & 0x80)) {
885 data->pwm_ctrl[nr] = data->pwm_duty[nr];
886 it87_write_value(data, IT87_REG_PWM(nr),
887 data->pwm_ctrl[nr]);
888 }
Jean Delvareb99883d2010-03-05 22:17:15 +0100889 }
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100890 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 return count;
892}
Jean Delvaref8d0c192007-02-14 21:15:02 +0100893static ssize_t set_pwm_freq(struct device *dev,
894 struct device_attribute *attr, const char *buf, size_t count)
895{
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200896 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +0100897 unsigned long val;
Jean Delvaref8d0c192007-02-14 21:15:02 +0100898 int i;
899
Jean Delvaref5f64502010-03-05 22:17:19 +0100900 if (strict_strtoul(buf, 10, &val) < 0)
901 return -EINVAL;
902
Jean Delvaref8d0c192007-02-14 21:15:02 +0100903 /* Search for the nearest available frequency */
904 for (i = 0; i < 7; i++) {
905 if (val > (pwm_freq[i] + pwm_freq[i+1]) / 2)
906 break;
907 }
908
909 mutex_lock(&data->update_lock);
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200910 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL) & 0x8f;
Jean Delvaref8d0c192007-02-14 21:15:02 +0100911 data->fan_ctl |= i << 4;
corentin.labbeb74f3fd2007-06-13 20:27:36 +0200912 it87_write_value(data, IT87_REG_FAN_CTL, data->fan_ctl);
Jean Delvaref8d0c192007-02-14 21:15:02 +0100913 mutex_unlock(&data->update_lock);
914
915 return count;
916}
Jean Delvare94ac7ee2010-03-05 22:17:16 +0100917static ssize_t show_pwm_temp_map(struct device *dev,
918 struct device_attribute *attr, char *buf)
919{
920 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
921 int nr = sensor_attr->index;
922
923 struct it87_data *data = it87_update_device(dev);
924 int map;
925
926 if (data->pwm_temp_map[nr] < 3)
927 map = 1 << data->pwm_temp_map[nr];
928 else
929 map = 0; /* Should never happen */
930 return sprintf(buf, "%d\n", map);
931}
932static ssize_t set_pwm_temp_map(struct device *dev,
933 struct device_attribute *attr, const char *buf, size_t count)
934{
935 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
936 int nr = sensor_attr->index;
937
938 struct it87_data *data = dev_get_drvdata(dev);
939 long val;
940 u8 reg;
941
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100942 /* This check can go away if we ever support automatic fan speed
943 control on newer chips. */
944 if (!has_old_autopwm(data)) {
945 dev_notice(dev, "Mapping change disabled for safety reasons\n");
946 return -EINVAL;
947 }
948
Jean Delvare94ac7ee2010-03-05 22:17:16 +0100949 if (strict_strtol(buf, 10, &val) < 0)
950 return -EINVAL;
951
952 switch (val) {
953 case (1 << 0):
954 reg = 0x00;
955 break;
956 case (1 << 1):
957 reg = 0x01;
958 break;
959 case (1 << 2):
960 reg = 0x02;
961 break;
962 default:
963 return -EINVAL;
964 }
965
966 mutex_lock(&data->update_lock);
967 data->pwm_temp_map[nr] = reg;
968 /* If we are in automatic mode, write the temp mapping immediately;
969 * otherwise, just store it for later use. */
970 if (data->pwm_ctrl[nr] & 0x80) {
971 data->pwm_ctrl[nr] = 0x80 | data->pwm_temp_map[nr];
972 it87_write_value(data, IT87_REG_PWM(nr), data->pwm_ctrl[nr]);
973 }
974 mutex_unlock(&data->update_lock);
975 return count;
976}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100978static ssize_t show_auto_pwm(struct device *dev,
979 struct device_attribute *attr, char *buf)
980{
981 struct it87_data *data = it87_update_device(dev);
982 struct sensor_device_attribute_2 *sensor_attr =
983 to_sensor_dev_attr_2(attr);
984 int nr = sensor_attr->nr;
985 int point = sensor_attr->index;
986
Jean Delvare44c1bcd2010-10-28 20:31:51 +0200987 return sprintf(buf, "%d\n",
988 pwm_from_reg(data, data->auto_pwm[nr][point]));
Jean Delvare4f3f51b2010-03-05 22:17:21 +0100989}
990
991static ssize_t set_auto_pwm(struct device *dev,
992 struct device_attribute *attr, const char *buf, size_t count)
993{
994 struct it87_data *data = dev_get_drvdata(dev);
995 struct sensor_device_attribute_2 *sensor_attr =
996 to_sensor_dev_attr_2(attr);
997 int nr = sensor_attr->nr;
998 int point = sensor_attr->index;
999 long val;
1000
1001 if (strict_strtol(buf, 10, &val) < 0 || val < 0 || val > 255)
1002 return -EINVAL;
1003
1004 mutex_lock(&data->update_lock);
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001005 data->auto_pwm[nr][point] = pwm_to_reg(data, val);
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001006 it87_write_value(data, IT87_REG_AUTO_PWM(nr, point),
1007 data->auto_pwm[nr][point]);
1008 mutex_unlock(&data->update_lock);
1009 return count;
1010}
1011
1012static ssize_t show_auto_temp(struct device *dev,
1013 struct device_attribute *attr, char *buf)
1014{
1015 struct it87_data *data = it87_update_device(dev);
1016 struct sensor_device_attribute_2 *sensor_attr =
1017 to_sensor_dev_attr_2(attr);
1018 int nr = sensor_attr->nr;
1019 int point = sensor_attr->index;
1020
1021 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->auto_temp[nr][point]));
1022}
1023
1024static ssize_t set_auto_temp(struct device *dev,
1025 struct device_attribute *attr, const char *buf, size_t count)
1026{
1027 struct it87_data *data = dev_get_drvdata(dev);
1028 struct sensor_device_attribute_2 *sensor_attr =
1029 to_sensor_dev_attr_2(attr);
1030 int nr = sensor_attr->nr;
1031 int point = sensor_attr->index;
1032 long val;
1033
1034 if (strict_strtol(buf, 10, &val) < 0 || val < -128000 || val > 127000)
1035 return -EINVAL;
1036
1037 mutex_lock(&data->update_lock);
1038 data->auto_temp[nr][point] = TEMP_TO_REG(val);
1039 it87_write_value(data, IT87_REG_AUTO_TEMP(nr, point),
1040 data->auto_temp[nr][point]);
1041 mutex_unlock(&data->update_lock);
1042 return count;
1043}
1044
Jean Delvare20ad93d2005-06-05 11:53:25 +02001045#define show_fan_offset(offset) \
1046static SENSOR_DEVICE_ATTR(fan##offset##_input, S_IRUGO, \
1047 show_fan, NULL, offset - 1); \
1048static SENSOR_DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
1049 show_fan_min, set_fan_min, offset - 1); \
1050static SENSOR_DEVICE_ATTR(fan##offset##_div, S_IRUGO | S_IWUSR, \
1051 show_fan_div, set_fan_div, offset - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053show_fan_offset(1);
1054show_fan_offset(2);
1055show_fan_offset(3);
1056
1057#define show_pwm_offset(offset) \
Jean Delvare20ad93d2005-06-05 11:53:25 +02001058static SENSOR_DEVICE_ATTR(pwm##offset##_enable, S_IRUGO | S_IWUSR, \
1059 show_pwm_enable, set_pwm_enable, offset - 1); \
1060static SENSOR_DEVICE_ATTR(pwm##offset, S_IRUGO | S_IWUSR, \
Jean Delvaref8d0c192007-02-14 21:15:02 +01001061 show_pwm, set_pwm, offset - 1); \
1062static DEVICE_ATTR(pwm##offset##_freq, \
1063 (offset == 1 ? S_IRUGO | S_IWUSR : S_IRUGO), \
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001064 show_pwm_freq, (offset == 1 ? set_pwm_freq : NULL)); \
1065static SENSOR_DEVICE_ATTR(pwm##offset##_auto_channels_temp, \
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001066 S_IRUGO | S_IWUSR, show_pwm_temp_map, set_pwm_temp_map, \
1067 offset - 1); \
1068static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point1_pwm, \
1069 S_IRUGO | S_IWUSR, show_auto_pwm, set_auto_pwm, \
1070 offset - 1, 0); \
1071static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point2_pwm, \
1072 S_IRUGO | S_IWUSR, show_auto_pwm, set_auto_pwm, \
1073 offset - 1, 1); \
1074static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point3_pwm, \
1075 S_IRUGO | S_IWUSR, show_auto_pwm, set_auto_pwm, \
1076 offset - 1, 2); \
1077static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point4_pwm, \
1078 S_IRUGO, show_auto_pwm, NULL, offset - 1, 3); \
1079static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point1_temp, \
1080 S_IRUGO | S_IWUSR, show_auto_temp, set_auto_temp, \
1081 offset - 1, 1); \
1082static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point1_temp_hyst, \
1083 S_IRUGO | S_IWUSR, show_auto_temp, set_auto_temp, \
1084 offset - 1, 0); \
1085static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point2_temp, \
1086 S_IRUGO | S_IWUSR, show_auto_temp, set_auto_temp, \
1087 offset - 1, 2); \
1088static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point3_temp, \
1089 S_IRUGO | S_IWUSR, show_auto_temp, set_auto_temp, \
1090 offset - 1, 3); \
1091static SENSOR_DEVICE_ATTR_2(pwm##offset##_auto_point4_temp, \
1092 S_IRUGO | S_IWUSR, show_auto_temp, set_auto_temp, \
1093 offset - 1, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
1095show_pwm_offset(1);
1096show_pwm_offset(2);
1097show_pwm_offset(3);
1098
Jean Delvare17d648b2006-08-28 14:23:46 +02001099/* A different set of callbacks for 16-bit fans */
1100static ssize_t show_fan16(struct device *dev, struct device_attribute *attr,
1101 char *buf)
1102{
1103 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1104 int nr = sensor_attr->index;
1105 struct it87_data *data = it87_update_device(dev);
1106 return sprintf(buf, "%d\n", FAN16_FROM_REG(data->fan[nr]));
1107}
1108
1109static ssize_t show_fan16_min(struct device *dev, struct device_attribute *attr,
1110 char *buf)
1111{
1112 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1113 int nr = sensor_attr->index;
1114 struct it87_data *data = it87_update_device(dev);
1115 return sprintf(buf, "%d\n", FAN16_FROM_REG(data->fan_min[nr]));
1116}
1117
1118static ssize_t set_fan16_min(struct device *dev, struct device_attribute *attr,
1119 const char *buf, size_t count)
1120{
1121 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1122 int nr = sensor_attr->index;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001123 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001124 long val;
1125
1126 if (strict_strtol(buf, 10, &val) < 0)
1127 return -EINVAL;
Jean Delvare17d648b2006-08-28 14:23:46 +02001128
1129 mutex_lock(&data->update_lock);
1130 data->fan_min[nr] = FAN16_TO_REG(val);
Jean Delvarec7f1f712007-09-03 17:11:46 +02001131 it87_write_value(data, IT87_REG_FAN_MIN[nr],
Jean Delvare17d648b2006-08-28 14:23:46 +02001132 data->fan_min[nr] & 0xff);
Jean Delvarec7f1f712007-09-03 17:11:46 +02001133 it87_write_value(data, IT87_REG_FANX_MIN[nr],
Jean Delvare17d648b2006-08-28 14:23:46 +02001134 data->fan_min[nr] >> 8);
1135 mutex_unlock(&data->update_lock);
1136 return count;
1137}
1138
1139/* We want to use the same sysfs file names as 8-bit fans, but we need
1140 different variable names, so we have to use SENSOR_ATTR instead of
1141 SENSOR_DEVICE_ATTR. */
1142#define show_fan16_offset(offset) \
1143static struct sensor_device_attribute sensor_dev_attr_fan##offset##_input16 \
1144 = SENSOR_ATTR(fan##offset##_input, S_IRUGO, \
1145 show_fan16, NULL, offset - 1); \
1146static struct sensor_device_attribute sensor_dev_attr_fan##offset##_min16 \
1147 = SENSOR_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
1148 show_fan16_min, set_fan16_min, offset - 1)
1149
1150show_fan16_offset(1);
1151show_fan16_offset(2);
1152show_fan16_offset(3);
Jean Delvarec7f1f712007-09-03 17:11:46 +02001153show_fan16_offset(4);
1154show_fan16_offset(5);
Jean Delvare17d648b2006-08-28 14:23:46 +02001155
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156/* Alarms */
Jean Delvare5f2dc792010-03-05 22:17:18 +01001157static ssize_t show_alarms(struct device *dev, struct device_attribute *attr,
1158 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159{
1160 struct it87_data *data = it87_update_device(dev);
Jean Delvare68188ba2005-05-16 18:52:38 +02001161 return sprintf(buf, "%u\n", data->alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162}
Jean Delvare1d66c642005-04-18 21:16:59 -07001163static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Jean Delvare0124dd72007-11-25 16:16:41 +01001165static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
1166 char *buf)
1167{
1168 int bitnr = to_sensor_dev_attr(attr)->index;
1169 struct it87_data *data = it87_update_device(dev);
1170 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
1171}
1172static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 8);
1173static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 9);
1174static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 10);
1175static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 11);
1176static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 12);
1177static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 13);
1178static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 14);
1179static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 15);
1180static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 0);
1181static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 1);
1182static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 2);
1183static SENSOR_DEVICE_ATTR(fan4_alarm, S_IRUGO, show_alarm, NULL, 3);
1184static SENSOR_DEVICE_ATTR(fan5_alarm, S_IRUGO, show_alarm, NULL, 6);
1185static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 16);
1186static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 17);
1187static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 18);
1188
Jean Delvared9b327c2010-03-05 22:17:17 +01001189static ssize_t show_beep(struct device *dev, struct device_attribute *attr,
1190 char *buf)
1191{
1192 int bitnr = to_sensor_dev_attr(attr)->index;
1193 struct it87_data *data = it87_update_device(dev);
1194 return sprintf(buf, "%u\n", (data->beeps >> bitnr) & 1);
1195}
1196static ssize_t set_beep(struct device *dev, struct device_attribute *attr,
1197 const char *buf, size_t count)
1198{
1199 int bitnr = to_sensor_dev_attr(attr)->index;
1200 struct it87_data *data = dev_get_drvdata(dev);
1201 long val;
1202
1203 if (strict_strtol(buf, 10, &val) < 0
1204 || (val != 0 && val != 1))
1205 return -EINVAL;
1206
1207 mutex_lock(&data->update_lock);
1208 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
1209 if (val)
1210 data->beeps |= (1 << bitnr);
1211 else
1212 data->beeps &= ~(1 << bitnr);
1213 it87_write_value(data, IT87_REG_BEEP_ENABLE, data->beeps);
1214 mutex_unlock(&data->update_lock);
1215 return count;
1216}
1217
1218static SENSOR_DEVICE_ATTR(in0_beep, S_IRUGO | S_IWUSR,
1219 show_beep, set_beep, 1);
1220static SENSOR_DEVICE_ATTR(in1_beep, S_IRUGO, show_beep, NULL, 1);
1221static SENSOR_DEVICE_ATTR(in2_beep, S_IRUGO, show_beep, NULL, 1);
1222static SENSOR_DEVICE_ATTR(in3_beep, S_IRUGO, show_beep, NULL, 1);
1223static SENSOR_DEVICE_ATTR(in4_beep, S_IRUGO, show_beep, NULL, 1);
1224static SENSOR_DEVICE_ATTR(in5_beep, S_IRUGO, show_beep, NULL, 1);
1225static SENSOR_DEVICE_ATTR(in6_beep, S_IRUGO, show_beep, NULL, 1);
1226static SENSOR_DEVICE_ATTR(in7_beep, S_IRUGO, show_beep, NULL, 1);
1227/* fanX_beep writability is set later */
1228static SENSOR_DEVICE_ATTR(fan1_beep, S_IRUGO, show_beep, set_beep, 0);
1229static SENSOR_DEVICE_ATTR(fan2_beep, S_IRUGO, show_beep, set_beep, 0);
1230static SENSOR_DEVICE_ATTR(fan3_beep, S_IRUGO, show_beep, set_beep, 0);
1231static SENSOR_DEVICE_ATTR(fan4_beep, S_IRUGO, show_beep, set_beep, 0);
1232static SENSOR_DEVICE_ATTR(fan5_beep, S_IRUGO, show_beep, set_beep, 0);
1233static SENSOR_DEVICE_ATTR(temp1_beep, S_IRUGO | S_IWUSR,
1234 show_beep, set_beep, 2);
1235static SENSOR_DEVICE_ATTR(temp2_beep, S_IRUGO, show_beep, NULL, 2);
1236static SENSOR_DEVICE_ATTR(temp3_beep, S_IRUGO, show_beep, NULL, 2);
1237
Jean Delvare5f2dc792010-03-05 22:17:18 +01001238static ssize_t show_vrm_reg(struct device *dev, struct device_attribute *attr,
1239 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240{
Jean Delvare90d66192007-10-08 18:24:35 +02001241 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvarea7be58a2005-12-18 16:40:14 +01001242 return sprintf(buf, "%u\n", data->vrm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243}
Jean Delvare5f2dc792010-03-05 22:17:18 +01001244static ssize_t store_vrm_reg(struct device *dev, struct device_attribute *attr,
1245 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001247 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvaref5f64502010-03-05 22:17:19 +01001248 unsigned long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Jean Delvaref5f64502010-03-05 22:17:19 +01001250 if (strict_strtoul(buf, 10, &val) < 0)
1251 return -EINVAL;
1252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 data->vrm = val;
1254
1255 return count;
1256}
1257static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm_reg, store_vrm_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Jean Delvare5f2dc792010-03-05 22:17:18 +01001259static ssize_t show_vid_reg(struct device *dev, struct device_attribute *attr,
1260 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261{
1262 struct it87_data *data = it87_update_device(dev);
1263 return sprintf(buf, "%ld\n", (long) vid_from_reg(data->vid, data->vrm));
1264}
1265static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL);
Jean Delvare87808be2006-09-24 21:17:13 +02001266
Jean Delvare738e5e02010-08-14 21:08:50 +02001267static ssize_t show_label(struct device *dev, struct device_attribute *attr,
1268 char *buf)
1269{
1270 static const char *labels[] = {
1271 "+5V",
1272 "5VSB",
1273 "Vbat",
1274 };
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001275 static const char *labels_it8721[] = {
1276 "+3.3V",
1277 "3VSB",
1278 "Vbat",
1279 };
1280 struct it87_data *data = dev_get_drvdata(dev);
Jean Delvare738e5e02010-08-14 21:08:50 +02001281 int nr = to_sensor_dev_attr(attr)->index;
1282
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001283 return sprintf(buf, "%s\n", data->type == it8721 ? labels_it8721[nr]
1284 : labels[nr]);
Jean Delvare738e5e02010-08-14 21:08:50 +02001285}
1286static SENSOR_DEVICE_ATTR(in3_label, S_IRUGO, show_label, NULL, 0);
1287static SENSOR_DEVICE_ATTR(in7_label, S_IRUGO, show_label, NULL, 1);
1288static SENSOR_DEVICE_ATTR(in8_label, S_IRUGO, show_label, NULL, 2);
1289
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001290static ssize_t show_name(struct device *dev, struct device_attribute
1291 *devattr, char *buf)
1292{
1293 struct it87_data *data = dev_get_drvdata(dev);
1294 return sprintf(buf, "%s\n", data->name);
1295}
1296static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
1297
Jean Delvare87808be2006-09-24 21:17:13 +02001298static struct attribute *it87_attributes[] = {
1299 &sensor_dev_attr_in0_input.dev_attr.attr,
1300 &sensor_dev_attr_in1_input.dev_attr.attr,
1301 &sensor_dev_attr_in2_input.dev_attr.attr,
1302 &sensor_dev_attr_in3_input.dev_attr.attr,
1303 &sensor_dev_attr_in4_input.dev_attr.attr,
1304 &sensor_dev_attr_in5_input.dev_attr.attr,
1305 &sensor_dev_attr_in6_input.dev_attr.attr,
1306 &sensor_dev_attr_in7_input.dev_attr.attr,
1307 &sensor_dev_attr_in8_input.dev_attr.attr,
1308 &sensor_dev_attr_in0_min.dev_attr.attr,
1309 &sensor_dev_attr_in1_min.dev_attr.attr,
1310 &sensor_dev_attr_in2_min.dev_attr.attr,
1311 &sensor_dev_attr_in3_min.dev_attr.attr,
1312 &sensor_dev_attr_in4_min.dev_attr.attr,
1313 &sensor_dev_attr_in5_min.dev_attr.attr,
1314 &sensor_dev_attr_in6_min.dev_attr.attr,
1315 &sensor_dev_attr_in7_min.dev_attr.attr,
1316 &sensor_dev_attr_in0_max.dev_attr.attr,
1317 &sensor_dev_attr_in1_max.dev_attr.attr,
1318 &sensor_dev_attr_in2_max.dev_attr.attr,
1319 &sensor_dev_attr_in3_max.dev_attr.attr,
1320 &sensor_dev_attr_in4_max.dev_attr.attr,
1321 &sensor_dev_attr_in5_max.dev_attr.attr,
1322 &sensor_dev_attr_in6_max.dev_attr.attr,
1323 &sensor_dev_attr_in7_max.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001324 &sensor_dev_attr_in0_alarm.dev_attr.attr,
1325 &sensor_dev_attr_in1_alarm.dev_attr.attr,
1326 &sensor_dev_attr_in2_alarm.dev_attr.attr,
1327 &sensor_dev_attr_in3_alarm.dev_attr.attr,
1328 &sensor_dev_attr_in4_alarm.dev_attr.attr,
1329 &sensor_dev_attr_in5_alarm.dev_attr.attr,
1330 &sensor_dev_attr_in6_alarm.dev_attr.attr,
1331 &sensor_dev_attr_in7_alarm.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001332
1333 &sensor_dev_attr_temp1_input.dev_attr.attr,
1334 &sensor_dev_attr_temp2_input.dev_attr.attr,
1335 &sensor_dev_attr_temp3_input.dev_attr.attr,
1336 &sensor_dev_attr_temp1_max.dev_attr.attr,
1337 &sensor_dev_attr_temp2_max.dev_attr.attr,
1338 &sensor_dev_attr_temp3_max.dev_attr.attr,
1339 &sensor_dev_attr_temp1_min.dev_attr.attr,
1340 &sensor_dev_attr_temp2_min.dev_attr.attr,
1341 &sensor_dev_attr_temp3_min.dev_attr.attr,
1342 &sensor_dev_attr_temp1_type.dev_attr.attr,
1343 &sensor_dev_attr_temp2_type.dev_attr.attr,
1344 &sensor_dev_attr_temp3_type.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001345 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
1346 &sensor_dev_attr_temp2_alarm.dev_attr.attr,
1347 &sensor_dev_attr_temp3_alarm.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001348
1349 &dev_attr_alarms.attr,
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001350 &dev_attr_name.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001351 NULL
1352};
1353
1354static const struct attribute_group it87_group = {
1355 .attrs = it87_attributes,
1356};
1357
Jean Delvared9b327c2010-03-05 22:17:17 +01001358static struct attribute *it87_attributes_beep[] = {
1359 &sensor_dev_attr_in0_beep.dev_attr.attr,
1360 &sensor_dev_attr_in1_beep.dev_attr.attr,
1361 &sensor_dev_attr_in2_beep.dev_attr.attr,
1362 &sensor_dev_attr_in3_beep.dev_attr.attr,
1363 &sensor_dev_attr_in4_beep.dev_attr.attr,
1364 &sensor_dev_attr_in5_beep.dev_attr.attr,
1365 &sensor_dev_attr_in6_beep.dev_attr.attr,
1366 &sensor_dev_attr_in7_beep.dev_attr.attr,
1367
1368 &sensor_dev_attr_temp1_beep.dev_attr.attr,
1369 &sensor_dev_attr_temp2_beep.dev_attr.attr,
1370 &sensor_dev_attr_temp3_beep.dev_attr.attr,
1371 NULL
1372};
1373
1374static const struct attribute_group it87_group_beep = {
1375 .attrs = it87_attributes_beep,
1376};
1377
Jean Delvare723a0aa2010-03-05 22:17:16 +01001378static struct attribute *it87_attributes_fan16[5][3+1] = { {
Jean Delvare87808be2006-09-24 21:17:13 +02001379 &sensor_dev_attr_fan1_input16.dev_attr.attr,
1380 &sensor_dev_attr_fan1_min16.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001381 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
1382 NULL
1383}, {
Jean Delvare87808be2006-09-24 21:17:13 +02001384 &sensor_dev_attr_fan2_input16.dev_attr.attr,
1385 &sensor_dev_attr_fan2_min16.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001386 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
1387 NULL
1388}, {
Jean Delvare87808be2006-09-24 21:17:13 +02001389 &sensor_dev_attr_fan3_input16.dev_attr.attr,
1390 &sensor_dev_attr_fan3_min16.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001391 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
1392 NULL
1393}, {
Jean Delvarec7f1f712007-09-03 17:11:46 +02001394 &sensor_dev_attr_fan4_input16.dev_attr.attr,
1395 &sensor_dev_attr_fan4_min16.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001396 &sensor_dev_attr_fan4_alarm.dev_attr.attr,
1397 NULL
1398}, {
Jean Delvarec7f1f712007-09-03 17:11:46 +02001399 &sensor_dev_attr_fan5_input16.dev_attr.attr,
1400 &sensor_dev_attr_fan5_min16.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001401 &sensor_dev_attr_fan5_alarm.dev_attr.attr,
1402 NULL
1403} };
Jean Delvare87808be2006-09-24 21:17:13 +02001404
Jean Delvare723a0aa2010-03-05 22:17:16 +01001405static const struct attribute_group it87_group_fan16[5] = {
1406 { .attrs = it87_attributes_fan16[0] },
1407 { .attrs = it87_attributes_fan16[1] },
1408 { .attrs = it87_attributes_fan16[2] },
1409 { .attrs = it87_attributes_fan16[3] },
1410 { .attrs = it87_attributes_fan16[4] },
1411};
1412
1413static struct attribute *it87_attributes_fan[3][4+1] = { {
Jean Delvare87808be2006-09-24 21:17:13 +02001414 &sensor_dev_attr_fan1_input.dev_attr.attr,
1415 &sensor_dev_attr_fan1_min.dev_attr.attr,
1416 &sensor_dev_attr_fan1_div.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001417 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
1418 NULL
1419}, {
Jean Delvare87808be2006-09-24 21:17:13 +02001420 &sensor_dev_attr_fan2_input.dev_attr.attr,
1421 &sensor_dev_attr_fan2_min.dev_attr.attr,
1422 &sensor_dev_attr_fan2_div.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001423 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
1424 NULL
1425}, {
Jean Delvare87808be2006-09-24 21:17:13 +02001426 &sensor_dev_attr_fan3_input.dev_attr.attr,
1427 &sensor_dev_attr_fan3_min.dev_attr.attr,
1428 &sensor_dev_attr_fan3_div.dev_attr.attr,
Jean Delvare0124dd72007-11-25 16:16:41 +01001429 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001430 NULL
1431} };
Jean Delvare0124dd72007-11-25 16:16:41 +01001432
Jean Delvare723a0aa2010-03-05 22:17:16 +01001433static const struct attribute_group it87_group_fan[3] = {
1434 { .attrs = it87_attributes_fan[0] },
1435 { .attrs = it87_attributes_fan[1] },
1436 { .attrs = it87_attributes_fan[2] },
1437};
1438
1439static const struct attribute_group *
1440it87_get_fan_group(const struct it87_data *data)
1441{
1442 return has_16bit_fans(data) ? it87_group_fan16 : it87_group_fan;
1443}
1444
1445static struct attribute *it87_attributes_pwm[3][4+1] = { {
Jean Delvare87808be2006-09-24 21:17:13 +02001446 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +02001447 &sensor_dev_attr_pwm1.dev_attr.attr,
Jean Delvared5b0b5d2007-12-14 14:41:53 +01001448 &dev_attr_pwm1_freq.attr,
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001449 &sensor_dev_attr_pwm1_auto_channels_temp.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001450 NULL
1451}, {
1452 &sensor_dev_attr_pwm2_enable.dev_attr.attr,
1453 &sensor_dev_attr_pwm2.dev_attr.attr,
1454 &dev_attr_pwm2_freq.attr,
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001455 &sensor_dev_attr_pwm2_auto_channels_temp.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001456 NULL
1457}, {
1458 &sensor_dev_attr_pwm3_enable.dev_attr.attr,
1459 &sensor_dev_attr_pwm3.dev_attr.attr,
1460 &dev_attr_pwm3_freq.attr,
Jean Delvare94ac7ee2010-03-05 22:17:16 +01001461 &sensor_dev_attr_pwm3_auto_channels_temp.dev_attr.attr,
Jean Delvare723a0aa2010-03-05 22:17:16 +01001462 NULL
1463} };
Jean Delvare87808be2006-09-24 21:17:13 +02001464
Jean Delvare723a0aa2010-03-05 22:17:16 +01001465static const struct attribute_group it87_group_pwm[3] = {
1466 { .attrs = it87_attributes_pwm[0] },
1467 { .attrs = it87_attributes_pwm[1] },
1468 { .attrs = it87_attributes_pwm[2] },
1469};
1470
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001471static struct attribute *it87_attributes_autopwm[3][9+1] = { {
1472 &sensor_dev_attr_pwm1_auto_point1_pwm.dev_attr.attr,
1473 &sensor_dev_attr_pwm1_auto_point2_pwm.dev_attr.attr,
1474 &sensor_dev_attr_pwm1_auto_point3_pwm.dev_attr.attr,
1475 &sensor_dev_attr_pwm1_auto_point4_pwm.dev_attr.attr,
1476 &sensor_dev_attr_pwm1_auto_point1_temp.dev_attr.attr,
1477 &sensor_dev_attr_pwm1_auto_point1_temp_hyst.dev_attr.attr,
1478 &sensor_dev_attr_pwm1_auto_point2_temp.dev_attr.attr,
1479 &sensor_dev_attr_pwm1_auto_point3_temp.dev_attr.attr,
1480 &sensor_dev_attr_pwm1_auto_point4_temp.dev_attr.attr,
1481 NULL
1482}, {
1483 &sensor_dev_attr_pwm2_auto_point1_pwm.dev_attr.attr,
1484 &sensor_dev_attr_pwm2_auto_point2_pwm.dev_attr.attr,
1485 &sensor_dev_attr_pwm2_auto_point3_pwm.dev_attr.attr,
1486 &sensor_dev_attr_pwm2_auto_point4_pwm.dev_attr.attr,
1487 &sensor_dev_attr_pwm2_auto_point1_temp.dev_attr.attr,
1488 &sensor_dev_attr_pwm2_auto_point1_temp_hyst.dev_attr.attr,
1489 &sensor_dev_attr_pwm2_auto_point2_temp.dev_attr.attr,
1490 &sensor_dev_attr_pwm2_auto_point3_temp.dev_attr.attr,
1491 &sensor_dev_attr_pwm2_auto_point4_temp.dev_attr.attr,
1492 NULL
1493}, {
1494 &sensor_dev_attr_pwm3_auto_point1_pwm.dev_attr.attr,
1495 &sensor_dev_attr_pwm3_auto_point2_pwm.dev_attr.attr,
1496 &sensor_dev_attr_pwm3_auto_point3_pwm.dev_attr.attr,
1497 &sensor_dev_attr_pwm3_auto_point4_pwm.dev_attr.attr,
1498 &sensor_dev_attr_pwm3_auto_point1_temp.dev_attr.attr,
1499 &sensor_dev_attr_pwm3_auto_point1_temp_hyst.dev_attr.attr,
1500 &sensor_dev_attr_pwm3_auto_point2_temp.dev_attr.attr,
1501 &sensor_dev_attr_pwm3_auto_point3_temp.dev_attr.attr,
1502 &sensor_dev_attr_pwm3_auto_point4_temp.dev_attr.attr,
1503 NULL
1504} };
1505
1506static const struct attribute_group it87_group_autopwm[3] = {
1507 { .attrs = it87_attributes_autopwm[0] },
1508 { .attrs = it87_attributes_autopwm[1] },
1509 { .attrs = it87_attributes_autopwm[2] },
1510};
1511
Jean Delvared9b327c2010-03-05 22:17:17 +01001512static struct attribute *it87_attributes_fan_beep[] = {
1513 &sensor_dev_attr_fan1_beep.dev_attr.attr,
1514 &sensor_dev_attr_fan2_beep.dev_attr.attr,
1515 &sensor_dev_attr_fan3_beep.dev_attr.attr,
1516 &sensor_dev_attr_fan4_beep.dev_attr.attr,
1517 &sensor_dev_attr_fan5_beep.dev_attr.attr,
1518};
1519
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01001520static struct attribute *it87_attributes_vid[] = {
Jean Delvare87808be2006-09-24 21:17:13 +02001521 &dev_attr_vrm.attr,
1522 &dev_attr_cpu0_vid.attr,
1523 NULL
1524};
1525
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01001526static const struct attribute_group it87_group_vid = {
1527 .attrs = it87_attributes_vid,
Jean Delvare87808be2006-09-24 21:17:13 +02001528};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Jean Delvare738e5e02010-08-14 21:08:50 +02001530static struct attribute *it87_attributes_label[] = {
1531 &sensor_dev_attr_in3_label.dev_attr.attr,
1532 &sensor_dev_attr_in7_label.dev_attr.attr,
1533 &sensor_dev_attr_in8_label.dev_attr.attr,
1534 NULL
1535};
1536
1537static const struct attribute_group it87_group_label = {
1538 .attrs = it87_attributes_vid,
1539};
1540
Jean Delvare2d8672c2005-07-19 23:56:35 +02001541/* SuperIO detection - will change isa_address if a chip is found */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001542static int __init it87_find(unsigned short *address,
1543 struct it87_sio_data *sio_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544{
1545 int err = -ENODEV;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001546 u16 chip_type;
Jean Delvare98dd22c2008-10-09 15:33:58 +02001547 const char *board_vendor, *board_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
1549 superio_enter();
Jean Delvare67b671b2007-12-06 23:13:42 +01001550 chip_type = force_id ? force_id : superio_inw(DEVID);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001551
1552 switch (chip_type) {
1553 case IT8705F_DEVID:
1554 sio_data->type = it87;
1555 break;
1556 case IT8712F_DEVID:
1557 sio_data->type = it8712;
1558 break;
1559 case IT8716F_DEVID:
1560 case IT8726F_DEVID:
1561 sio_data->type = it8716;
1562 break;
1563 case IT8718F_DEVID:
1564 sio_data->type = it8718;
1565 break;
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +01001566 case IT8720F_DEVID:
1567 sio_data->type = it8720;
1568 break;
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001569 case IT8721F_DEVID:
1570 sio_data->type = it8721;
1571 break;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001572 case 0xffff: /* No device at all */
1573 goto exit;
1574 default:
Joe Perchesa8ca1032011-01-12 21:55:10 +01001575 pr_debug("Unsupported chip (DEVID=0x%x)\n", chip_type);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001576 goto exit;
1577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
Jean Delvare87673dd2006-08-28 14:37:19 +02001579 superio_select(PME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 if (!(superio_inb(IT87_ACT_REG) & 0x01)) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01001581 pr_info("Device not activated, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 goto exit;
1583 }
1584
1585 *address = superio_inw(IT87_BASE_REG) & ~(IT87_EXTENT - 1);
1586 if (*address == 0) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01001587 pr_info("Base address not set, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 goto exit;
1589 }
1590
1591 err = 0;
Andrew Paprocki04751692008-08-06 22:41:06 +02001592 sio_data->revision = superio_inb(DEVREV) & 0x0f;
Joe Perchesa8ca1032011-01-12 21:55:10 +01001593 pr_info("Found IT%04xF chip at 0x%x, revision %d\n",
Andrew Paprocki04751692008-08-06 22:41:06 +02001594 chip_type, *address, sio_data->revision);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
Jean Delvare738e5e02010-08-14 21:08:50 +02001596 /* in8 (Vbat) is always internal */
1597 sio_data->internal = (1 << 2);
1598
Jean Delvare87673dd2006-08-28 14:37:19 +02001599 /* Read GPIO config and VID value from LDN 7 (GPIO) */
Jean Delvare895ff262009-12-09 20:35:47 +01001600 if (sio_data->type == it87) {
1601 /* The IT8705F doesn't have VID pins at all */
1602 sio_data->skip_vid = 1;
Jean Delvared9b327c2010-03-05 22:17:17 +01001603
1604 /* The IT8705F has a different LD number for GPIO */
1605 superio_select(5);
1606 sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f;
Jean Delvare895ff262009-12-09 20:35:47 +01001607 } else {
Jean Delvare87673dd2006-08-28 14:37:19 +02001608 int reg;
1609
1610 superio_select(GPIO);
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001611
Jean Delvare895ff262009-12-09 20:35:47 +01001612 reg = superio_inb(IT87_SIO_GPIO3_REG);
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001613 if (sio_data->type == it8721) {
1614 /* The IT8721F/IT8758E doesn't have VID pins at all */
Jean Delvare895ff262009-12-09 20:35:47 +01001615 sio_data->skip_vid = 1;
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001616 } else {
1617 /* We need at least 4 VID pins */
1618 if (reg & 0x0f) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01001619 pr_info("VID is disabled (pins used for GPIO)\n");
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001620 sio_data->skip_vid = 1;
1621 }
Jean Delvare895ff262009-12-09 20:35:47 +01001622 }
1623
Jean Delvare591ec652009-12-09 20:35:48 +01001624 /* Check if fan3 is there or not */
1625 if (reg & (1 << 6))
1626 sio_data->skip_pwm |= (1 << 2);
1627 if (reg & (1 << 7))
1628 sio_data->skip_fan |= (1 << 2);
1629
1630 /* Check if fan2 is there or not */
1631 reg = superio_inb(IT87_SIO_GPIO5_REG);
1632 if (reg & (1 << 1))
1633 sio_data->skip_pwm |= (1 << 1);
1634 if (reg & (1 << 2))
1635 sio_data->skip_fan |= (1 << 1);
1636
Jean Delvare895ff262009-12-09 20:35:47 +01001637 if ((sio_data->type == it8718 || sio_data->type == it8720)
1638 && !(sio_data->skip_vid))
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001639 sio_data->vid_value = superio_inb(IT87_SIO_VID_REG);
Jean Delvare87673dd2006-08-28 14:37:19 +02001640
1641 reg = superio_inb(IT87_SIO_PINX2_REG);
Jean Delvare436cad22010-07-09 16:22:48 +02001642 /*
1643 * The IT8720F has no VIN7 pin, so VCCH should always be
1644 * routed internally to VIN7 with an internal divider.
1645 * Curiously, there still is a configuration bit to control
1646 * this, which means it can be set incorrectly. And even
1647 * more curiously, many boards out there are improperly
1648 * configured, even though the IT8720F datasheet claims
1649 * that the internal routing of VCCH to VIN7 is the default
1650 * setting. So we force the internal routing in this case.
1651 */
1652 if (sio_data->type == it8720 && !(reg & (1 << 1))) {
1653 reg |= (1 << 1);
1654 superio_outb(IT87_SIO_PINX2_REG, reg);
Joe Perchesa8ca1032011-01-12 21:55:10 +01001655 pr_notice("Routing internal VCCH to in7\n");
Jean Delvare436cad22010-07-09 16:22:48 +02001656 }
Jean Delvare87673dd2006-08-28 14:37:19 +02001657 if (reg & (1 << 0))
Jean Delvare738e5e02010-08-14 21:08:50 +02001658 sio_data->internal |= (1 << 0);
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001659 if ((reg & (1 << 1)) || sio_data->type == it8721)
Jean Delvare738e5e02010-08-14 21:08:50 +02001660 sio_data->internal |= (1 << 1);
Jean Delvared9b327c2010-03-05 22:17:17 +01001661
1662 sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f;
Jean Delvare87673dd2006-08-28 14:37:19 +02001663 }
Jean Delvared9b327c2010-03-05 22:17:17 +01001664 if (sio_data->beep_pin)
Joe Perchesa8ca1032011-01-12 21:55:10 +01001665 pr_info("Beeping is supported\n");
Jean Delvare87673dd2006-08-28 14:37:19 +02001666
Jean Delvare98dd22c2008-10-09 15:33:58 +02001667 /* Disable specific features based on DMI strings */
1668 board_vendor = dmi_get_system_info(DMI_BOARD_VENDOR);
1669 board_name = dmi_get_system_info(DMI_BOARD_NAME);
1670 if (board_vendor && board_name) {
1671 if (strcmp(board_vendor, "nVIDIA") == 0
1672 && strcmp(board_name, "FN68PT") == 0) {
1673 /* On the Shuttle SN68PT, FAN_CTL2 is apparently not
1674 connected to a fan, but to something else. One user
1675 has reported instant system power-off when changing
1676 the PWM2 duty cycle, so we disable it.
1677 I use the board name string as the trigger in case
1678 the same board is ever used in other systems. */
Joe Perchesa8ca1032011-01-12 21:55:10 +01001679 pr_info("Disabling pwm2 due to hardware constraints\n");
Jean Delvare98dd22c2008-10-09 15:33:58 +02001680 sio_data->skip_pwm = (1 << 1);
1681 }
1682 }
1683
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684exit:
1685 superio_exit();
1686 return err;
1687}
1688
Jean Delvare723a0aa2010-03-05 22:17:16 +01001689static void it87_remove_files(struct device *dev)
1690{
1691 struct it87_data *data = platform_get_drvdata(pdev);
1692 struct it87_sio_data *sio_data = dev->platform_data;
1693 const struct attribute_group *fan_group = it87_get_fan_group(data);
1694 int i;
1695
1696 sysfs_remove_group(&dev->kobj, &it87_group);
Jean Delvared9b327c2010-03-05 22:17:17 +01001697 if (sio_data->beep_pin)
1698 sysfs_remove_group(&dev->kobj, &it87_group_beep);
Jean Delvare723a0aa2010-03-05 22:17:16 +01001699 for (i = 0; i < 5; i++) {
1700 if (!(data->has_fan & (1 << i)))
1701 continue;
1702 sysfs_remove_group(&dev->kobj, &fan_group[i]);
Jean Delvared9b327c2010-03-05 22:17:17 +01001703 if (sio_data->beep_pin)
1704 sysfs_remove_file(&dev->kobj,
1705 it87_attributes_fan_beep[i]);
Jean Delvare723a0aa2010-03-05 22:17:16 +01001706 }
1707 for (i = 0; i < 3; i++) {
1708 if (sio_data->skip_pwm & (1 << 0))
1709 continue;
1710 sysfs_remove_group(&dev->kobj, &it87_group_pwm[i]);
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001711 if (has_old_autopwm(data))
1712 sysfs_remove_group(&dev->kobj,
1713 &it87_group_autopwm[i]);
Jean Delvare723a0aa2010-03-05 22:17:16 +01001714 }
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01001715 if (!sio_data->skip_vid)
1716 sysfs_remove_group(&dev->kobj, &it87_group_vid);
Jean Delvare738e5e02010-08-14 21:08:50 +02001717 sysfs_remove_group(&dev->kobj, &it87_group_label);
Jean Delvare723a0aa2010-03-05 22:17:16 +01001718}
1719
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001720static int __devinit it87_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 struct it87_data *data;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001723 struct resource *res;
1724 struct device *dev = &pdev->dev;
1725 struct it87_sio_data *sio_data = dev->platform_data;
Jean Delvare723a0aa2010-03-05 22:17:16 +01001726 const struct attribute_group *fan_group;
1727 int err = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 int enable_pwm_interface;
Jean Delvared9b327c2010-03-05 22:17:17 +01001729 int fan_beep_need_rw;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001730 static const char *names[] = {
1731 "it87",
1732 "it8712",
1733 "it8716",
1734 "it8718",
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +01001735 "it8720",
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001736 "it8721",
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001737 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001739 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05001740 if (!request_region(res->start, IT87_EC_EXTENT, DRVNAME)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001741 dev_err(dev, "Failed to request region 0x%lx-0x%lx\n",
1742 (unsigned long)res->start,
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05001743 (unsigned long)(res->start + IT87_EC_EXTENT - 1));
Jean Delvare8e9afcb2006-12-12 18:18:28 +01001744 err = -EBUSY;
1745 goto ERROR0;
1746 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
Jean Delvare5f2dc792010-03-05 22:17:18 +01001748 data = kzalloc(sizeof(struct it87_data), GFP_KERNEL);
1749 if (!data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 err = -ENOMEM;
1751 goto ERROR1;
1752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001754 data->addr = res->start;
1755 data->type = sio_data->type;
Andrew Paprocki04751692008-08-06 22:41:06 +02001756 data->revision = sio_data->revision;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001757 data->name = names[sio_data->type];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
1759 /* Now, we do the remaining detection. */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001760 if ((it87_read_value(data, IT87_REG_CONFIG) & 0x80)
1761 || it87_read_value(data, IT87_REG_CHIPID) != 0x90) {
Jean Delvare8e9afcb2006-12-12 18:18:28 +01001762 err = -ENODEV;
1763 goto ERROR2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 }
1765
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001766 platform_set_drvdata(pdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001768 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 /* Check PWM configuration */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001771 enable_pwm_interface = it87_check_pwm(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
Jean Delvare44c1bcd2010-10-28 20:31:51 +02001773 /* Starting with IT8721F, we handle scaling of internal voltages */
1774 if (data->type == it8721) {
1775 if (sio_data->internal & (1 << 0))
1776 data->in_scaled |= (1 << 3); /* in3 is AVCC */
1777 if (sio_data->internal & (1 << 1))
1778 data->in_scaled |= (1 << 7); /* in7 is VSB */
1779 if (sio_data->internal & (1 << 2))
1780 data->in_scaled |= (1 << 8); /* in8 is Vbat */
1781 }
1782
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 /* Initialize the IT87 chip */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001784 it87_init_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
1786 /* Register sysfs hooks */
Jean Delvare5f2dc792010-03-05 22:17:18 +01001787 err = sysfs_create_group(&dev->kobj, &it87_group);
1788 if (err)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001789 goto ERROR2;
Jean Delvare17d648b2006-08-28 14:23:46 +02001790
Jean Delvared9b327c2010-03-05 22:17:17 +01001791 if (sio_data->beep_pin) {
1792 err = sysfs_create_group(&dev->kobj, &it87_group_beep);
1793 if (err)
1794 goto ERROR4;
1795 }
1796
Jean Delvare9060f8b2006-08-28 14:24:17 +02001797 /* Do not create fan files for disabled fans */
Jean Delvare723a0aa2010-03-05 22:17:16 +01001798 fan_group = it87_get_fan_group(data);
Jean Delvared9b327c2010-03-05 22:17:17 +01001799 fan_beep_need_rw = 1;
Jean Delvare723a0aa2010-03-05 22:17:16 +01001800 for (i = 0; i < 5; i++) {
1801 if (!(data->has_fan & (1 << i)))
1802 continue;
1803 err = sysfs_create_group(&dev->kobj, &fan_group[i]);
1804 if (err)
1805 goto ERROR4;
Jean Delvared9b327c2010-03-05 22:17:17 +01001806
1807 if (sio_data->beep_pin) {
1808 err = sysfs_create_file(&dev->kobj,
1809 it87_attributes_fan_beep[i]);
1810 if (err)
1811 goto ERROR4;
1812 if (!fan_beep_need_rw)
1813 continue;
1814
1815 /* As we have a single beep enable bit for all fans,
1816 * only the first enabled fan has a writable attribute
1817 * for it. */
1818 if (sysfs_chmod_file(&dev->kobj,
1819 it87_attributes_fan_beep[i],
1820 S_IRUGO | S_IWUSR))
1821 dev_dbg(dev, "chmod +w fan%d_beep failed\n",
1822 i + 1);
1823 fan_beep_need_rw = 0;
1824 }
Jean Delvare17d648b2006-08-28 14:23:46 +02001825 }
1826
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 if (enable_pwm_interface) {
Jean Delvare723a0aa2010-03-05 22:17:16 +01001828 for (i = 0; i < 3; i++) {
1829 if (sio_data->skip_pwm & (1 << i))
1830 continue;
1831 err = sysfs_create_group(&dev->kobj,
1832 &it87_group_pwm[i]);
1833 if (err)
Jean Delvare98dd22c2008-10-09 15:33:58 +02001834 goto ERROR4;
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001835
1836 if (!has_old_autopwm(data))
1837 continue;
1838 err = sysfs_create_group(&dev->kobj,
1839 &it87_group_autopwm[i]);
1840 if (err)
1841 goto ERROR4;
Jean Delvare98dd22c2008-10-09 15:33:58 +02001842 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 }
1844
Jean Delvare895ff262009-12-09 20:35:47 +01001845 if (!sio_data->skip_vid) {
Jean Delvare303760b2005-07-31 21:52:01 +02001846 data->vrm = vid_which_vrm();
Jean Delvare87673dd2006-08-28 14:37:19 +02001847 /* VID reading from Super-I/O config space if available */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001848 data->vid = sio_data->vid_value;
Jean Delvare6a8d7ac2010-03-05 22:17:16 +01001849 err = sysfs_create_group(&dev->kobj, &it87_group_vid);
1850 if (err)
Jean Delvare87808be2006-09-24 21:17:13 +02001851 goto ERROR4;
1852 }
1853
Jean Delvare738e5e02010-08-14 21:08:50 +02001854 /* Export labels for internal sensors */
1855 for (i = 0; i < 3; i++) {
1856 if (!(sio_data->internal & (1 << i)))
1857 continue;
1858 err = sysfs_create_file(&dev->kobj,
1859 it87_attributes_label[i]);
1860 if (err)
1861 goto ERROR4;
1862 }
1863
Tony Jones1beeffe2007-08-20 13:46:20 -07001864 data->hwmon_dev = hwmon_device_register(dev);
1865 if (IS_ERR(data->hwmon_dev)) {
1866 err = PTR_ERR(data->hwmon_dev);
Jean Delvare87808be2006-09-24 21:17:13 +02001867 goto ERROR4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 }
1869
1870 return 0;
1871
Jean Delvare87808be2006-09-24 21:17:13 +02001872ERROR4:
Jean Delvare723a0aa2010-03-05 22:17:16 +01001873 it87_remove_files(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874ERROR2:
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001875 platform_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 kfree(data);
1877ERROR1:
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05001878 release_region(res->start, IT87_EC_EXTENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879ERROR0:
1880 return err;
1881}
1882
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001883static int __devexit it87_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001885 struct it87_data *data = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
Tony Jones1beeffe2007-08-20 13:46:20 -07001887 hwmon_device_unregister(data->hwmon_dev);
Jean Delvare723a0aa2010-03-05 22:17:16 +01001888 it87_remove_files(&pdev->dev);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001889
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05001890 release_region(data->addr, IT87_EC_EXTENT);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001891 platform_set_drvdata(pdev, NULL);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001892 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
1894 return 0;
1895}
1896
Jean Delvare7f999aa2007-02-14 21:15:03 +01001897/* Must be called with data->update_lock held, except during initialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
1899 would slow down the IT87 access and should not be necessary. */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001900static int it87_read_value(struct it87_data *data, u8 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001902 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
1903 return inb_p(data->addr + IT87_DATA_REG_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904}
1905
Jean Delvare7f999aa2007-02-14 21:15:03 +01001906/* Must be called with data->update_lock held, except during initialization.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks,
1908 would slow down the IT87 access and should not be necessary. */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001909static void it87_write_value(struct it87_data *data, u8 reg, u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001911 outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET);
1912 outb_p(value, data->addr + IT87_DATA_REG_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913}
1914
1915/* Return 1 if and only if the PWM interface is safe to use */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001916static int __devinit it87_check_pwm(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001918 struct it87_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 /* Some BIOSes fail to correctly configure the IT87 fans. All fans off
1920 * and polarity set to active low is sign that this is the case so we
1921 * disable pwm control to protect the user. */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001922 int tmp = it87_read_value(data, IT87_REG_FAN_CTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 if ((tmp & 0x87) == 0) {
1924 if (fix_pwm_polarity) {
1925 /* The user asks us to attempt a chip reconfiguration.
1926 * This means switching to active high polarity and
1927 * inverting all fan speed values. */
1928 int i;
1929 u8 pwm[3];
1930
1931 for (i = 0; i < 3; i++)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001932 pwm[i] = it87_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 IT87_REG_PWM(i));
1934
1935 /* If any fan is in automatic pwm mode, the polarity
1936 * might be correct, as suspicious as it seems, so we
1937 * better don't change anything (but still disable the
1938 * PWM interface). */
1939 if (!((pwm[0] | pwm[1] | pwm[2]) & 0x80)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001940 dev_info(dev, "Reconfiguring PWM to "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 "active high polarity\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001942 it87_write_value(data, IT87_REG_FAN_CTL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 tmp | 0x87);
1944 for (i = 0; i < 3; i++)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001945 it87_write_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 IT87_REG_PWM(i),
1947 0x7f & ~pwm[i]);
1948 return 1;
1949 }
1950
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001951 dev_info(dev, "PWM configuration is "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 "too broken to be fixed\n");
1953 }
1954
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001955 dev_info(dev, "Detected broken BIOS "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 "defaults, disabling PWM interface\n");
1957 return 0;
1958 } else if (fix_pwm_polarity) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001959 dev_info(dev, "PWM configuration looks "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 "sane, won't touch\n");
1961 }
1962
1963 return 1;
1964}
1965
1966/* Called when we have found a new IT87. */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001967static void __devinit it87_init_device(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968{
Jean Delvare591ec652009-12-09 20:35:48 +01001969 struct it87_sio_data *sio_data = pdev->dev.platform_data;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001970 struct it87_data *data = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 int tmp, i;
Jean Delvare591ec652009-12-09 20:35:48 +01001972 u8 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
Jean Delvareb99883d2010-03-05 22:17:15 +01001974 /* For each PWM channel:
1975 * - If it is in automatic mode, setting to manual mode should set
1976 * the fan to full speed by default.
1977 * - If it is in manual mode, we need a mapping to temperature
1978 * channels to use when later setting to automatic mode later.
1979 * Use a 1:1 mapping by default (we are clueless.)
1980 * In both cases, the value can (and should) be changed by the user
Jean Delvare6229cdb2010-12-08 16:27:22 +01001981 * prior to switching to a different mode.
1982 * Note that this is no longer needed for the IT8721F and later, as
1983 * these have separate registers for the temperature mapping and the
1984 * manual duty cycle. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 for (i = 0; i < 3; i++) {
Jean Delvareb99883d2010-03-05 22:17:15 +01001986 data->pwm_temp_map[i] = i;
1987 data->pwm_duty[i] = 0x7f; /* Full speed */
Jean Delvare4f3f51b2010-03-05 22:17:21 +01001988 data->auto_pwm[i][3] = 0x7f; /* Full speed, hard-coded */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 }
1990
Jean Delvarec5df9b72006-08-28 14:37:54 +02001991 /* Some chips seem to have default value 0xff for all limit
1992 * registers. For low voltage limits it makes no sense and triggers
1993 * alarms, so change to 0 instead. For high temperature limits, it
1994 * means -1 degree C, which surprisingly doesn't trigger an alarm,
1995 * but is still confusing, so change to 127 degrees C. */
1996 for (i = 0; i < 8; i++) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001997 tmp = it87_read_value(data, IT87_REG_VIN_MIN(i));
Jean Delvarec5df9b72006-08-28 14:37:54 +02001998 if (tmp == 0xff)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02001999 it87_write_value(data, IT87_REG_VIN_MIN(i), 0);
Jean Delvarec5df9b72006-08-28 14:37:54 +02002000 }
2001 for (i = 0; i < 3; i++) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002002 tmp = it87_read_value(data, IT87_REG_TEMP_HIGH(i));
Jean Delvarec5df9b72006-08-28 14:37:54 +02002003 if (tmp == 0xff)
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002004 it87_write_value(data, IT87_REG_TEMP_HIGH(i), 127);
Jean Delvarec5df9b72006-08-28 14:37:54 +02002005 }
2006
Jean Delvarea00afb92010-04-14 16:14:09 +02002007 /* Temperature channels are not forcibly enabled, as they can be
2008 * set to two different sensor types and we can't guess which one
2009 * is correct for a given system. These channels can be enabled at
2010 * run-time through the temp{1-3}_type sysfs accessors if needed. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
2012 /* Check if voltage monitors are reset manually or by some reason */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002013 tmp = it87_read_value(data, IT87_REG_VIN_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 if ((tmp & 0xff) == 0) {
2015 /* Enable all voltage monitors */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002016 it87_write_value(data, IT87_REG_VIN_ENABLE, 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 }
2018
2019 /* Check if tachometers are reset manually or by some reason */
Jean Delvare591ec652009-12-09 20:35:48 +01002020 mask = 0x70 & ~(sio_data->skip_fan << 4);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002021 data->fan_main_ctrl = it87_read_value(data, IT87_REG_FAN_MAIN_CTRL);
Jean Delvare591ec652009-12-09 20:35:48 +01002022 if ((data->fan_main_ctrl & mask) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 /* Enable all fan tachometers */
Jean Delvare591ec652009-12-09 20:35:48 +01002024 data->fan_main_ctrl |= mask;
Jean Delvare5f2dc792010-03-05 22:17:18 +01002025 it87_write_value(data, IT87_REG_FAN_MAIN_CTRL,
2026 data->fan_main_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 }
Jean Delvare9060f8b2006-08-28 14:24:17 +02002028 data->has_fan = (data->fan_main_ctrl >> 4) & 0x07;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
Jean Delvare17d648b2006-08-28 14:23:46 +02002030 /* Set tachometers to 16-bit mode if needed */
Andrew Paprocki04751692008-08-06 22:41:06 +02002031 if (has_16bit_fans(data)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002032 tmp = it87_read_value(data, IT87_REG_FAN_16BIT);
Jean Delvare9060f8b2006-08-28 14:24:17 +02002033 if (~tmp & 0x07 & data->has_fan) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002034 dev_dbg(&pdev->dev,
Jean Delvare17d648b2006-08-28 14:23:46 +02002035 "Setting fan1-3 to 16-bit mode\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002036 it87_write_value(data, IT87_REG_FAN_16BIT,
Jean Delvare17d648b2006-08-28 14:23:46 +02002037 tmp | 0x07);
2038 }
Andrew Paprocki816d8c62008-08-06 22:41:06 +02002039 /* IT8705F only supports three fans. */
2040 if (data->type != it87) {
2041 if (tmp & (1 << 4))
2042 data->has_fan |= (1 << 3); /* fan4 enabled */
2043 if (tmp & (1 << 5))
2044 data->has_fan |= (1 << 4); /* fan5 enabled */
2045 }
Jean Delvare17d648b2006-08-28 14:23:46 +02002046 }
2047
Jean Delvare591ec652009-12-09 20:35:48 +01002048 /* Fan input pins may be used for alternative functions */
2049 data->has_fan &= ~sio_data->skip_fan;
2050
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 /* Start monitoring */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002052 it87_write_value(data, IT87_REG_CONFIG,
2053 (it87_read_value(data, IT87_REG_CONFIG) & 0x36)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 | (update_vbat ? 0x41 : 0x01));
2055}
2056
Jean Delvareb99883d2010-03-05 22:17:15 +01002057static void it87_update_pwm_ctrl(struct it87_data *data, int nr)
2058{
2059 data->pwm_ctrl[nr] = it87_read_value(data, IT87_REG_PWM(nr));
Jean Delvare6229cdb2010-12-08 16:27:22 +01002060 if (data->type == it8721) {
Jean Delvareb99883d2010-03-05 22:17:15 +01002061 data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03;
Jean Delvare6229cdb2010-12-08 16:27:22 +01002062 data->pwm_duty[nr] = it87_read_value(data,
2063 IT87_REG_PWM_DUTY(nr));
2064 } else {
2065 if (data->pwm_ctrl[nr] & 0x80) /* Automatic mode */
2066 data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03;
2067 else /* Manual mode */
2068 data->pwm_duty[nr] = data->pwm_ctrl[nr] & 0x7f;
2069 }
Jean Delvare4f3f51b2010-03-05 22:17:21 +01002070
2071 if (has_old_autopwm(data)) {
2072 int i;
2073
2074 for (i = 0; i < 5 ; i++)
2075 data->auto_temp[nr][i] = it87_read_value(data,
2076 IT87_REG_AUTO_TEMP(nr, i));
2077 for (i = 0; i < 3 ; i++)
2078 data->auto_pwm[nr][i] = it87_read_value(data,
2079 IT87_REG_AUTO_PWM(nr, i));
2080 }
Jean Delvareb99883d2010-03-05 22:17:15 +01002081}
2082
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083static struct it87_data *it87_update_device(struct device *dev)
2084{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002085 struct it87_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 int i;
2087
Ingo Molnar9a61bf62006-01-18 23:19:26 +01002088 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
2090 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
2091 || !data->valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 if (update_vbat) {
2093 /* Cleared after each update, so reenable. Value
Jean Delvare5f2dc792010-03-05 22:17:18 +01002094 returned by this read will be previous value */
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002095 it87_write_value(data, IT87_REG_CONFIG,
Jean Delvare5f2dc792010-03-05 22:17:18 +01002096 it87_read_value(data, IT87_REG_CONFIG) | 0x40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 }
2098 for (i = 0; i <= 7; i++) {
2099 data->in[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002100 it87_read_value(data, IT87_REG_VIN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 data->in_min[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002102 it87_read_value(data, IT87_REG_VIN_MIN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 data->in_max[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002104 it87_read_value(data, IT87_REG_VIN_MAX(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 }
Jean Delvare3543a532006-08-28 14:27:25 +02002106 /* in8 (battery) has no limit registers */
Jean Delvare5f2dc792010-03-05 22:17:18 +01002107 data->in[8] = it87_read_value(data, IT87_REG_VIN(8));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
Jean Delvarec7f1f712007-09-03 17:11:46 +02002109 for (i = 0; i < 5; i++) {
Jean Delvare9060f8b2006-08-28 14:24:17 +02002110 /* Skip disabled fans */
2111 if (!(data->has_fan & (1 << i)))
2112 continue;
2113
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 data->fan_min[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002115 it87_read_value(data, IT87_REG_FAN_MIN[i]);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002116 data->fan[i] = it87_read_value(data,
Jean Delvarec7f1f712007-09-03 17:11:46 +02002117 IT87_REG_FAN[i]);
Jean Delvare17d648b2006-08-28 14:23:46 +02002118 /* Add high byte if in 16-bit mode */
Andrew Paprocki04751692008-08-06 22:41:06 +02002119 if (has_16bit_fans(data)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002120 data->fan[i] |= it87_read_value(data,
Jean Delvarec7f1f712007-09-03 17:11:46 +02002121 IT87_REG_FANX[i]) << 8;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002122 data->fan_min[i] |= it87_read_value(data,
Jean Delvarec7f1f712007-09-03 17:11:46 +02002123 IT87_REG_FANX_MIN[i]) << 8;
Jean Delvare17d648b2006-08-28 14:23:46 +02002124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 }
2126 for (i = 0; i < 3; i++) {
2127 data->temp[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002128 it87_read_value(data, IT87_REG_TEMP(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 data->temp_high[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002130 it87_read_value(data, IT87_REG_TEMP_HIGH(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 data->temp_low[i] =
Jean Delvare5f2dc792010-03-05 22:17:18 +01002132 it87_read_value(data, IT87_REG_TEMP_LOW(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 }
2134
Jean Delvare17d648b2006-08-28 14:23:46 +02002135 /* Newer chips don't have clock dividers */
Andrew Paprocki04751692008-08-06 22:41:06 +02002136 if ((data->has_fan & 0x07) && !has_16bit_fans(data)) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002137 i = it87_read_value(data, IT87_REG_FAN_DIV);
Jean Delvare17d648b2006-08-28 14:23:46 +02002138 data->fan_div[0] = i & 0x07;
2139 data->fan_div[1] = (i >> 3) & 0x07;
2140 data->fan_div[2] = (i & 0x40) ? 3 : 1;
2141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
2143 data->alarms =
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002144 it87_read_value(data, IT87_REG_ALARM1) |
2145 (it87_read_value(data, IT87_REG_ALARM2) << 8) |
2146 (it87_read_value(data, IT87_REG_ALARM3) << 16);
Jean Delvared9b327c2010-03-05 22:17:17 +01002147 data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE);
Jean Delvareb99883d2010-03-05 22:17:15 +01002148
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002149 data->fan_main_ctrl = it87_read_value(data,
2150 IT87_REG_FAN_MAIN_CTRL);
2151 data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL);
Jean Delvareb99883d2010-03-05 22:17:15 +01002152 for (i = 0; i < 3; i++)
2153 it87_update_pwm_ctrl(data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002155 data->sensor = it87_read_value(data, IT87_REG_TEMP_ENABLE);
Andrew Paprocki04751692008-08-06 22:41:06 +02002156 /* The 8705 does not have VID capability.
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002157 The 8718 and later don't use IT87_REG_VID for the
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +01002158 same purpose. */
Jean Delvare17d648b2006-08-28 14:23:46 +02002159 if (data->type == it8712 || data->type == it8716) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002160 data->vid = it87_read_value(data, IT87_REG_VID);
Jean Delvare17d648b2006-08-28 14:23:46 +02002161 /* The older IT8712F revisions had only 5 VID pins,
2162 but we assume it is always safe to read 6 bits. */
2163 data->vid &= 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 }
2165 data->last_updated = jiffies;
2166 data->valid = 1;
2167 }
2168
Ingo Molnar9a61bf62006-01-18 23:19:26 +01002169 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
2171 return data;
2172}
2173
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002174static int __init it87_device_add(unsigned short address,
2175 const struct it87_sio_data *sio_data)
2176{
2177 struct resource res = {
Bjorn Helgaas87b4b662008-01-22 07:21:03 -05002178 .start = address + IT87_EC_OFFSET,
2179 .end = address + IT87_EC_OFFSET + IT87_EC_EXTENT - 1,
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002180 .name = DRVNAME,
2181 .flags = IORESOURCE_IO,
2182 };
2183 int err;
2184
Jean Delvareb9acb642009-01-07 16:37:35 +01002185 err = acpi_check_resource_conflict(&res);
2186 if (err)
2187 goto exit;
2188
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002189 pdev = platform_device_alloc(DRVNAME, address);
2190 if (!pdev) {
2191 err = -ENOMEM;
Joe Perchesa8ca1032011-01-12 21:55:10 +01002192 pr_err("Device allocation failed\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002193 goto exit;
2194 }
2195
2196 err = platform_device_add_resources(pdev, &res, 1);
2197 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002198 pr_err("Device resource addition failed (%d)\n", err);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002199 goto exit_device_put;
2200 }
2201
2202 err = platform_device_add_data(pdev, sio_data,
2203 sizeof(struct it87_sio_data));
2204 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002205 pr_err("Platform data allocation failed\n");
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002206 goto exit_device_put;
2207 }
2208
2209 err = platform_device_add(pdev);
2210 if (err) {
Joe Perchesa8ca1032011-01-12 21:55:10 +01002211 pr_err("Device addition failed (%d)\n", err);
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002212 goto exit_device_put;
2213 }
2214
2215 return 0;
2216
2217exit_device_put:
2218 platform_device_put(pdev);
2219exit:
2220 return err;
2221}
2222
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223static int __init sm_it87_init(void)
2224{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002225 int err;
Jean Delvare5f2dc792010-03-05 22:17:18 +01002226 unsigned short isa_address = 0;
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002227 struct it87_sio_data sio_data;
Jean Delvarefde09502005-07-19 23:51:07 +02002228
Jean Delvare98dd22c2008-10-09 15:33:58 +02002229 memset(&sio_data, 0, sizeof(struct it87_sio_data));
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002230 err = it87_find(&isa_address, &sio_data);
2231 if (err)
2232 return err;
2233 err = platform_driver_register(&it87_driver);
2234 if (err)
2235 return err;
2236
2237 err = it87_device_add(isa_address, &sio_data);
Jean Delvare5f2dc792010-03-05 22:17:18 +01002238 if (err) {
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002239 platform_driver_unregister(&it87_driver);
2240 return err;
2241 }
2242
2243 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244}
2245
2246static void __exit sm_it87_exit(void)
2247{
corentin.labbeb74f3fd2007-06-13 20:27:36 +02002248 platform_device_unregister(pdev);
2249 platform_driver_unregister(&it87_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250}
2251
2252
Jean Delvaref1d8e332007-11-25 16:14:44 +01002253MODULE_AUTHOR("Chris Gauthron, "
Jean Delvareb19367c2006-08-28 14:39:26 +02002254 "Jean Delvare <khali@linux-fr.org>");
Jean Delvare44c1bcd2010-10-28 20:31:51 +02002255MODULE_DESCRIPTION("IT8705F/IT871xF/IT872xF hardware monitoring driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256module_param(update_vbat, bool, 0);
2257MODULE_PARM_DESC(update_vbat, "Update vbat if set else return powerup value");
2258module_param(fix_pwm_polarity, bool, 0);
Jean Delvare5f2dc792010-03-05 22:17:18 +01002259MODULE_PARM_DESC(fix_pwm_polarity,
2260 "Force PWM polarity to active high (DANGEROUS)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261MODULE_LICENSE("GPL");
2262
2263module_init(sm_it87_init);
2264module_exit(sm_it87_exit);