blob: e615b8378fc3313a7f4f79a8121ee6e12d07b2e5 [file] [log] [blame]
Jean Delvare08e7e272005-04-25 22:43:25 +02001/*
2 w83627ehf - Driver for the hardware monitoring functionality of
3 the Winbond W83627EHF Super-I/O chip
4 Copyright (C) 2005 Jean Delvare <khali@linux-fr.org>
Jean Delvare3379cee2006-09-24 21:25:52 +02005 Copyright (C) 2006 Yuan Mu (Winbond),
Jean Delvare7188cc62006-12-12 18:18:30 +01006 Rudolf Marek <r.marek@assembler.cz>
David Hubbardc18beb52006-09-24 21:04:38 +02007 David Hubbard <david.c.hubbard@gmail.com>
Jean Delvare08e7e272005-04-25 22:43:25 +02008
9 Shamelessly ripped from the w83627hf driver
10 Copyright (C) 2003 Mark Studebaker
11
12 Thanks to Leon Moonen, Steve Cliffe and Grant Coady for their help
13 in testing and debugging this driver.
14
Jean Delvare8dd2d2c2005-07-27 21:33:15 +020015 This driver also supports the W83627EHG, which is the lead-free
16 version of the W83627EHF.
17
Jean Delvare08e7e272005-04-25 22:43:25 +020018 This program is free software; you can redistribute it and/or modify
19 it under the terms of the GNU General Public License as published by
20 the Free Software Foundation; either version 2 of the License, or
21 (at your option) any later version.
22
23 This program is distributed in the hope that it will be useful,
24 but WITHOUT ANY WARRANTY; without even the implied warranty of
25 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 GNU General Public License for more details.
27
28 You should have received a copy of the GNU General Public License
29 along with this program; if not, write to the Free Software
30 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
31
32
33 Supports the following chips:
34
David Hubbard657c93b2007-02-14 21:15:04 +010035 Chip #vin #fan #pwm #temp chip IDs man ID
36 w83627ehf 10 5 4 3 0x8850 0x88 0x5ca3
37 0x8860 0xa1
38 w83627dhg 9 5 4 3 0xa020 0xc1 0x5ca3
Jean Delvare08e7e272005-04-25 22:43:25 +020039*/
40
41#include <linux/module.h>
42#include <linux/init.h>
43#include <linux/slab.h>
David Hubbard1ea6dd32007-06-24 11:16:15 +020044#include <linux/jiffies.h>
45#include <linux/platform_device.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040046#include <linux/hwmon.h>
Yuan Mu412fec82006-02-05 23:24:16 +010047#include <linux/hwmon-sysfs.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040048#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010049#include <linux/mutex.h>
Jean Delvare08e7e272005-04-25 22:43:25 +020050#include <asm/io.h>
51#include "lm75.h"
52
David Hubbard1ea6dd32007-06-24 11:16:15 +020053enum kinds { w83627ehf, w83627dhg };
54
55/* used to set data->name = w83627ehf_device_names[data->sio_kind] */
56static const char * w83627ehf_device_names[] = {
57 "w83627ehf",
58 "w83627dhg",
59};
60
61#define DRVNAME "w83627ehf"
Jean Delvare08e7e272005-04-25 22:43:25 +020062
63/*
64 * Super-I/O constants and functions
65 */
66
Jean Delvare08e7e272005-04-25 22:43:25 +020067#define W83627EHF_LD_HWM 0x0b
68
69#define SIO_REG_LDSEL 0x07 /* Logical device select */
70#define SIO_REG_DEVID 0x20 /* Device ID (2 bytes) */
71#define SIO_REG_ENABLE 0x30 /* Logical device enable */
72#define SIO_REG_ADDR 0x60 /* Logical device address (2 bytes) */
73
David Hubbard657c93b2007-02-14 21:15:04 +010074#define SIO_W83627EHF_ID 0x8850
75#define SIO_W83627EHG_ID 0x8860
76#define SIO_W83627DHG_ID 0xa020
77#define SIO_ID_MASK 0xFFF0
Jean Delvare08e7e272005-04-25 22:43:25 +020078
79static inline void
David Hubbard1ea6dd32007-06-24 11:16:15 +020080superio_outb(int ioreg, int reg, int val)
Jean Delvare08e7e272005-04-25 22:43:25 +020081{
David Hubbard1ea6dd32007-06-24 11:16:15 +020082 outb(reg, ioreg);
83 outb(val, ioreg + 1);
Jean Delvare08e7e272005-04-25 22:43:25 +020084}
85
86static inline int
David Hubbard1ea6dd32007-06-24 11:16:15 +020087superio_inb(int ioreg, int reg)
Jean Delvare08e7e272005-04-25 22:43:25 +020088{
David Hubbard1ea6dd32007-06-24 11:16:15 +020089 outb(reg, ioreg);
90 return inb(ioreg + 1);
Jean Delvare08e7e272005-04-25 22:43:25 +020091}
92
93static inline void
David Hubbard1ea6dd32007-06-24 11:16:15 +020094superio_select(int ioreg, int ld)
Jean Delvare08e7e272005-04-25 22:43:25 +020095{
David Hubbard1ea6dd32007-06-24 11:16:15 +020096 outb(SIO_REG_LDSEL, ioreg);
97 outb(ld, ioreg + 1);
Jean Delvare08e7e272005-04-25 22:43:25 +020098}
99
100static inline void
David Hubbard1ea6dd32007-06-24 11:16:15 +0200101superio_enter(int ioreg)
Jean Delvare08e7e272005-04-25 22:43:25 +0200102{
David Hubbard1ea6dd32007-06-24 11:16:15 +0200103 outb(0x87, ioreg);
104 outb(0x87, ioreg);
Jean Delvare08e7e272005-04-25 22:43:25 +0200105}
106
107static inline void
David Hubbard1ea6dd32007-06-24 11:16:15 +0200108superio_exit(int ioreg)
Jean Delvare08e7e272005-04-25 22:43:25 +0200109{
David Hubbard1ea6dd32007-06-24 11:16:15 +0200110 outb(0x02, ioreg);
111 outb(0x02, ioreg + 1);
Jean Delvare08e7e272005-04-25 22:43:25 +0200112}
113
114/*
115 * ISA constants
116 */
117
Jean Delvare1a641fc2007-04-23 14:41:16 -0700118#define IOREGION_ALIGNMENT ~7
119#define IOREGION_OFFSET 5
120#define IOREGION_LENGTH 2
David Hubbard1ea6dd32007-06-24 11:16:15 +0200121#define ADDR_REG_OFFSET 0
122#define DATA_REG_OFFSET 1
Jean Delvare08e7e272005-04-25 22:43:25 +0200123
124#define W83627EHF_REG_BANK 0x4E
125#define W83627EHF_REG_CONFIG 0x40
David Hubbard657c93b2007-02-14 21:15:04 +0100126
127/* Not currently used:
128 * REG_MAN_ID has the value 0x5ca3 for all supported chips.
129 * REG_CHIP_ID == 0x88/0xa1/0xc1 depending on chip model.
130 * REG_MAN_ID is at port 0x4f
131 * REG_CHIP_ID is at port 0x58 */
Jean Delvare08e7e272005-04-25 22:43:25 +0200132
133static const u16 W83627EHF_REG_FAN[] = { 0x28, 0x29, 0x2a, 0x3f, 0x553 };
134static const u16 W83627EHF_REG_FAN_MIN[] = { 0x3b, 0x3c, 0x3d, 0x3e, 0x55c };
135
Rudolf Marekcf0676f2006-03-23 16:25:22 +0100136/* The W83627EHF registers for nr=7,8,9 are in bank 5 */
137#define W83627EHF_REG_IN_MAX(nr) ((nr < 7) ? (0x2b + (nr) * 2) : \
138 (0x554 + (((nr) - 7) * 2)))
139#define W83627EHF_REG_IN_MIN(nr) ((nr < 7) ? (0x2c + (nr) * 2) : \
140 (0x555 + (((nr) - 7) * 2)))
141#define W83627EHF_REG_IN(nr) ((nr < 7) ? (0x20 + (nr)) : \
142 (0x550 + (nr) - 7))
143
Jean Delvare08e7e272005-04-25 22:43:25 +0200144#define W83627EHF_REG_TEMP1 0x27
145#define W83627EHF_REG_TEMP1_HYST 0x3a
146#define W83627EHF_REG_TEMP1_OVER 0x39
147static const u16 W83627EHF_REG_TEMP[] = { 0x150, 0x250 };
148static const u16 W83627EHF_REG_TEMP_HYST[] = { 0x153, 0x253 };
149static const u16 W83627EHF_REG_TEMP_OVER[] = { 0x155, 0x255 };
150static const u16 W83627EHF_REG_TEMP_CONFIG[] = { 0x152, 0x252 };
151
152/* Fan clock dividers are spread over the following five registers */
153#define W83627EHF_REG_FANDIV1 0x47
154#define W83627EHF_REG_FANDIV2 0x4B
155#define W83627EHF_REG_VBAT 0x5D
156#define W83627EHF_REG_DIODE 0x59
157#define W83627EHF_REG_SMI_OVT 0x4C
158
Jean Delvarea4589db2006-03-23 16:30:29 +0100159#define W83627EHF_REG_ALARM1 0x459
160#define W83627EHF_REG_ALARM2 0x45A
161#define W83627EHF_REG_ALARM3 0x45B
162
Rudolf Marek08c79952006-07-05 18:14:31 +0200163/* SmartFan registers */
164/* DC or PWM output fan configuration */
165static const u8 W83627EHF_REG_PWM_ENABLE[] = {
166 0x04, /* SYS FAN0 output mode and PWM mode */
167 0x04, /* CPU FAN0 output mode and PWM mode */
168 0x12, /* AUX FAN mode */
169 0x62, /* CPU fan1 mode */
170};
171
172static const u8 W83627EHF_PWM_MODE_SHIFT[] = { 0, 1, 0, 6 };
173static const u8 W83627EHF_PWM_ENABLE_SHIFT[] = { 2, 4, 1, 4 };
174
175/* FAN Duty Cycle, be used to control */
176static const u8 W83627EHF_REG_PWM[] = { 0x01, 0x03, 0x11, 0x61 };
177static const u8 W83627EHF_REG_TARGET[] = { 0x05, 0x06, 0x13, 0x63 };
178static const u8 W83627EHF_REG_TOLERANCE[] = { 0x07, 0x07, 0x14, 0x62 };
179
180
181/* Advanced Fan control, some values are common for all fans */
182static const u8 W83627EHF_REG_FAN_MIN_OUTPUT[] = { 0x08, 0x09, 0x15, 0x64 };
183static const u8 W83627EHF_REG_FAN_STOP_TIME[] = { 0x0C, 0x0D, 0x17, 0x66 };
184
Jean Delvare08e7e272005-04-25 22:43:25 +0200185/*
186 * Conversions
187 */
188
Rudolf Marek08c79952006-07-05 18:14:31 +0200189/* 1 is PWM mode, output in ms */
190static inline unsigned int step_time_from_reg(u8 reg, u8 mode)
191{
192 return mode ? 100 * reg : 400 * reg;
193}
194
195static inline u8 step_time_to_reg(unsigned int msec, u8 mode)
196{
197 return SENSORS_LIMIT((mode ? (msec + 50) / 100 :
198 (msec + 200) / 400), 1, 255);
199}
200
Jean Delvare08e7e272005-04-25 22:43:25 +0200201static inline unsigned int
202fan_from_reg(u8 reg, unsigned int div)
203{
204 if (reg == 0 || reg == 255)
205 return 0;
206 return 1350000U / (reg * div);
207}
208
209static inline unsigned int
210div_from_reg(u8 reg)
211{
212 return 1 << reg;
213}
214
215static inline int
216temp1_from_reg(s8 reg)
217{
218 return reg * 1000;
219}
220
221static inline s8
Rudolf Marek08c79952006-07-05 18:14:31 +0200222temp1_to_reg(int temp, int min, int max)
Jean Delvare08e7e272005-04-25 22:43:25 +0200223{
Rudolf Marek08c79952006-07-05 18:14:31 +0200224 if (temp <= min)
225 return min / 1000;
226 if (temp >= max)
227 return max / 1000;
Jean Delvare08e7e272005-04-25 22:43:25 +0200228 if (temp < 0)
229 return (temp - 500) / 1000;
230 return (temp + 500) / 1000;
231}
232
Rudolf Marekcf0676f2006-03-23 16:25:22 +0100233/* Some of analog inputs have internal scaling (2x), 8mV is ADC LSB */
234
235static u8 scale_in[10] = { 8, 8, 16, 16, 8, 8, 8, 16, 16, 8 };
236
237static inline long in_from_reg(u8 reg, u8 nr)
238{
239 return reg * scale_in[nr];
240}
241
242static inline u8 in_to_reg(u32 val, u8 nr)
243{
244 return SENSORS_LIMIT(((val + (scale_in[nr] / 2)) / scale_in[nr]), 0, 255);
245}
246
Jean Delvare08e7e272005-04-25 22:43:25 +0200247/*
248 * Data structures and manipulation thereof
249 */
250
251struct w83627ehf_data {
David Hubbard1ea6dd32007-06-24 11:16:15 +0200252 int addr; /* IO base of hw monitor block */
253 const char *name;
254
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400255 struct class_device *class_dev;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100256 struct mutex lock;
Jean Delvare08e7e272005-04-25 22:43:25 +0200257
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100258 struct mutex update_lock;
Jean Delvare08e7e272005-04-25 22:43:25 +0200259 char valid; /* !=0 if following fields are valid */
260 unsigned long last_updated; /* In jiffies */
261
262 /* Register values */
David Hubbard1ea6dd32007-06-24 11:16:15 +0200263 u8 in_num; /* number of in inputs we have */
Rudolf Marekcf0676f2006-03-23 16:25:22 +0100264 u8 in[10]; /* Register value */
265 u8 in_max[10]; /* Register value */
266 u8 in_min[10]; /* Register value */
Jean Delvare08e7e272005-04-25 22:43:25 +0200267 u8 fan[5];
268 u8 fan_min[5];
269 u8 fan_div[5];
270 u8 has_fan; /* some fan inputs can be disabled */
271 s8 temp1;
272 s8 temp1_max;
273 s8 temp1_max_hyst;
274 s16 temp[2];
275 s16 temp_max[2];
276 s16 temp_max_hyst[2];
Jean Delvarea4589db2006-03-23 16:30:29 +0100277 u32 alarms;
Rudolf Marek08c79952006-07-05 18:14:31 +0200278
279 u8 pwm_mode[4]; /* 0->DC variable voltage, 1->PWM variable duty cycle */
280 u8 pwm_enable[4]; /* 1->manual
281 2->thermal cruise (also called SmartFan I) */
282 u8 pwm[4];
283 u8 target_temp[4];
284 u8 tolerance[4];
285
286 u8 fan_min_output[4]; /* minimum fan speed */
287 u8 fan_stop_time[4];
Jean Delvare08e7e272005-04-25 22:43:25 +0200288};
289
David Hubbard1ea6dd32007-06-24 11:16:15 +0200290struct w83627ehf_sio_data {
291 int sioreg;
292 enum kinds kind;
293};
294
Jean Delvare08e7e272005-04-25 22:43:25 +0200295static inline int is_word_sized(u16 reg)
296{
297 return (((reg & 0xff00) == 0x100
298 || (reg & 0xff00) == 0x200)
299 && ((reg & 0x00ff) == 0x50
300 || (reg & 0x00ff) == 0x53
301 || (reg & 0x00ff) == 0x55));
302}
303
304/* We assume that the default bank is 0, thus the following two functions do
305 nothing for registers which live in bank 0. For others, they respectively
306 set the bank register to the correct value (before the register is
307 accessed), and back to 0 (afterwards). */
David Hubbard1ea6dd32007-06-24 11:16:15 +0200308static inline void w83627ehf_set_bank(struct w83627ehf_data *data, u16 reg)
Jean Delvare08e7e272005-04-25 22:43:25 +0200309{
310 if (reg & 0xff00) {
David Hubbard1ea6dd32007-06-24 11:16:15 +0200311 outb_p(W83627EHF_REG_BANK, data->addr + ADDR_REG_OFFSET);
312 outb_p(reg >> 8, data->addr + DATA_REG_OFFSET);
Jean Delvare08e7e272005-04-25 22:43:25 +0200313 }
314}
315
David Hubbard1ea6dd32007-06-24 11:16:15 +0200316static inline void w83627ehf_reset_bank(struct w83627ehf_data *data, u16 reg)
Jean Delvare08e7e272005-04-25 22:43:25 +0200317{
318 if (reg & 0xff00) {
David Hubbard1ea6dd32007-06-24 11:16:15 +0200319 outb_p(W83627EHF_REG_BANK, data->addr + ADDR_REG_OFFSET);
320 outb_p(0, data->addr + DATA_REG_OFFSET);
Jean Delvare08e7e272005-04-25 22:43:25 +0200321 }
322}
323
David Hubbard1ea6dd32007-06-24 11:16:15 +0200324static u16 w83627ehf_read_value(struct w83627ehf_data *data, u16 reg)
Jean Delvare08e7e272005-04-25 22:43:25 +0200325{
Jean Delvare08e7e272005-04-25 22:43:25 +0200326 int res, word_sized = is_word_sized(reg);
327
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100328 mutex_lock(&data->lock);
Jean Delvare08e7e272005-04-25 22:43:25 +0200329
David Hubbard1ea6dd32007-06-24 11:16:15 +0200330 w83627ehf_set_bank(data, reg);
331 outb_p(reg & 0xff, data->addr + ADDR_REG_OFFSET);
332 res = inb_p(data->addr + DATA_REG_OFFSET);
Jean Delvare08e7e272005-04-25 22:43:25 +0200333 if (word_sized) {
334 outb_p((reg & 0xff) + 1,
David Hubbard1ea6dd32007-06-24 11:16:15 +0200335 data->addr + ADDR_REG_OFFSET);
336 res = (res << 8) + inb_p(data->addr + DATA_REG_OFFSET);
Jean Delvare08e7e272005-04-25 22:43:25 +0200337 }
David Hubbard1ea6dd32007-06-24 11:16:15 +0200338 w83627ehf_reset_bank(data, reg);
Jean Delvare08e7e272005-04-25 22:43:25 +0200339
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100340 mutex_unlock(&data->lock);
Jean Delvare08e7e272005-04-25 22:43:25 +0200341
342 return res;
343}
344
David Hubbard1ea6dd32007-06-24 11:16:15 +0200345static int w83627ehf_write_value(struct w83627ehf_data *data, u16 reg, u16 value)
Jean Delvare08e7e272005-04-25 22:43:25 +0200346{
Jean Delvare08e7e272005-04-25 22:43:25 +0200347 int word_sized = is_word_sized(reg);
348
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100349 mutex_lock(&data->lock);
Jean Delvare08e7e272005-04-25 22:43:25 +0200350
David Hubbard1ea6dd32007-06-24 11:16:15 +0200351 w83627ehf_set_bank(data, reg);
352 outb_p(reg & 0xff, data->addr + ADDR_REG_OFFSET);
Jean Delvare08e7e272005-04-25 22:43:25 +0200353 if (word_sized) {
David Hubbard1ea6dd32007-06-24 11:16:15 +0200354 outb_p(value >> 8, data->addr + DATA_REG_OFFSET);
Jean Delvare08e7e272005-04-25 22:43:25 +0200355 outb_p((reg & 0xff) + 1,
David Hubbard1ea6dd32007-06-24 11:16:15 +0200356 data->addr + ADDR_REG_OFFSET);
Jean Delvare08e7e272005-04-25 22:43:25 +0200357 }
David Hubbard1ea6dd32007-06-24 11:16:15 +0200358 outb_p(value & 0xff, data->addr + DATA_REG_OFFSET);
359 w83627ehf_reset_bank(data, reg);
Jean Delvare08e7e272005-04-25 22:43:25 +0200360
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100361 mutex_unlock(&data->lock);
Jean Delvare08e7e272005-04-25 22:43:25 +0200362 return 0;
363}
364
365/* This function assumes that the caller holds data->update_lock */
David Hubbard1ea6dd32007-06-24 11:16:15 +0200366static void w83627ehf_write_fan_div(struct w83627ehf_data *data, int nr)
Jean Delvare08e7e272005-04-25 22:43:25 +0200367{
Jean Delvare08e7e272005-04-25 22:43:25 +0200368 u8 reg;
369
370 switch (nr) {
371 case 0:
David Hubbard1ea6dd32007-06-24 11:16:15 +0200372 reg = (w83627ehf_read_value(data, W83627EHF_REG_FANDIV1) & 0xcf)
Jean Delvare08e7e272005-04-25 22:43:25 +0200373 | ((data->fan_div[0] & 0x03) << 4);
Rudolf Marek14992c72006-10-08 22:02:09 +0200374 /* fan5 input control bit is write only, compute the value */
375 reg |= (data->has_fan & (1 << 4)) ? 1 : 0;
David Hubbard1ea6dd32007-06-24 11:16:15 +0200376 w83627ehf_write_value(data, W83627EHF_REG_FANDIV1, reg);
377 reg = (w83627ehf_read_value(data, W83627EHF_REG_VBAT) & 0xdf)
Jean Delvare08e7e272005-04-25 22:43:25 +0200378 | ((data->fan_div[0] & 0x04) << 3);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200379 w83627ehf_write_value(data, W83627EHF_REG_VBAT, reg);
Jean Delvare08e7e272005-04-25 22:43:25 +0200380 break;
381 case 1:
David Hubbard1ea6dd32007-06-24 11:16:15 +0200382 reg = (w83627ehf_read_value(data, W83627EHF_REG_FANDIV1) & 0x3f)
Jean Delvare08e7e272005-04-25 22:43:25 +0200383 | ((data->fan_div[1] & 0x03) << 6);
Rudolf Marek14992c72006-10-08 22:02:09 +0200384 /* fan5 input control bit is write only, compute the value */
385 reg |= (data->has_fan & (1 << 4)) ? 1 : 0;
David Hubbard1ea6dd32007-06-24 11:16:15 +0200386 w83627ehf_write_value(data, W83627EHF_REG_FANDIV1, reg);
387 reg = (w83627ehf_read_value(data, W83627EHF_REG_VBAT) & 0xbf)
Jean Delvare08e7e272005-04-25 22:43:25 +0200388 | ((data->fan_div[1] & 0x04) << 4);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200389 w83627ehf_write_value(data, W83627EHF_REG_VBAT, reg);
Jean Delvare08e7e272005-04-25 22:43:25 +0200390 break;
391 case 2:
David Hubbard1ea6dd32007-06-24 11:16:15 +0200392 reg = (w83627ehf_read_value(data, W83627EHF_REG_FANDIV2) & 0x3f)
Jean Delvare08e7e272005-04-25 22:43:25 +0200393 | ((data->fan_div[2] & 0x03) << 6);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200394 w83627ehf_write_value(data, W83627EHF_REG_FANDIV2, reg);
395 reg = (w83627ehf_read_value(data, W83627EHF_REG_VBAT) & 0x7f)
Jean Delvare08e7e272005-04-25 22:43:25 +0200396 | ((data->fan_div[2] & 0x04) << 5);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200397 w83627ehf_write_value(data, W83627EHF_REG_VBAT, reg);
Jean Delvare08e7e272005-04-25 22:43:25 +0200398 break;
399 case 3:
David Hubbard1ea6dd32007-06-24 11:16:15 +0200400 reg = (w83627ehf_read_value(data, W83627EHF_REG_DIODE) & 0xfc)
Jean Delvare08e7e272005-04-25 22:43:25 +0200401 | (data->fan_div[3] & 0x03);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200402 w83627ehf_write_value(data, W83627EHF_REG_DIODE, reg);
403 reg = (w83627ehf_read_value(data, W83627EHF_REG_SMI_OVT) & 0x7f)
Jean Delvare08e7e272005-04-25 22:43:25 +0200404 | ((data->fan_div[3] & 0x04) << 5);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200405 w83627ehf_write_value(data, W83627EHF_REG_SMI_OVT, reg);
Jean Delvare08e7e272005-04-25 22:43:25 +0200406 break;
407 case 4:
David Hubbard1ea6dd32007-06-24 11:16:15 +0200408 reg = (w83627ehf_read_value(data, W83627EHF_REG_DIODE) & 0x73)
Jean Delvare33725ad2007-04-17 00:32:27 -0700409 | ((data->fan_div[4] & 0x03) << 2)
Jean Delvare08e7e272005-04-25 22:43:25 +0200410 | ((data->fan_div[4] & 0x04) << 5);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200411 w83627ehf_write_value(data, W83627EHF_REG_DIODE, reg);
Jean Delvare08e7e272005-04-25 22:43:25 +0200412 break;
413 }
414}
415
416static struct w83627ehf_data *w83627ehf_update_device(struct device *dev)
417{
David Hubbard1ea6dd32007-06-24 11:16:15 +0200418 struct w83627ehf_data *data = dev_get_drvdata(dev);
Rudolf Marek08c79952006-07-05 18:14:31 +0200419 int pwmcfg = 0, tolerance = 0; /* shut up the compiler */
Jean Delvare08e7e272005-04-25 22:43:25 +0200420 int i;
421
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100422 mutex_lock(&data->update_lock);
Jean Delvare08e7e272005-04-25 22:43:25 +0200423
424 if (time_after(jiffies, data->last_updated + HZ)
425 || !data->valid) {
426 /* Fan clock dividers */
David Hubbard1ea6dd32007-06-24 11:16:15 +0200427 i = w83627ehf_read_value(data, W83627EHF_REG_FANDIV1);
Jean Delvare08e7e272005-04-25 22:43:25 +0200428 data->fan_div[0] = (i >> 4) & 0x03;
429 data->fan_div[1] = (i >> 6) & 0x03;
David Hubbard1ea6dd32007-06-24 11:16:15 +0200430 i = w83627ehf_read_value(data, W83627EHF_REG_FANDIV2);
Jean Delvare08e7e272005-04-25 22:43:25 +0200431 data->fan_div[2] = (i >> 6) & 0x03;
David Hubbard1ea6dd32007-06-24 11:16:15 +0200432 i = w83627ehf_read_value(data, W83627EHF_REG_VBAT);
Jean Delvare08e7e272005-04-25 22:43:25 +0200433 data->fan_div[0] |= (i >> 3) & 0x04;
434 data->fan_div[1] |= (i >> 4) & 0x04;
435 data->fan_div[2] |= (i >> 5) & 0x04;
436 if (data->has_fan & ((1 << 3) | (1 << 4))) {
David Hubbard1ea6dd32007-06-24 11:16:15 +0200437 i = w83627ehf_read_value(data, W83627EHF_REG_DIODE);
Jean Delvare08e7e272005-04-25 22:43:25 +0200438 data->fan_div[3] = i & 0x03;
439 data->fan_div[4] = ((i >> 2) & 0x03)
440 | ((i >> 5) & 0x04);
441 }
442 if (data->has_fan & (1 << 3)) {
David Hubbard1ea6dd32007-06-24 11:16:15 +0200443 i = w83627ehf_read_value(data, W83627EHF_REG_SMI_OVT);
Jean Delvare08e7e272005-04-25 22:43:25 +0200444 data->fan_div[3] |= (i >> 5) & 0x04;
445 }
446
Rudolf Marekcf0676f2006-03-23 16:25:22 +0100447 /* Measured voltages and limits */
David Hubbard1ea6dd32007-06-24 11:16:15 +0200448 for (i = 0; i < data->in_num; i++) {
449 data->in[i] = w83627ehf_read_value(data,
Rudolf Marekcf0676f2006-03-23 16:25:22 +0100450 W83627EHF_REG_IN(i));
David Hubbard1ea6dd32007-06-24 11:16:15 +0200451 data->in_min[i] = w83627ehf_read_value(data,
Rudolf Marekcf0676f2006-03-23 16:25:22 +0100452 W83627EHF_REG_IN_MIN(i));
David Hubbard1ea6dd32007-06-24 11:16:15 +0200453 data->in_max[i] = w83627ehf_read_value(data,
Rudolf Marekcf0676f2006-03-23 16:25:22 +0100454 W83627EHF_REG_IN_MAX(i));
455 }
456
Jean Delvare08e7e272005-04-25 22:43:25 +0200457 /* Measured fan speeds and limits */
458 for (i = 0; i < 5; i++) {
459 if (!(data->has_fan & (1 << i)))
460 continue;
461
David Hubbard1ea6dd32007-06-24 11:16:15 +0200462 data->fan[i] = w83627ehf_read_value(data,
Jean Delvare08e7e272005-04-25 22:43:25 +0200463 W83627EHF_REG_FAN[i]);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200464 data->fan_min[i] = w83627ehf_read_value(data,
Jean Delvare08e7e272005-04-25 22:43:25 +0200465 W83627EHF_REG_FAN_MIN[i]);
466
467 /* If we failed to measure the fan speed and clock
468 divider can be increased, let's try that for next
469 time */
470 if (data->fan[i] == 0xff
471 && data->fan_div[i] < 0x07) {
David Hubbard1ea6dd32007-06-24 11:16:15 +0200472 dev_dbg(dev, "Increasing fan%d "
Jean Delvare08e7e272005-04-25 22:43:25 +0200473 "clock divider from %u to %u\n",
Jean Delvare33725ad2007-04-17 00:32:27 -0700474 i + 1, div_from_reg(data->fan_div[i]),
Jean Delvare08e7e272005-04-25 22:43:25 +0200475 div_from_reg(data->fan_div[i] + 1));
476 data->fan_div[i]++;
David Hubbard1ea6dd32007-06-24 11:16:15 +0200477 w83627ehf_write_fan_div(data, i);
Jean Delvare08e7e272005-04-25 22:43:25 +0200478 /* Preserve min limit if possible */
479 if (data->fan_min[i] >= 2
480 && data->fan_min[i] != 255)
David Hubbard1ea6dd32007-06-24 11:16:15 +0200481 w83627ehf_write_value(data,
Jean Delvare08e7e272005-04-25 22:43:25 +0200482 W83627EHF_REG_FAN_MIN[i],
483 (data->fan_min[i] /= 2));
484 }
485 }
486
Rudolf Marek08c79952006-07-05 18:14:31 +0200487 for (i = 0; i < 4; i++) {
488 /* pwmcfg, tolarance mapped for i=0, i=1 to same reg */
489 if (i != 1) {
David Hubbard1ea6dd32007-06-24 11:16:15 +0200490 pwmcfg = w83627ehf_read_value(data,
Rudolf Marek08c79952006-07-05 18:14:31 +0200491 W83627EHF_REG_PWM_ENABLE[i]);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200492 tolerance = w83627ehf_read_value(data,
Rudolf Marek08c79952006-07-05 18:14:31 +0200493 W83627EHF_REG_TOLERANCE[i]);
494 }
495 data->pwm_mode[i] =
496 ((pwmcfg >> W83627EHF_PWM_MODE_SHIFT[i]) & 1)
497 ? 0 : 1;
498 data->pwm_enable[i] =
499 ((pwmcfg >> W83627EHF_PWM_ENABLE_SHIFT[i])
500 & 3) + 1;
David Hubbard1ea6dd32007-06-24 11:16:15 +0200501 data->pwm[i] = w83627ehf_read_value(data,
Rudolf Marek08c79952006-07-05 18:14:31 +0200502 W83627EHF_REG_PWM[i]);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200503 data->fan_min_output[i] = w83627ehf_read_value(data,
Rudolf Marek08c79952006-07-05 18:14:31 +0200504 W83627EHF_REG_FAN_MIN_OUTPUT[i]);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200505 data->fan_stop_time[i] = w83627ehf_read_value(data,
Rudolf Marek08c79952006-07-05 18:14:31 +0200506 W83627EHF_REG_FAN_STOP_TIME[i]);
507 data->target_temp[i] =
David Hubbard1ea6dd32007-06-24 11:16:15 +0200508 w83627ehf_read_value(data,
Rudolf Marek08c79952006-07-05 18:14:31 +0200509 W83627EHF_REG_TARGET[i]) &
510 (data->pwm_mode[i] == 1 ? 0x7f : 0xff);
511 data->tolerance[i] = (tolerance >> (i == 1 ? 4 : 0))
512 & 0x0f;
513 }
514
Jean Delvare08e7e272005-04-25 22:43:25 +0200515 /* Measured temperatures and limits */
David Hubbard1ea6dd32007-06-24 11:16:15 +0200516 data->temp1 = w83627ehf_read_value(data,
Jean Delvare08e7e272005-04-25 22:43:25 +0200517 W83627EHF_REG_TEMP1);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200518 data->temp1_max = w83627ehf_read_value(data,
Jean Delvare08e7e272005-04-25 22:43:25 +0200519 W83627EHF_REG_TEMP1_OVER);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200520 data->temp1_max_hyst = w83627ehf_read_value(data,
Jean Delvare08e7e272005-04-25 22:43:25 +0200521 W83627EHF_REG_TEMP1_HYST);
522 for (i = 0; i < 2; i++) {
David Hubbard1ea6dd32007-06-24 11:16:15 +0200523 data->temp[i] = w83627ehf_read_value(data,
Jean Delvare08e7e272005-04-25 22:43:25 +0200524 W83627EHF_REG_TEMP[i]);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200525 data->temp_max[i] = w83627ehf_read_value(data,
Jean Delvare08e7e272005-04-25 22:43:25 +0200526 W83627EHF_REG_TEMP_OVER[i]);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200527 data->temp_max_hyst[i] = w83627ehf_read_value(data,
Jean Delvare08e7e272005-04-25 22:43:25 +0200528 W83627EHF_REG_TEMP_HYST[i]);
529 }
530
David Hubbard1ea6dd32007-06-24 11:16:15 +0200531 data->alarms = w83627ehf_read_value(data,
Jean Delvarea4589db2006-03-23 16:30:29 +0100532 W83627EHF_REG_ALARM1) |
David Hubbard1ea6dd32007-06-24 11:16:15 +0200533 (w83627ehf_read_value(data,
Jean Delvarea4589db2006-03-23 16:30:29 +0100534 W83627EHF_REG_ALARM2) << 8) |
David Hubbard1ea6dd32007-06-24 11:16:15 +0200535 (w83627ehf_read_value(data,
Jean Delvarea4589db2006-03-23 16:30:29 +0100536 W83627EHF_REG_ALARM3) << 16);
537
Jean Delvare08e7e272005-04-25 22:43:25 +0200538 data->last_updated = jiffies;
539 data->valid = 1;
540 }
541
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100542 mutex_unlock(&data->update_lock);
Jean Delvare08e7e272005-04-25 22:43:25 +0200543 return data;
544}
545
546/*
547 * Sysfs callback functions
548 */
Rudolf Marekcf0676f2006-03-23 16:25:22 +0100549#define show_in_reg(reg) \
550static ssize_t \
551show_##reg(struct device *dev, struct device_attribute *attr, \
552 char *buf) \
553{ \
554 struct w83627ehf_data *data = w83627ehf_update_device(dev); \
555 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
556 int nr = sensor_attr->index; \
557 return sprintf(buf, "%ld\n", in_from_reg(data->reg[nr], nr)); \
558}
559show_in_reg(in)
560show_in_reg(in_min)
561show_in_reg(in_max)
562
563#define store_in_reg(REG, reg) \
564static ssize_t \
565store_in_##reg (struct device *dev, struct device_attribute *attr, \
566 const char *buf, size_t count) \
567{ \
David Hubbard1ea6dd32007-06-24 11:16:15 +0200568 struct w83627ehf_data *data = dev_get_drvdata(dev); \
Rudolf Marekcf0676f2006-03-23 16:25:22 +0100569 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
570 int nr = sensor_attr->index; \
571 u32 val = simple_strtoul(buf, NULL, 10); \
572 \
573 mutex_lock(&data->update_lock); \
574 data->in_##reg[nr] = in_to_reg(val, nr); \
David Hubbard1ea6dd32007-06-24 11:16:15 +0200575 w83627ehf_write_value(data, W83627EHF_REG_IN_##REG(nr), \
Rudolf Marekcf0676f2006-03-23 16:25:22 +0100576 data->in_##reg[nr]); \
577 mutex_unlock(&data->update_lock); \
578 return count; \
579}
580
581store_in_reg(MIN, min)
582store_in_reg(MAX, max)
583
Jean Delvarea4589db2006-03-23 16:30:29 +0100584static ssize_t show_alarm(struct device *dev, struct device_attribute *attr, char *buf)
585{
586 struct w83627ehf_data *data = w83627ehf_update_device(dev);
587 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
588 int nr = sensor_attr->index;
589 return sprintf(buf, "%u\n", (data->alarms >> nr) & 0x01);
590}
591
Rudolf Marekcf0676f2006-03-23 16:25:22 +0100592static struct sensor_device_attribute sda_in_input[] = {
593 SENSOR_ATTR(in0_input, S_IRUGO, show_in, NULL, 0),
594 SENSOR_ATTR(in1_input, S_IRUGO, show_in, NULL, 1),
595 SENSOR_ATTR(in2_input, S_IRUGO, show_in, NULL, 2),
596 SENSOR_ATTR(in3_input, S_IRUGO, show_in, NULL, 3),
597 SENSOR_ATTR(in4_input, S_IRUGO, show_in, NULL, 4),
598 SENSOR_ATTR(in5_input, S_IRUGO, show_in, NULL, 5),
599 SENSOR_ATTR(in6_input, S_IRUGO, show_in, NULL, 6),
600 SENSOR_ATTR(in7_input, S_IRUGO, show_in, NULL, 7),
601 SENSOR_ATTR(in8_input, S_IRUGO, show_in, NULL, 8),
602 SENSOR_ATTR(in9_input, S_IRUGO, show_in, NULL, 9),
603};
604
Jean Delvarea4589db2006-03-23 16:30:29 +0100605static struct sensor_device_attribute sda_in_alarm[] = {
606 SENSOR_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 0),
607 SENSOR_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 1),
608 SENSOR_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 2),
609 SENSOR_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 3),
610 SENSOR_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 8),
611 SENSOR_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 21),
612 SENSOR_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 20),
613 SENSOR_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 16),
614 SENSOR_ATTR(in8_alarm, S_IRUGO, show_alarm, NULL, 17),
615 SENSOR_ATTR(in9_alarm, S_IRUGO, show_alarm, NULL, 19),
616};
617
Rudolf Marekcf0676f2006-03-23 16:25:22 +0100618static struct sensor_device_attribute sda_in_min[] = {
619 SENSOR_ATTR(in0_min, S_IWUSR | S_IRUGO, show_in_min, store_in_min, 0),
620 SENSOR_ATTR(in1_min, S_IWUSR | S_IRUGO, show_in_min, store_in_min, 1),
621 SENSOR_ATTR(in2_min, S_IWUSR | S_IRUGO, show_in_min, store_in_min, 2),
622 SENSOR_ATTR(in3_min, S_IWUSR | S_IRUGO, show_in_min, store_in_min, 3),
623 SENSOR_ATTR(in4_min, S_IWUSR | S_IRUGO, show_in_min, store_in_min, 4),
624 SENSOR_ATTR(in5_min, S_IWUSR | S_IRUGO, show_in_min, store_in_min, 5),
625 SENSOR_ATTR(in6_min, S_IWUSR | S_IRUGO, show_in_min, store_in_min, 6),
626 SENSOR_ATTR(in7_min, S_IWUSR | S_IRUGO, show_in_min, store_in_min, 7),
627 SENSOR_ATTR(in8_min, S_IWUSR | S_IRUGO, show_in_min, store_in_min, 8),
628 SENSOR_ATTR(in9_min, S_IWUSR | S_IRUGO, show_in_min, store_in_min, 9),
629};
630
631static struct sensor_device_attribute sda_in_max[] = {
632 SENSOR_ATTR(in0_max, S_IWUSR | S_IRUGO, show_in_max, store_in_max, 0),
633 SENSOR_ATTR(in1_max, S_IWUSR | S_IRUGO, show_in_max, store_in_max, 1),
634 SENSOR_ATTR(in2_max, S_IWUSR | S_IRUGO, show_in_max, store_in_max, 2),
635 SENSOR_ATTR(in3_max, S_IWUSR | S_IRUGO, show_in_max, store_in_max, 3),
636 SENSOR_ATTR(in4_max, S_IWUSR | S_IRUGO, show_in_max, store_in_max, 4),
637 SENSOR_ATTR(in5_max, S_IWUSR | S_IRUGO, show_in_max, store_in_max, 5),
638 SENSOR_ATTR(in6_max, S_IWUSR | S_IRUGO, show_in_max, store_in_max, 6),
639 SENSOR_ATTR(in7_max, S_IWUSR | S_IRUGO, show_in_max, store_in_max, 7),
640 SENSOR_ATTR(in8_max, S_IWUSR | S_IRUGO, show_in_max, store_in_max, 8),
641 SENSOR_ATTR(in9_max, S_IWUSR | S_IRUGO, show_in_max, store_in_max, 9),
642};
643
Jean Delvare08e7e272005-04-25 22:43:25 +0200644#define show_fan_reg(reg) \
645static ssize_t \
Yuan Mu412fec82006-02-05 23:24:16 +0100646show_##reg(struct device *dev, struct device_attribute *attr, \
647 char *buf) \
Jean Delvare08e7e272005-04-25 22:43:25 +0200648{ \
649 struct w83627ehf_data *data = w83627ehf_update_device(dev); \
Yuan Mu412fec82006-02-05 23:24:16 +0100650 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
651 int nr = sensor_attr->index; \
Jean Delvare08e7e272005-04-25 22:43:25 +0200652 return sprintf(buf, "%d\n", \
653 fan_from_reg(data->reg[nr], \
654 div_from_reg(data->fan_div[nr]))); \
655}
656show_fan_reg(fan);
657show_fan_reg(fan_min);
658
659static ssize_t
Yuan Mu412fec82006-02-05 23:24:16 +0100660show_fan_div(struct device *dev, struct device_attribute *attr,
661 char *buf)
Jean Delvare08e7e272005-04-25 22:43:25 +0200662{
663 struct w83627ehf_data *data = w83627ehf_update_device(dev);
Yuan Mu412fec82006-02-05 23:24:16 +0100664 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
665 int nr = sensor_attr->index;
666 return sprintf(buf, "%u\n", div_from_reg(data->fan_div[nr]));
Jean Delvare08e7e272005-04-25 22:43:25 +0200667}
668
669static ssize_t
Yuan Mu412fec82006-02-05 23:24:16 +0100670store_fan_min(struct device *dev, struct device_attribute *attr,
671 const char *buf, size_t count)
Jean Delvare08e7e272005-04-25 22:43:25 +0200672{
David Hubbard1ea6dd32007-06-24 11:16:15 +0200673 struct w83627ehf_data *data = dev_get_drvdata(dev);
Yuan Mu412fec82006-02-05 23:24:16 +0100674 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
675 int nr = sensor_attr->index;
Jean Delvare08e7e272005-04-25 22:43:25 +0200676 unsigned int val = simple_strtoul(buf, NULL, 10);
677 unsigned int reg;
678 u8 new_div;
679
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100680 mutex_lock(&data->update_lock);
Jean Delvare08e7e272005-04-25 22:43:25 +0200681 if (!val) {
682 /* No min limit, alarm disabled */
683 data->fan_min[nr] = 255;
684 new_div = data->fan_div[nr]; /* No change */
685 dev_info(dev, "fan%u low limit and alarm disabled\n", nr + 1);
686 } else if ((reg = 1350000U / val) >= 128 * 255) {
687 /* Speed below this value cannot possibly be represented,
688 even with the highest divider (128) */
689 data->fan_min[nr] = 254;
690 new_div = 7; /* 128 == (1 << 7) */
691 dev_warn(dev, "fan%u low limit %u below minimum %u, set to "
692 "minimum\n", nr + 1, val, fan_from_reg(254, 128));
693 } else if (!reg) {
694 /* Speed above this value cannot possibly be represented,
695 even with the lowest divider (1) */
696 data->fan_min[nr] = 1;
697 new_div = 0; /* 1 == (1 << 0) */
698 dev_warn(dev, "fan%u low limit %u above maximum %u, set to "
Jean Delvareb9110b12005-05-02 23:08:22 +0200699 "maximum\n", nr + 1, val, fan_from_reg(1, 1));
Jean Delvare08e7e272005-04-25 22:43:25 +0200700 } else {
701 /* Automatically pick the best divider, i.e. the one such
702 that the min limit will correspond to a register value
703 in the 96..192 range */
704 new_div = 0;
705 while (reg > 192 && new_div < 7) {
706 reg >>= 1;
707 new_div++;
708 }
709 data->fan_min[nr] = reg;
710 }
711
712 /* Write both the fan clock divider (if it changed) and the new
713 fan min (unconditionally) */
714 if (new_div != data->fan_div[nr]) {
Jean Delvare158ce072007-06-17 16:09:12 +0200715 /* Preserve the fan speed reading */
716 if (data->fan[nr] != 0xff) {
717 if (new_div > data->fan_div[nr])
718 data->fan[nr] >>= new_div - data->fan_div[nr];
719 else if (data->fan[nr] & 0x80)
720 data->fan[nr] = 0xff;
721 else
722 data->fan[nr] <<= data->fan_div[nr] - new_div;
723 }
Jean Delvare08e7e272005-04-25 22:43:25 +0200724
725 dev_dbg(dev, "fan%u clock divider changed from %u to %u\n",
726 nr + 1, div_from_reg(data->fan_div[nr]),
727 div_from_reg(new_div));
728 data->fan_div[nr] = new_div;
David Hubbard1ea6dd32007-06-24 11:16:15 +0200729 w83627ehf_write_fan_div(data, nr);
Jean Delvare08e7e272005-04-25 22:43:25 +0200730 }
David Hubbard1ea6dd32007-06-24 11:16:15 +0200731 w83627ehf_write_value(data, W83627EHF_REG_FAN_MIN[nr],
Jean Delvare08e7e272005-04-25 22:43:25 +0200732 data->fan_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100733 mutex_unlock(&data->update_lock);
Jean Delvare08e7e272005-04-25 22:43:25 +0200734
735 return count;
736}
737
Yuan Mu412fec82006-02-05 23:24:16 +0100738static struct sensor_device_attribute sda_fan_input[] = {
739 SENSOR_ATTR(fan1_input, S_IRUGO, show_fan, NULL, 0),
740 SENSOR_ATTR(fan2_input, S_IRUGO, show_fan, NULL, 1),
741 SENSOR_ATTR(fan3_input, S_IRUGO, show_fan, NULL, 2),
742 SENSOR_ATTR(fan4_input, S_IRUGO, show_fan, NULL, 3),
743 SENSOR_ATTR(fan5_input, S_IRUGO, show_fan, NULL, 4),
744};
Jean Delvare08e7e272005-04-25 22:43:25 +0200745
Jean Delvarea4589db2006-03-23 16:30:29 +0100746static struct sensor_device_attribute sda_fan_alarm[] = {
747 SENSOR_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 6),
748 SENSOR_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 7),
749 SENSOR_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 11),
750 SENSOR_ATTR(fan4_alarm, S_IRUGO, show_alarm, NULL, 10),
751 SENSOR_ATTR(fan5_alarm, S_IRUGO, show_alarm, NULL, 23),
752};
753
Yuan Mu412fec82006-02-05 23:24:16 +0100754static struct sensor_device_attribute sda_fan_min[] = {
755 SENSOR_ATTR(fan1_min, S_IWUSR | S_IRUGO, show_fan_min,
756 store_fan_min, 0),
757 SENSOR_ATTR(fan2_min, S_IWUSR | S_IRUGO, show_fan_min,
758 store_fan_min, 1),
759 SENSOR_ATTR(fan3_min, S_IWUSR | S_IRUGO, show_fan_min,
760 store_fan_min, 2),
761 SENSOR_ATTR(fan4_min, S_IWUSR | S_IRUGO, show_fan_min,
762 store_fan_min, 3),
763 SENSOR_ATTR(fan5_min, S_IWUSR | S_IRUGO, show_fan_min,
764 store_fan_min, 4),
765};
Jean Delvare08e7e272005-04-25 22:43:25 +0200766
Yuan Mu412fec82006-02-05 23:24:16 +0100767static struct sensor_device_attribute sda_fan_div[] = {
768 SENSOR_ATTR(fan1_div, S_IRUGO, show_fan_div, NULL, 0),
769 SENSOR_ATTR(fan2_div, S_IRUGO, show_fan_div, NULL, 1),
770 SENSOR_ATTR(fan3_div, S_IRUGO, show_fan_div, NULL, 2),
771 SENSOR_ATTR(fan4_div, S_IRUGO, show_fan_div, NULL, 3),
772 SENSOR_ATTR(fan5_div, S_IRUGO, show_fan_div, NULL, 4),
773};
Jean Delvare08e7e272005-04-25 22:43:25 +0200774
Jean Delvare08e7e272005-04-25 22:43:25 +0200775#define show_temp1_reg(reg) \
776static ssize_t \
Greg Kroah-Hartman6f637a62005-06-21 21:01:59 -0700777show_##reg(struct device *dev, struct device_attribute *attr, \
778 char *buf) \
Jean Delvare08e7e272005-04-25 22:43:25 +0200779{ \
780 struct w83627ehf_data *data = w83627ehf_update_device(dev); \
781 return sprintf(buf, "%d\n", temp1_from_reg(data->reg)); \
782}
783show_temp1_reg(temp1);
784show_temp1_reg(temp1_max);
785show_temp1_reg(temp1_max_hyst);
786
787#define store_temp1_reg(REG, reg) \
788static ssize_t \
Greg Kroah-Hartman6f637a62005-06-21 21:01:59 -0700789store_temp1_##reg(struct device *dev, struct device_attribute *attr, \
790 const char *buf, size_t count) \
Jean Delvare08e7e272005-04-25 22:43:25 +0200791{ \
David Hubbard1ea6dd32007-06-24 11:16:15 +0200792 struct w83627ehf_data *data = dev_get_drvdata(dev); \
Jean Delvare08e7e272005-04-25 22:43:25 +0200793 u32 val = simple_strtoul(buf, NULL, 10); \
794 \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100795 mutex_lock(&data->update_lock); \
Rudolf Marek08c79952006-07-05 18:14:31 +0200796 data->temp1_##reg = temp1_to_reg(val, -128000, 127000); \
David Hubbard1ea6dd32007-06-24 11:16:15 +0200797 w83627ehf_write_value(data, W83627EHF_REG_TEMP1_##REG, \
Jean Delvare08e7e272005-04-25 22:43:25 +0200798 data->temp1_##reg); \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100799 mutex_unlock(&data->update_lock); \
Jean Delvare08e7e272005-04-25 22:43:25 +0200800 return count; \
801}
802store_temp1_reg(OVER, max);
803store_temp1_reg(HYST, max_hyst);
804
Jean Delvare08e7e272005-04-25 22:43:25 +0200805#define show_temp_reg(reg) \
806static ssize_t \
Yuan Mu412fec82006-02-05 23:24:16 +0100807show_##reg(struct device *dev, struct device_attribute *attr, \
808 char *buf) \
Jean Delvare08e7e272005-04-25 22:43:25 +0200809{ \
810 struct w83627ehf_data *data = w83627ehf_update_device(dev); \
Yuan Mu412fec82006-02-05 23:24:16 +0100811 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
812 int nr = sensor_attr->index; \
Jean Delvare08e7e272005-04-25 22:43:25 +0200813 return sprintf(buf, "%d\n", \
814 LM75_TEMP_FROM_REG(data->reg[nr])); \
815}
816show_temp_reg(temp);
817show_temp_reg(temp_max);
818show_temp_reg(temp_max_hyst);
819
820#define store_temp_reg(REG, reg) \
821static ssize_t \
Yuan Mu412fec82006-02-05 23:24:16 +0100822store_##reg(struct device *dev, struct device_attribute *attr, \
823 const char *buf, size_t count) \
Jean Delvare08e7e272005-04-25 22:43:25 +0200824{ \
David Hubbard1ea6dd32007-06-24 11:16:15 +0200825 struct w83627ehf_data *data = dev_get_drvdata(dev); \
Yuan Mu412fec82006-02-05 23:24:16 +0100826 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
827 int nr = sensor_attr->index; \
Jean Delvare08e7e272005-04-25 22:43:25 +0200828 u32 val = simple_strtoul(buf, NULL, 10); \
829 \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100830 mutex_lock(&data->update_lock); \
Jean Delvare08e7e272005-04-25 22:43:25 +0200831 data->reg[nr] = LM75_TEMP_TO_REG(val); \
David Hubbard1ea6dd32007-06-24 11:16:15 +0200832 w83627ehf_write_value(data, W83627EHF_REG_TEMP_##REG[nr], \
Jean Delvare08e7e272005-04-25 22:43:25 +0200833 data->reg[nr]); \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100834 mutex_unlock(&data->update_lock); \
Jean Delvare08e7e272005-04-25 22:43:25 +0200835 return count; \
836}
837store_temp_reg(OVER, temp_max);
838store_temp_reg(HYST, temp_max_hyst);
839
Yuan Mu412fec82006-02-05 23:24:16 +0100840static struct sensor_device_attribute sda_temp[] = {
841 SENSOR_ATTR(temp1_input, S_IRUGO, show_temp1, NULL, 0),
842 SENSOR_ATTR(temp2_input, S_IRUGO, show_temp, NULL, 0),
843 SENSOR_ATTR(temp3_input, S_IRUGO, show_temp, NULL, 1),
844 SENSOR_ATTR(temp1_max, S_IRUGO | S_IWUSR, show_temp1_max,
845 store_temp1_max, 0),
846 SENSOR_ATTR(temp2_max, S_IRUGO | S_IWUSR, show_temp_max,
847 store_temp_max, 0),
848 SENSOR_ATTR(temp3_max, S_IRUGO | S_IWUSR, show_temp_max,
849 store_temp_max, 1),
850 SENSOR_ATTR(temp1_max_hyst, S_IRUGO | S_IWUSR, show_temp1_max_hyst,
851 store_temp1_max_hyst, 0),
852 SENSOR_ATTR(temp2_max_hyst, S_IRUGO | S_IWUSR, show_temp_max_hyst,
853 store_temp_max_hyst, 0),
854 SENSOR_ATTR(temp3_max_hyst, S_IRUGO | S_IWUSR, show_temp_max_hyst,
855 store_temp_max_hyst, 1),
Jean Delvarea4589db2006-03-23 16:30:29 +0100856 SENSOR_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 4),
857 SENSOR_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 5),
858 SENSOR_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 13),
Yuan Mu412fec82006-02-05 23:24:16 +0100859};
Jean Delvare08e7e272005-04-25 22:43:25 +0200860
Rudolf Marek08c79952006-07-05 18:14:31 +0200861#define show_pwm_reg(reg) \
862static ssize_t show_##reg (struct device *dev, struct device_attribute *attr, \
863 char *buf) \
864{ \
865 struct w83627ehf_data *data = w83627ehf_update_device(dev); \
866 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
867 int nr = sensor_attr->index; \
868 return sprintf(buf, "%d\n", data->reg[nr]); \
869}
870
871show_pwm_reg(pwm_mode)
872show_pwm_reg(pwm_enable)
873show_pwm_reg(pwm)
874
875static ssize_t
876store_pwm_mode(struct device *dev, struct device_attribute *attr,
877 const char *buf, size_t count)
878{
David Hubbard1ea6dd32007-06-24 11:16:15 +0200879 struct w83627ehf_data *data = dev_get_drvdata(dev);
Rudolf Marek08c79952006-07-05 18:14:31 +0200880 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
881 int nr = sensor_attr->index;
882 u32 val = simple_strtoul(buf, NULL, 10);
883 u16 reg;
884
885 if (val > 1)
886 return -EINVAL;
887 mutex_lock(&data->update_lock);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200888 reg = w83627ehf_read_value(data, W83627EHF_REG_PWM_ENABLE[nr]);
Rudolf Marek08c79952006-07-05 18:14:31 +0200889 data->pwm_mode[nr] = val;
890 reg &= ~(1 << W83627EHF_PWM_MODE_SHIFT[nr]);
891 if (!val)
892 reg |= 1 << W83627EHF_PWM_MODE_SHIFT[nr];
David Hubbard1ea6dd32007-06-24 11:16:15 +0200893 w83627ehf_write_value(data, W83627EHF_REG_PWM_ENABLE[nr], reg);
Rudolf Marek08c79952006-07-05 18:14:31 +0200894 mutex_unlock(&data->update_lock);
895 return count;
896}
897
898static ssize_t
899store_pwm(struct device *dev, struct device_attribute *attr,
900 const char *buf, size_t count)
901{
David Hubbard1ea6dd32007-06-24 11:16:15 +0200902 struct w83627ehf_data *data = dev_get_drvdata(dev);
Rudolf Marek08c79952006-07-05 18:14:31 +0200903 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
904 int nr = sensor_attr->index;
905 u32 val = SENSORS_LIMIT(simple_strtoul(buf, NULL, 10), 0, 255);
906
907 mutex_lock(&data->update_lock);
908 data->pwm[nr] = val;
David Hubbard1ea6dd32007-06-24 11:16:15 +0200909 w83627ehf_write_value(data, W83627EHF_REG_PWM[nr], val);
Rudolf Marek08c79952006-07-05 18:14:31 +0200910 mutex_unlock(&data->update_lock);
911 return count;
912}
913
914static ssize_t
915store_pwm_enable(struct device *dev, struct device_attribute *attr,
916 const char *buf, size_t count)
917{
David Hubbard1ea6dd32007-06-24 11:16:15 +0200918 struct w83627ehf_data *data = dev_get_drvdata(dev);
Rudolf Marek08c79952006-07-05 18:14:31 +0200919 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
920 int nr = sensor_attr->index;
921 u32 val = simple_strtoul(buf, NULL, 10);
922 u16 reg;
923
924 if (!val || (val > 2)) /* only modes 1 and 2 are supported */
925 return -EINVAL;
926 mutex_lock(&data->update_lock);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200927 reg = w83627ehf_read_value(data, W83627EHF_REG_PWM_ENABLE[nr]);
Rudolf Marek08c79952006-07-05 18:14:31 +0200928 data->pwm_enable[nr] = val;
929 reg &= ~(0x03 << W83627EHF_PWM_ENABLE_SHIFT[nr]);
930 reg |= (val - 1) << W83627EHF_PWM_ENABLE_SHIFT[nr];
David Hubbard1ea6dd32007-06-24 11:16:15 +0200931 w83627ehf_write_value(data, W83627EHF_REG_PWM_ENABLE[nr], reg);
Rudolf Marek08c79952006-07-05 18:14:31 +0200932 mutex_unlock(&data->update_lock);
933 return count;
934}
935
936
937#define show_tol_temp(reg) \
938static ssize_t show_##reg(struct device *dev, struct device_attribute *attr, \
939 char *buf) \
940{ \
941 struct w83627ehf_data *data = w83627ehf_update_device(dev); \
942 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
943 int nr = sensor_attr->index; \
944 return sprintf(buf, "%d\n", temp1_from_reg(data->reg[nr])); \
945}
946
947show_tol_temp(tolerance)
948show_tol_temp(target_temp)
949
950static ssize_t
951store_target_temp(struct device *dev, struct device_attribute *attr,
952 const char *buf, size_t count)
953{
David Hubbard1ea6dd32007-06-24 11:16:15 +0200954 struct w83627ehf_data *data = dev_get_drvdata(dev);
Rudolf Marek08c79952006-07-05 18:14:31 +0200955 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
956 int nr = sensor_attr->index;
957 u8 val = temp1_to_reg(simple_strtoul(buf, NULL, 10), 0, 127000);
958
959 mutex_lock(&data->update_lock);
960 data->target_temp[nr] = val;
David Hubbard1ea6dd32007-06-24 11:16:15 +0200961 w83627ehf_write_value(data, W83627EHF_REG_TARGET[nr], val);
Rudolf Marek08c79952006-07-05 18:14:31 +0200962 mutex_unlock(&data->update_lock);
963 return count;
964}
965
966static ssize_t
967store_tolerance(struct device *dev, struct device_attribute *attr,
968 const char *buf, size_t count)
969{
David Hubbard1ea6dd32007-06-24 11:16:15 +0200970 struct w83627ehf_data *data = dev_get_drvdata(dev);
Rudolf Marek08c79952006-07-05 18:14:31 +0200971 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
972 int nr = sensor_attr->index;
973 u16 reg;
974 /* Limit the temp to 0C - 15C */
975 u8 val = temp1_to_reg(simple_strtoul(buf, NULL, 10), 0, 15000);
976
977 mutex_lock(&data->update_lock);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200978 reg = w83627ehf_read_value(data, W83627EHF_REG_TOLERANCE[nr]);
Rudolf Marek08c79952006-07-05 18:14:31 +0200979 data->tolerance[nr] = val;
980 if (nr == 1)
981 reg = (reg & 0x0f) | (val << 4);
982 else
983 reg = (reg & 0xf0) | val;
David Hubbard1ea6dd32007-06-24 11:16:15 +0200984 w83627ehf_write_value(data, W83627EHF_REG_TOLERANCE[nr], reg);
Rudolf Marek08c79952006-07-05 18:14:31 +0200985 mutex_unlock(&data->update_lock);
986 return count;
987}
988
989static struct sensor_device_attribute sda_pwm[] = {
990 SENSOR_ATTR(pwm1, S_IWUSR | S_IRUGO, show_pwm, store_pwm, 0),
991 SENSOR_ATTR(pwm2, S_IWUSR | S_IRUGO, show_pwm, store_pwm, 1),
992 SENSOR_ATTR(pwm3, S_IWUSR | S_IRUGO, show_pwm, store_pwm, 2),
993 SENSOR_ATTR(pwm4, S_IWUSR | S_IRUGO, show_pwm, store_pwm, 3),
994};
995
996static struct sensor_device_attribute sda_pwm_mode[] = {
997 SENSOR_ATTR(pwm1_mode, S_IWUSR | S_IRUGO, show_pwm_mode,
998 store_pwm_mode, 0),
999 SENSOR_ATTR(pwm2_mode, S_IWUSR | S_IRUGO, show_pwm_mode,
1000 store_pwm_mode, 1),
1001 SENSOR_ATTR(pwm3_mode, S_IWUSR | S_IRUGO, show_pwm_mode,
1002 store_pwm_mode, 2),
1003 SENSOR_ATTR(pwm4_mode, S_IWUSR | S_IRUGO, show_pwm_mode,
1004 store_pwm_mode, 3),
1005};
1006
1007static struct sensor_device_attribute sda_pwm_enable[] = {
1008 SENSOR_ATTR(pwm1_enable, S_IWUSR | S_IRUGO, show_pwm_enable,
1009 store_pwm_enable, 0),
1010 SENSOR_ATTR(pwm2_enable, S_IWUSR | S_IRUGO, show_pwm_enable,
1011 store_pwm_enable, 1),
1012 SENSOR_ATTR(pwm3_enable, S_IWUSR | S_IRUGO, show_pwm_enable,
1013 store_pwm_enable, 2),
1014 SENSOR_ATTR(pwm4_enable, S_IWUSR | S_IRUGO, show_pwm_enable,
1015 store_pwm_enable, 3),
1016};
1017
1018static struct sensor_device_attribute sda_target_temp[] = {
1019 SENSOR_ATTR(pwm1_target, S_IWUSR | S_IRUGO, show_target_temp,
1020 store_target_temp, 0),
1021 SENSOR_ATTR(pwm2_target, S_IWUSR | S_IRUGO, show_target_temp,
1022 store_target_temp, 1),
1023 SENSOR_ATTR(pwm3_target, S_IWUSR | S_IRUGO, show_target_temp,
1024 store_target_temp, 2),
1025 SENSOR_ATTR(pwm4_target, S_IWUSR | S_IRUGO, show_target_temp,
1026 store_target_temp, 3),
1027};
1028
1029static struct sensor_device_attribute sda_tolerance[] = {
1030 SENSOR_ATTR(pwm1_tolerance, S_IWUSR | S_IRUGO, show_tolerance,
1031 store_tolerance, 0),
1032 SENSOR_ATTR(pwm2_tolerance, S_IWUSR | S_IRUGO, show_tolerance,
1033 store_tolerance, 1),
1034 SENSOR_ATTR(pwm3_tolerance, S_IWUSR | S_IRUGO, show_tolerance,
1035 store_tolerance, 2),
1036 SENSOR_ATTR(pwm4_tolerance, S_IWUSR | S_IRUGO, show_tolerance,
1037 store_tolerance, 3),
1038};
1039
Rudolf Marek08c79952006-07-05 18:14:31 +02001040/* Smart Fan registers */
1041
1042#define fan_functions(reg, REG) \
1043static ssize_t show_##reg(struct device *dev, struct device_attribute *attr, \
1044 char *buf) \
1045{ \
1046 struct w83627ehf_data *data = w83627ehf_update_device(dev); \
1047 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
1048 int nr = sensor_attr->index; \
1049 return sprintf(buf, "%d\n", data->reg[nr]); \
1050}\
1051static ssize_t \
1052store_##reg(struct device *dev, struct device_attribute *attr, \
1053 const char *buf, size_t count) \
1054{\
David Hubbard1ea6dd32007-06-24 11:16:15 +02001055 struct w83627ehf_data *data = dev_get_drvdata(dev); \
Rudolf Marek08c79952006-07-05 18:14:31 +02001056 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
1057 int nr = sensor_attr->index; \
1058 u32 val = SENSORS_LIMIT(simple_strtoul(buf, NULL, 10), 1, 255); \
1059 mutex_lock(&data->update_lock); \
1060 data->reg[nr] = val; \
David Hubbard1ea6dd32007-06-24 11:16:15 +02001061 w83627ehf_write_value(data, W83627EHF_REG_##REG[nr], val); \
Rudolf Marek08c79952006-07-05 18:14:31 +02001062 mutex_unlock(&data->update_lock); \
1063 return count; \
1064}
1065
1066fan_functions(fan_min_output, FAN_MIN_OUTPUT)
1067
1068#define fan_time_functions(reg, REG) \
1069static ssize_t show_##reg(struct device *dev, struct device_attribute *attr, \
1070 char *buf) \
1071{ \
1072 struct w83627ehf_data *data = w83627ehf_update_device(dev); \
1073 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
1074 int nr = sensor_attr->index; \
1075 return sprintf(buf, "%d\n", \
1076 step_time_from_reg(data->reg[nr], data->pwm_mode[nr])); \
1077} \
1078\
1079static ssize_t \
1080store_##reg(struct device *dev, struct device_attribute *attr, \
1081 const char *buf, size_t count) \
1082{ \
David Hubbard1ea6dd32007-06-24 11:16:15 +02001083 struct w83627ehf_data *data = dev_get_drvdata(dev); \
Rudolf Marek08c79952006-07-05 18:14:31 +02001084 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
1085 int nr = sensor_attr->index; \
1086 u8 val = step_time_to_reg(simple_strtoul(buf, NULL, 10), \
1087 data->pwm_mode[nr]); \
1088 mutex_lock(&data->update_lock); \
1089 data->reg[nr] = val; \
David Hubbard1ea6dd32007-06-24 11:16:15 +02001090 w83627ehf_write_value(data, W83627EHF_REG_##REG[nr], val); \
Rudolf Marek08c79952006-07-05 18:14:31 +02001091 mutex_unlock(&data->update_lock); \
1092 return count; \
1093} \
1094
1095fan_time_functions(fan_stop_time, FAN_STOP_TIME)
1096
David Hubbard1ea6dd32007-06-24 11:16:15 +02001097static ssize_t show_name(struct device *dev, struct device_attribute *attr,
1098 char *buf)
1099{
1100 struct w83627ehf_data *data = dev_get_drvdata(dev);
1101
1102 return sprintf(buf, "%s\n", data->name);
1103}
1104static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
Rudolf Marek08c79952006-07-05 18:14:31 +02001105
1106static struct sensor_device_attribute sda_sf3_arrays_fan4[] = {
1107 SENSOR_ATTR(pwm4_stop_time, S_IWUSR | S_IRUGO, show_fan_stop_time,
1108 store_fan_stop_time, 3),
1109 SENSOR_ATTR(pwm4_min_output, S_IWUSR | S_IRUGO, show_fan_min_output,
1110 store_fan_min_output, 3),
1111};
1112
1113static struct sensor_device_attribute sda_sf3_arrays[] = {
1114 SENSOR_ATTR(pwm1_stop_time, S_IWUSR | S_IRUGO, show_fan_stop_time,
1115 store_fan_stop_time, 0),
1116 SENSOR_ATTR(pwm2_stop_time, S_IWUSR | S_IRUGO, show_fan_stop_time,
1117 store_fan_stop_time, 1),
1118 SENSOR_ATTR(pwm3_stop_time, S_IWUSR | S_IRUGO, show_fan_stop_time,
1119 store_fan_stop_time, 2),
1120 SENSOR_ATTR(pwm1_min_output, S_IWUSR | S_IRUGO, show_fan_min_output,
1121 store_fan_min_output, 0),
1122 SENSOR_ATTR(pwm2_min_output, S_IWUSR | S_IRUGO, show_fan_min_output,
1123 store_fan_min_output, 1),
1124 SENSOR_ATTR(pwm3_min_output, S_IWUSR | S_IRUGO, show_fan_min_output,
1125 store_fan_min_output, 2),
1126};
1127
Jean Delvare08e7e272005-04-25 22:43:25 +02001128/*
David Hubbard1ea6dd32007-06-24 11:16:15 +02001129 * Driver and device management
Jean Delvare08e7e272005-04-25 22:43:25 +02001130 */
1131
David Hubbardc18beb52006-09-24 21:04:38 +02001132static void w83627ehf_device_remove_files(struct device *dev)
1133{
1134 /* some entries in the following arrays may not have been used in
1135 * device_create_file(), but device_remove_file() will ignore them */
1136 int i;
David Hubbard1ea6dd32007-06-24 11:16:15 +02001137 struct w83627ehf_data *data = dev_get_drvdata(dev);
David Hubbardc18beb52006-09-24 21:04:38 +02001138
1139 for (i = 0; i < ARRAY_SIZE(sda_sf3_arrays); i++)
1140 device_remove_file(dev, &sda_sf3_arrays[i].dev_attr);
1141 for (i = 0; i < ARRAY_SIZE(sda_sf3_arrays_fan4); i++)
1142 device_remove_file(dev, &sda_sf3_arrays_fan4[i].dev_attr);
David Hubbard1ea6dd32007-06-24 11:16:15 +02001143 for (i = 0; i < data->in_num; i++) {
David Hubbardc18beb52006-09-24 21:04:38 +02001144 device_remove_file(dev, &sda_in_input[i].dev_attr);
1145 device_remove_file(dev, &sda_in_alarm[i].dev_attr);
1146 device_remove_file(dev, &sda_in_min[i].dev_attr);
1147 device_remove_file(dev, &sda_in_max[i].dev_attr);
1148 }
1149 for (i = 0; i < 5; i++) {
1150 device_remove_file(dev, &sda_fan_input[i].dev_attr);
1151 device_remove_file(dev, &sda_fan_alarm[i].dev_attr);
1152 device_remove_file(dev, &sda_fan_div[i].dev_attr);
1153 device_remove_file(dev, &sda_fan_min[i].dev_attr);
1154 }
1155 for (i = 0; i < 4; i++) {
1156 device_remove_file(dev, &sda_pwm[i].dev_attr);
1157 device_remove_file(dev, &sda_pwm_mode[i].dev_attr);
1158 device_remove_file(dev, &sda_pwm_enable[i].dev_attr);
1159 device_remove_file(dev, &sda_target_temp[i].dev_attr);
1160 device_remove_file(dev, &sda_tolerance[i].dev_attr);
1161 }
1162 for (i = 0; i < ARRAY_SIZE(sda_temp); i++)
1163 device_remove_file(dev, &sda_temp[i].dev_attr);
David Hubbard1ea6dd32007-06-24 11:16:15 +02001164
1165 device_remove_file(dev, &dev_attr_name);
David Hubbardc18beb52006-09-24 21:04:38 +02001166}
1167
David Hubbard1ea6dd32007-06-24 11:16:15 +02001168/* Get the monitoring functions started */
1169static inline void __devinit w83627ehf_init_device(struct w83627ehf_data *data)
Jean Delvare08e7e272005-04-25 22:43:25 +02001170{
1171 int i;
1172 u8 tmp;
1173
1174 /* Start monitoring is needed */
David Hubbard1ea6dd32007-06-24 11:16:15 +02001175 tmp = w83627ehf_read_value(data, W83627EHF_REG_CONFIG);
Jean Delvare08e7e272005-04-25 22:43:25 +02001176 if (!(tmp & 0x01))
David Hubbard1ea6dd32007-06-24 11:16:15 +02001177 w83627ehf_write_value(data, W83627EHF_REG_CONFIG,
Jean Delvare08e7e272005-04-25 22:43:25 +02001178 tmp | 0x01);
1179
1180 /* Enable temp2 and temp3 if needed */
1181 for (i = 0; i < 2; i++) {
David Hubbard1ea6dd32007-06-24 11:16:15 +02001182 tmp = w83627ehf_read_value(data,
Jean Delvare08e7e272005-04-25 22:43:25 +02001183 W83627EHF_REG_TEMP_CONFIG[i]);
1184 if (tmp & 0x01)
David Hubbard1ea6dd32007-06-24 11:16:15 +02001185 w83627ehf_write_value(data,
Jean Delvare08e7e272005-04-25 22:43:25 +02001186 W83627EHF_REG_TEMP_CONFIG[i],
1187 tmp & 0xfe);
1188 }
1189}
1190
David Hubbard1ea6dd32007-06-24 11:16:15 +02001191static int __devinit w83627ehf_probe(struct platform_device *pdev)
Jean Delvare08e7e272005-04-25 22:43:25 +02001192{
David Hubbard1ea6dd32007-06-24 11:16:15 +02001193 struct device *dev = &pdev->dev;
1194 struct w83627ehf_sio_data *sio_data = dev->platform_data;
Jean Delvare08e7e272005-04-25 22:43:25 +02001195 struct w83627ehf_data *data;
David Hubbard1ea6dd32007-06-24 11:16:15 +02001196 struct resource *res;
Rudolf Marek08c79952006-07-05 18:14:31 +02001197 u8 fan4pin, fan5pin;
Jean Delvare08e7e272005-04-25 22:43:25 +02001198 int i, err = 0;
1199
David Hubbard1ea6dd32007-06-24 11:16:15 +02001200 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
1201 if (!request_region(res->start, IOREGION_LENGTH, DRVNAME)) {
Jean Delvare08e7e272005-04-25 22:43:25 +02001202 err = -EBUSY;
David Hubbard1ea6dd32007-06-24 11:16:15 +02001203 dev_err(dev, "Failed to request region 0x%lx-0x%lx\n",
1204 (unsigned long)res->start,
1205 (unsigned long)res->start + IOREGION_LENGTH - 1);
Jean Delvare08e7e272005-04-25 22:43:25 +02001206 goto exit;
1207 }
1208
Deepak Saxenaba9c2e82005-10-17 23:08:32 +02001209 if (!(data = kzalloc(sizeof(struct w83627ehf_data), GFP_KERNEL))) {
Jean Delvare08e7e272005-04-25 22:43:25 +02001210 err = -ENOMEM;
1211 goto exit_release;
1212 }
Jean Delvare08e7e272005-04-25 22:43:25 +02001213
David Hubbard1ea6dd32007-06-24 11:16:15 +02001214 data->addr = res->start;
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001215 mutex_init(&data->lock);
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001216 mutex_init(&data->update_lock);
David Hubbard1ea6dd32007-06-24 11:16:15 +02001217 data->name = w83627ehf_device_names[sio_data->kind];
1218 platform_set_drvdata(pdev, data);
Jean Delvare08e7e272005-04-25 22:43:25 +02001219
David Hubbard1ea6dd32007-06-24 11:16:15 +02001220 /* 627EHG and 627EHF have 10 voltage inputs; DHG has 9 */
1221 data->in_num = (sio_data->kind == w83627dhg) ? 9 : 10;
Jean Delvare08e7e272005-04-25 22:43:25 +02001222
1223 /* Initialize the chip */
David Hubbard1ea6dd32007-06-24 11:16:15 +02001224 w83627ehf_init_device(data);
Jean Delvare08e7e272005-04-25 22:43:25 +02001225
1226 /* A few vars need to be filled upon startup */
1227 for (i = 0; i < 5; i++)
David Hubbard1ea6dd32007-06-24 11:16:15 +02001228 data->fan_min[i] = w83627ehf_read_value(data,
Jean Delvare08e7e272005-04-25 22:43:25 +02001229 W83627EHF_REG_FAN_MIN[i]);
1230
Rudolf Marek08c79952006-07-05 18:14:31 +02001231 /* fan4 and fan5 share some pins with the GPIO and serial flash */
1232
David Hubbard1ea6dd32007-06-24 11:16:15 +02001233 superio_enter(sio_data->sioreg);
1234 fan5pin = superio_inb(sio_data->sioreg, 0x24) & 0x2;
1235 fan4pin = superio_inb(sio_data->sioreg, 0x29) & 0x6;
1236 superio_exit(sio_data->sioreg);
Rudolf Marek08c79952006-07-05 18:14:31 +02001237
Jean Delvare08e7e272005-04-25 22:43:25 +02001238 /* It looks like fan4 and fan5 pins can be alternatively used
Rudolf Marek14992c72006-10-08 22:02:09 +02001239 as fan on/off switches, but fan5 control is write only :/
1240 We assume that if the serial interface is disabled, designers
1241 connected fan5 as input unless they are emitting log 1, which
1242 is not the default. */
Rudolf Marek08c79952006-07-05 18:14:31 +02001243
Jean Delvare08e7e272005-04-25 22:43:25 +02001244 data->has_fan = 0x07; /* fan1, fan2 and fan3 */
David Hubbard1ea6dd32007-06-24 11:16:15 +02001245 i = w83627ehf_read_value(data, W83627EHF_REG_FANDIV1);
Rudolf Marek08c79952006-07-05 18:14:31 +02001246 if ((i & (1 << 2)) && (!fan4pin))
Jean Delvare08e7e272005-04-25 22:43:25 +02001247 data->has_fan |= (1 << 3);
Rudolf Marek14992c72006-10-08 22:02:09 +02001248 if (!(i & (1 << 1)) && (!fan5pin))
Jean Delvare08e7e272005-04-25 22:43:25 +02001249 data->has_fan |= (1 << 4);
1250
1251 /* Register sysfs hooks */
Rudolf Marek08c79952006-07-05 18:14:31 +02001252 for (i = 0; i < ARRAY_SIZE(sda_sf3_arrays); i++)
David Hubbardc18beb52006-09-24 21:04:38 +02001253 if ((err = device_create_file(dev,
1254 &sda_sf3_arrays[i].dev_attr)))
1255 goto exit_remove;
Rudolf Marek08c79952006-07-05 18:14:31 +02001256
1257 /* if fan4 is enabled create the sf3 files for it */
1258 if (data->has_fan & (1 << 3))
David Hubbardc18beb52006-09-24 21:04:38 +02001259 for (i = 0; i < ARRAY_SIZE(sda_sf3_arrays_fan4); i++) {
1260 if ((err = device_create_file(dev,
1261 &sda_sf3_arrays_fan4[i].dev_attr)))
1262 goto exit_remove;
1263 }
Rudolf Marek08c79952006-07-05 18:14:31 +02001264
David Hubbard1ea6dd32007-06-24 11:16:15 +02001265 for (i = 0; i < data->in_num; i++)
David Hubbardc18beb52006-09-24 21:04:38 +02001266 if ((err = device_create_file(dev, &sda_in_input[i].dev_attr))
1267 || (err = device_create_file(dev,
1268 &sda_in_alarm[i].dev_attr))
1269 || (err = device_create_file(dev,
1270 &sda_in_min[i].dev_attr))
1271 || (err = device_create_file(dev,
1272 &sda_in_max[i].dev_attr)))
1273 goto exit_remove;
Rudolf Marekcf0676f2006-03-23 16:25:22 +01001274
Yuan Mu412fec82006-02-05 23:24:16 +01001275 for (i = 0; i < 5; i++) {
Rudolf Marek08c79952006-07-05 18:14:31 +02001276 if (data->has_fan & (1 << i)) {
David Hubbardc18beb52006-09-24 21:04:38 +02001277 if ((err = device_create_file(dev,
1278 &sda_fan_input[i].dev_attr))
1279 || (err = device_create_file(dev,
1280 &sda_fan_alarm[i].dev_attr))
1281 || (err = device_create_file(dev,
1282 &sda_fan_div[i].dev_attr))
1283 || (err = device_create_file(dev,
1284 &sda_fan_min[i].dev_attr)))
1285 goto exit_remove;
1286 if (i < 4 && /* w83627ehf only has 4 pwm */
1287 ((err = device_create_file(dev,
1288 &sda_pwm[i].dev_attr))
1289 || (err = device_create_file(dev,
1290 &sda_pwm_mode[i].dev_attr))
1291 || (err = device_create_file(dev,
1292 &sda_pwm_enable[i].dev_attr))
1293 || (err = device_create_file(dev,
1294 &sda_target_temp[i].dev_attr))
1295 || (err = device_create_file(dev,
1296 &sda_tolerance[i].dev_attr))))
1297 goto exit_remove;
Rudolf Marek08c79952006-07-05 18:14:31 +02001298 }
Jean Delvare08e7e272005-04-25 22:43:25 +02001299 }
Rudolf Marek08c79952006-07-05 18:14:31 +02001300
Yuan Mu412fec82006-02-05 23:24:16 +01001301 for (i = 0; i < ARRAY_SIZE(sda_temp); i++)
David Hubbardc18beb52006-09-24 21:04:38 +02001302 if ((err = device_create_file(dev, &sda_temp[i].dev_attr)))
1303 goto exit_remove;
1304
David Hubbard1ea6dd32007-06-24 11:16:15 +02001305 err = device_create_file(dev, &dev_attr_name);
1306 if (err)
1307 goto exit_remove;
1308
David Hubbardc18beb52006-09-24 21:04:38 +02001309 data->class_dev = hwmon_device_register(dev);
1310 if (IS_ERR(data->class_dev)) {
1311 err = PTR_ERR(data->class_dev);
1312 goto exit_remove;
1313 }
Jean Delvare08e7e272005-04-25 22:43:25 +02001314
1315 return 0;
1316
David Hubbardc18beb52006-09-24 21:04:38 +02001317exit_remove:
1318 w83627ehf_device_remove_files(dev);
Jean Delvare08e7e272005-04-25 22:43:25 +02001319 kfree(data);
David Hubbard1ea6dd32007-06-24 11:16:15 +02001320 platform_set_drvdata(pdev, NULL);
Jean Delvare08e7e272005-04-25 22:43:25 +02001321exit_release:
David Hubbard1ea6dd32007-06-24 11:16:15 +02001322 release_region(res->start, IOREGION_LENGTH);
Jean Delvare08e7e272005-04-25 22:43:25 +02001323exit:
1324 return err;
1325}
1326
David Hubbard1ea6dd32007-06-24 11:16:15 +02001327static int __devexit w83627ehf_remove(struct platform_device *pdev)
Jean Delvare08e7e272005-04-25 22:43:25 +02001328{
David Hubbard1ea6dd32007-06-24 11:16:15 +02001329 struct w83627ehf_data *data = platform_get_drvdata(pdev);
Jean Delvare08e7e272005-04-25 22:43:25 +02001330
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001331 hwmon_device_unregister(data->class_dev);
David Hubbard1ea6dd32007-06-24 11:16:15 +02001332 w83627ehf_device_remove_files(&pdev->dev);
1333 release_region(data->addr, IOREGION_LENGTH);
1334 platform_set_drvdata(pdev, NULL);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001335 kfree(data);
Jean Delvare08e7e272005-04-25 22:43:25 +02001336
1337 return 0;
1338}
1339
David Hubbard1ea6dd32007-06-24 11:16:15 +02001340static struct platform_driver w83627ehf_driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +01001341 .driver = {
Jean Delvare87218842006-09-03 22:36:14 +02001342 .owner = THIS_MODULE,
David Hubbard1ea6dd32007-06-24 11:16:15 +02001343 .name = DRVNAME,
Laurent Riffardcdaf7932005-11-26 20:37:41 +01001344 },
David Hubbard1ea6dd32007-06-24 11:16:15 +02001345 .probe = w83627ehf_probe,
1346 .remove = __devexit_p(w83627ehf_remove),
Jean Delvare08e7e272005-04-25 22:43:25 +02001347};
1348
David Hubbard1ea6dd32007-06-24 11:16:15 +02001349/* w83627ehf_find() looks for a '627 in the Super-I/O config space */
1350static int __init w83627ehf_find(int sioaddr, unsigned short *addr,
1351 struct w83627ehf_sio_data *sio_data)
Jean Delvare08e7e272005-04-25 22:43:25 +02001352{
David Hubbard1ea6dd32007-06-24 11:16:15 +02001353 static const char __initdata sio_name_W83627EHF[] = "W83627EHF";
1354 static const char __initdata sio_name_W83627EHG[] = "W83627EHG";
1355 static const char __initdata sio_name_W83627DHG[] = "W83627DHG";
1356
Jean Delvare08e7e272005-04-25 22:43:25 +02001357 u16 val;
David Hubbard1ea6dd32007-06-24 11:16:15 +02001358 const char *sio_name;
Jean Delvare08e7e272005-04-25 22:43:25 +02001359
David Hubbard1ea6dd32007-06-24 11:16:15 +02001360 superio_enter(sioaddr);
Jean Delvare08e7e272005-04-25 22:43:25 +02001361
David Hubbard1ea6dd32007-06-24 11:16:15 +02001362 val = (superio_inb(sioaddr, SIO_REG_DEVID) << 8)
1363 | superio_inb(sioaddr, SIO_REG_DEVID + 1);
David Hubbard657c93b2007-02-14 21:15:04 +01001364 switch (val & SIO_ID_MASK) {
David Hubbard657c93b2007-02-14 21:15:04 +01001365 case SIO_W83627EHF_ID:
David Hubbard1ea6dd32007-06-24 11:16:15 +02001366 sio_data->kind = w83627ehf;
1367 sio_name = sio_name_W83627EHF;
1368 break;
David Hubbard657c93b2007-02-14 21:15:04 +01001369 case SIO_W83627EHG_ID:
David Hubbard1ea6dd32007-06-24 11:16:15 +02001370 sio_data->kind = w83627ehf;
1371 sio_name = sio_name_W83627EHG;
1372 break;
1373 case SIO_W83627DHG_ID:
1374 sio_data->kind = w83627dhg;
1375 sio_name = sio_name_W83627DHG;
David Hubbard657c93b2007-02-14 21:15:04 +01001376 break;
1377 default:
David Hubbard1ea6dd32007-06-24 11:16:15 +02001378 pr_info(DRVNAME ": unsupported chip ID: 0x%04x\n",
David Hubbard657c93b2007-02-14 21:15:04 +01001379 val);
David Hubbard1ea6dd32007-06-24 11:16:15 +02001380 superio_exit(sioaddr);
Jean Delvare08e7e272005-04-25 22:43:25 +02001381 return -ENODEV;
1382 }
1383
David Hubbard1ea6dd32007-06-24 11:16:15 +02001384 /* We have a known chip, find the HWM I/O address */
1385 superio_select(sioaddr, W83627EHF_LD_HWM);
1386 val = (superio_inb(sioaddr, SIO_REG_ADDR) << 8)
1387 | superio_inb(sioaddr, SIO_REG_ADDR + 1);
Jean Delvare1a641fc2007-04-23 14:41:16 -07001388 *addr = val & IOREGION_ALIGNMENT;
Jean Delvare2d8672c2005-07-19 23:56:35 +02001389 if (*addr == 0) {
David Hubbard475ef852007-06-24 11:17:09 +02001390 printk(KERN_ERR DRVNAME ": Refusing to enable a Super-I/O "
1391 "device with a base I/O port 0.\n");
David Hubbard1ea6dd32007-06-24 11:16:15 +02001392 superio_exit(sioaddr);
Jean Delvare08e7e272005-04-25 22:43:25 +02001393 return -ENODEV;
1394 }
1395
1396 /* Activate logical device if needed */
David Hubbard1ea6dd32007-06-24 11:16:15 +02001397 val = superio_inb(sioaddr, SIO_REG_ENABLE);
David Hubbard475ef852007-06-24 11:17:09 +02001398 if (!(val & 0x01)) {
1399 printk(KERN_WARNING DRVNAME ": Forcibly enabling Super-I/O. "
1400 "Sensor is probably unusable.\n");
David Hubbard1ea6dd32007-06-24 11:16:15 +02001401 superio_outb(sioaddr, SIO_REG_ENABLE, val | 0x01);
David Hubbard475ef852007-06-24 11:17:09 +02001402 }
Jean Delvare08e7e272005-04-25 22:43:25 +02001403
David Hubbard1ea6dd32007-06-24 11:16:15 +02001404 superio_exit(sioaddr);
1405 pr_info(DRVNAME ": Found %s chip at %#x\n", sio_name, *addr);
1406 sio_data->sioreg = sioaddr;
1407
Jean Delvare08e7e272005-04-25 22:43:25 +02001408 return 0;
1409}
1410
David Hubbard1ea6dd32007-06-24 11:16:15 +02001411/* when Super-I/O functions move to a separate file, the Super-I/O
1412 * bus will manage the lifetime of the device and this module will only keep
1413 * track of the w83627ehf driver. But since we platform_device_alloc(), we
1414 * must keep track of the device */
1415static struct platform_device *pdev;
1416
Jean Delvare08e7e272005-04-25 22:43:25 +02001417static int __init sensors_w83627ehf_init(void)
1418{
David Hubbard1ea6dd32007-06-24 11:16:15 +02001419 int err;
1420 unsigned short address;
1421 struct resource res;
1422 struct w83627ehf_sio_data sio_data;
1423
1424 /* initialize sio_data->kind and sio_data->sioreg.
1425 *
1426 * when Super-I/O functions move to a separate file, the Super-I/O
1427 * driver will probe 0x2e and 0x4e and auto-detect the presence of a
1428 * w83627ehf hardware monitor, and call probe() */
1429 if (w83627ehf_find(0x2e, &address, &sio_data) &&
1430 w83627ehf_find(0x4e, &address, &sio_data))
Jean Delvare08e7e272005-04-25 22:43:25 +02001431 return -ENODEV;
1432
David Hubbard1ea6dd32007-06-24 11:16:15 +02001433 err = platform_driver_register(&w83627ehf_driver);
1434 if (err)
1435 goto exit;
1436
1437 if (!(pdev = platform_device_alloc(DRVNAME, address))) {
1438 err = -ENOMEM;
1439 printk(KERN_ERR DRVNAME ": Device allocation failed\n");
1440 goto exit_unregister;
1441 }
1442
1443 err = platform_device_add_data(pdev, &sio_data,
1444 sizeof(struct w83627ehf_sio_data));
1445 if (err) {
1446 printk(KERN_ERR DRVNAME ": Platform data allocation failed\n");
1447 goto exit_device_put;
1448 }
1449
1450 memset(&res, 0, sizeof(res));
1451 res.name = DRVNAME;
1452 res.start = address + IOREGION_OFFSET;
1453 res.end = address + IOREGION_OFFSET + IOREGION_LENGTH - 1;
1454 res.flags = IORESOURCE_IO;
1455 err = platform_device_add_resources(pdev, &res, 1);
1456 if (err) {
1457 printk(KERN_ERR DRVNAME ": Device resource addition failed "
1458 "(%d)\n", err);
1459 goto exit_device_put;
1460 }
1461
1462 /* platform_device_add calls probe() */
1463 err = platform_device_add(pdev);
1464 if (err) {
1465 printk(KERN_ERR DRVNAME ": Device addition failed (%d)\n",
1466 err);
1467 goto exit_device_put;
1468 }
1469
1470 return 0;
1471
1472exit_device_put:
1473 platform_device_put(pdev);
1474exit_unregister:
1475 platform_driver_unregister(&w83627ehf_driver);
1476exit:
1477 return err;
Jean Delvare08e7e272005-04-25 22:43:25 +02001478}
1479
1480static void __exit sensors_w83627ehf_exit(void)
1481{
David Hubbard1ea6dd32007-06-24 11:16:15 +02001482 platform_device_unregister(pdev);
1483 platform_driver_unregister(&w83627ehf_driver);
Jean Delvare08e7e272005-04-25 22:43:25 +02001484}
1485
1486MODULE_AUTHOR("Jean Delvare <khali@linux-fr.org>");
1487MODULE_DESCRIPTION("W83627EHF driver");
1488MODULE_LICENSE("GPL");
1489
1490module_init(sensors_w83627ehf_init);
1491module_exit(sensors_w83627ehf_exit);