blob: 0c2d929cf573dde749c742a2e103e9ada0e2e104 [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
Jean Delvare6b3e4642007-06-24 11:19:01 +0200424 if (time_after(jiffies, data->last_updated + HZ + HZ/2)
Jean Delvare08e7e272005-04-25 22:43:25 +0200425 || !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 Delvare6b3e4642007-06-24 11:19:01 +0200730 /* Give the chip time to sample a new speed value */
731 data->last_updated = jiffies;
Jean Delvare08e7e272005-04-25 22:43:25 +0200732 }
David Hubbard1ea6dd32007-06-24 11:16:15 +0200733 w83627ehf_write_value(data, W83627EHF_REG_FAN_MIN[nr],
Jean Delvare08e7e272005-04-25 22:43:25 +0200734 data->fan_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100735 mutex_unlock(&data->update_lock);
Jean Delvare08e7e272005-04-25 22:43:25 +0200736
737 return count;
738}
739
Yuan Mu412fec82006-02-05 23:24:16 +0100740static struct sensor_device_attribute sda_fan_input[] = {
741 SENSOR_ATTR(fan1_input, S_IRUGO, show_fan, NULL, 0),
742 SENSOR_ATTR(fan2_input, S_IRUGO, show_fan, NULL, 1),
743 SENSOR_ATTR(fan3_input, S_IRUGO, show_fan, NULL, 2),
744 SENSOR_ATTR(fan4_input, S_IRUGO, show_fan, NULL, 3),
745 SENSOR_ATTR(fan5_input, S_IRUGO, show_fan, NULL, 4),
746};
Jean Delvare08e7e272005-04-25 22:43:25 +0200747
Jean Delvarea4589db2006-03-23 16:30:29 +0100748static struct sensor_device_attribute sda_fan_alarm[] = {
749 SENSOR_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 6),
750 SENSOR_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 7),
751 SENSOR_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 11),
752 SENSOR_ATTR(fan4_alarm, S_IRUGO, show_alarm, NULL, 10),
753 SENSOR_ATTR(fan5_alarm, S_IRUGO, show_alarm, NULL, 23),
754};
755
Yuan Mu412fec82006-02-05 23:24:16 +0100756static struct sensor_device_attribute sda_fan_min[] = {
757 SENSOR_ATTR(fan1_min, S_IWUSR | S_IRUGO, show_fan_min,
758 store_fan_min, 0),
759 SENSOR_ATTR(fan2_min, S_IWUSR | S_IRUGO, show_fan_min,
760 store_fan_min, 1),
761 SENSOR_ATTR(fan3_min, S_IWUSR | S_IRUGO, show_fan_min,
762 store_fan_min, 2),
763 SENSOR_ATTR(fan4_min, S_IWUSR | S_IRUGO, show_fan_min,
764 store_fan_min, 3),
765 SENSOR_ATTR(fan5_min, S_IWUSR | S_IRUGO, show_fan_min,
766 store_fan_min, 4),
767};
Jean Delvare08e7e272005-04-25 22:43:25 +0200768
Yuan Mu412fec82006-02-05 23:24:16 +0100769static struct sensor_device_attribute sda_fan_div[] = {
770 SENSOR_ATTR(fan1_div, S_IRUGO, show_fan_div, NULL, 0),
771 SENSOR_ATTR(fan2_div, S_IRUGO, show_fan_div, NULL, 1),
772 SENSOR_ATTR(fan3_div, S_IRUGO, show_fan_div, NULL, 2),
773 SENSOR_ATTR(fan4_div, S_IRUGO, show_fan_div, NULL, 3),
774 SENSOR_ATTR(fan5_div, S_IRUGO, show_fan_div, NULL, 4),
775};
Jean Delvare08e7e272005-04-25 22:43:25 +0200776
Jean Delvare08e7e272005-04-25 22:43:25 +0200777#define show_temp1_reg(reg) \
778static ssize_t \
Greg Kroah-Hartman6f637a62005-06-21 21:01:59 -0700779show_##reg(struct device *dev, struct device_attribute *attr, \
780 char *buf) \
Jean Delvare08e7e272005-04-25 22:43:25 +0200781{ \
782 struct w83627ehf_data *data = w83627ehf_update_device(dev); \
783 return sprintf(buf, "%d\n", temp1_from_reg(data->reg)); \
784}
785show_temp1_reg(temp1);
786show_temp1_reg(temp1_max);
787show_temp1_reg(temp1_max_hyst);
788
789#define store_temp1_reg(REG, reg) \
790static ssize_t \
Greg Kroah-Hartman6f637a62005-06-21 21:01:59 -0700791store_temp1_##reg(struct device *dev, struct device_attribute *attr, \
792 const char *buf, size_t count) \
Jean Delvare08e7e272005-04-25 22:43:25 +0200793{ \
David Hubbard1ea6dd32007-06-24 11:16:15 +0200794 struct w83627ehf_data *data = dev_get_drvdata(dev); \
Jean Delvare08e7e272005-04-25 22:43:25 +0200795 u32 val = simple_strtoul(buf, NULL, 10); \
796 \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100797 mutex_lock(&data->update_lock); \
Rudolf Marek08c79952006-07-05 18:14:31 +0200798 data->temp1_##reg = temp1_to_reg(val, -128000, 127000); \
David Hubbard1ea6dd32007-06-24 11:16:15 +0200799 w83627ehf_write_value(data, W83627EHF_REG_TEMP1_##REG, \
Jean Delvare08e7e272005-04-25 22:43:25 +0200800 data->temp1_##reg); \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100801 mutex_unlock(&data->update_lock); \
Jean Delvare08e7e272005-04-25 22:43:25 +0200802 return count; \
803}
804store_temp1_reg(OVER, max);
805store_temp1_reg(HYST, max_hyst);
806
Jean Delvare08e7e272005-04-25 22:43:25 +0200807#define show_temp_reg(reg) \
808static ssize_t \
Yuan Mu412fec82006-02-05 23:24:16 +0100809show_##reg(struct device *dev, struct device_attribute *attr, \
810 char *buf) \
Jean Delvare08e7e272005-04-25 22:43:25 +0200811{ \
812 struct w83627ehf_data *data = w83627ehf_update_device(dev); \
Yuan Mu412fec82006-02-05 23:24:16 +0100813 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
814 int nr = sensor_attr->index; \
Jean Delvare08e7e272005-04-25 22:43:25 +0200815 return sprintf(buf, "%d\n", \
816 LM75_TEMP_FROM_REG(data->reg[nr])); \
817}
818show_temp_reg(temp);
819show_temp_reg(temp_max);
820show_temp_reg(temp_max_hyst);
821
822#define store_temp_reg(REG, reg) \
823static ssize_t \
Yuan Mu412fec82006-02-05 23:24:16 +0100824store_##reg(struct device *dev, struct device_attribute *attr, \
825 const char *buf, size_t count) \
Jean Delvare08e7e272005-04-25 22:43:25 +0200826{ \
David Hubbard1ea6dd32007-06-24 11:16:15 +0200827 struct w83627ehf_data *data = dev_get_drvdata(dev); \
Yuan Mu412fec82006-02-05 23:24:16 +0100828 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
829 int nr = sensor_attr->index; \
Jean Delvare08e7e272005-04-25 22:43:25 +0200830 u32 val = simple_strtoul(buf, NULL, 10); \
831 \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100832 mutex_lock(&data->update_lock); \
Jean Delvare08e7e272005-04-25 22:43:25 +0200833 data->reg[nr] = LM75_TEMP_TO_REG(val); \
David Hubbard1ea6dd32007-06-24 11:16:15 +0200834 w83627ehf_write_value(data, W83627EHF_REG_TEMP_##REG[nr], \
Jean Delvare08e7e272005-04-25 22:43:25 +0200835 data->reg[nr]); \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100836 mutex_unlock(&data->update_lock); \
Jean Delvare08e7e272005-04-25 22:43:25 +0200837 return count; \
838}
839store_temp_reg(OVER, temp_max);
840store_temp_reg(HYST, temp_max_hyst);
841
Yuan Mu412fec82006-02-05 23:24:16 +0100842static struct sensor_device_attribute sda_temp[] = {
843 SENSOR_ATTR(temp1_input, S_IRUGO, show_temp1, NULL, 0),
844 SENSOR_ATTR(temp2_input, S_IRUGO, show_temp, NULL, 0),
845 SENSOR_ATTR(temp3_input, S_IRUGO, show_temp, NULL, 1),
846 SENSOR_ATTR(temp1_max, S_IRUGO | S_IWUSR, show_temp1_max,
847 store_temp1_max, 0),
848 SENSOR_ATTR(temp2_max, S_IRUGO | S_IWUSR, show_temp_max,
849 store_temp_max, 0),
850 SENSOR_ATTR(temp3_max, S_IRUGO | S_IWUSR, show_temp_max,
851 store_temp_max, 1),
852 SENSOR_ATTR(temp1_max_hyst, S_IRUGO | S_IWUSR, show_temp1_max_hyst,
853 store_temp1_max_hyst, 0),
854 SENSOR_ATTR(temp2_max_hyst, S_IRUGO | S_IWUSR, show_temp_max_hyst,
855 store_temp_max_hyst, 0),
856 SENSOR_ATTR(temp3_max_hyst, S_IRUGO | S_IWUSR, show_temp_max_hyst,
857 store_temp_max_hyst, 1),
Jean Delvarea4589db2006-03-23 16:30:29 +0100858 SENSOR_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 4),
859 SENSOR_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 5),
860 SENSOR_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 13),
Yuan Mu412fec82006-02-05 23:24:16 +0100861};
Jean Delvare08e7e272005-04-25 22:43:25 +0200862
Rudolf Marek08c79952006-07-05 18:14:31 +0200863#define show_pwm_reg(reg) \
864static ssize_t show_##reg (struct device *dev, struct device_attribute *attr, \
865 char *buf) \
866{ \
867 struct w83627ehf_data *data = w83627ehf_update_device(dev); \
868 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
869 int nr = sensor_attr->index; \
870 return sprintf(buf, "%d\n", data->reg[nr]); \
871}
872
873show_pwm_reg(pwm_mode)
874show_pwm_reg(pwm_enable)
875show_pwm_reg(pwm)
876
877static ssize_t
878store_pwm_mode(struct device *dev, struct device_attribute *attr,
879 const char *buf, size_t count)
880{
David Hubbard1ea6dd32007-06-24 11:16:15 +0200881 struct w83627ehf_data *data = dev_get_drvdata(dev);
Rudolf Marek08c79952006-07-05 18:14:31 +0200882 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
883 int nr = sensor_attr->index;
884 u32 val = simple_strtoul(buf, NULL, 10);
885 u16 reg;
886
887 if (val > 1)
888 return -EINVAL;
889 mutex_lock(&data->update_lock);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200890 reg = w83627ehf_read_value(data, W83627EHF_REG_PWM_ENABLE[nr]);
Rudolf Marek08c79952006-07-05 18:14:31 +0200891 data->pwm_mode[nr] = val;
892 reg &= ~(1 << W83627EHF_PWM_MODE_SHIFT[nr]);
893 if (!val)
894 reg |= 1 << W83627EHF_PWM_MODE_SHIFT[nr];
David Hubbard1ea6dd32007-06-24 11:16:15 +0200895 w83627ehf_write_value(data, W83627EHF_REG_PWM_ENABLE[nr], reg);
Rudolf Marek08c79952006-07-05 18:14:31 +0200896 mutex_unlock(&data->update_lock);
897 return count;
898}
899
900static ssize_t
901store_pwm(struct device *dev, struct device_attribute *attr,
902 const char *buf, size_t count)
903{
David Hubbard1ea6dd32007-06-24 11:16:15 +0200904 struct w83627ehf_data *data = dev_get_drvdata(dev);
Rudolf Marek08c79952006-07-05 18:14:31 +0200905 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
906 int nr = sensor_attr->index;
907 u32 val = SENSORS_LIMIT(simple_strtoul(buf, NULL, 10), 0, 255);
908
909 mutex_lock(&data->update_lock);
910 data->pwm[nr] = val;
David Hubbard1ea6dd32007-06-24 11:16:15 +0200911 w83627ehf_write_value(data, W83627EHF_REG_PWM[nr], val);
Rudolf Marek08c79952006-07-05 18:14:31 +0200912 mutex_unlock(&data->update_lock);
913 return count;
914}
915
916static ssize_t
917store_pwm_enable(struct device *dev, struct device_attribute *attr,
918 const char *buf, size_t count)
919{
David Hubbard1ea6dd32007-06-24 11:16:15 +0200920 struct w83627ehf_data *data = dev_get_drvdata(dev);
Rudolf Marek08c79952006-07-05 18:14:31 +0200921 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
922 int nr = sensor_attr->index;
923 u32 val = simple_strtoul(buf, NULL, 10);
924 u16 reg;
925
926 if (!val || (val > 2)) /* only modes 1 and 2 are supported */
927 return -EINVAL;
928 mutex_lock(&data->update_lock);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200929 reg = w83627ehf_read_value(data, W83627EHF_REG_PWM_ENABLE[nr]);
Rudolf Marek08c79952006-07-05 18:14:31 +0200930 data->pwm_enable[nr] = val;
931 reg &= ~(0x03 << W83627EHF_PWM_ENABLE_SHIFT[nr]);
932 reg |= (val - 1) << W83627EHF_PWM_ENABLE_SHIFT[nr];
David Hubbard1ea6dd32007-06-24 11:16:15 +0200933 w83627ehf_write_value(data, W83627EHF_REG_PWM_ENABLE[nr], reg);
Rudolf Marek08c79952006-07-05 18:14:31 +0200934 mutex_unlock(&data->update_lock);
935 return count;
936}
937
938
939#define show_tol_temp(reg) \
940static ssize_t show_##reg(struct device *dev, struct device_attribute *attr, \
941 char *buf) \
942{ \
943 struct w83627ehf_data *data = w83627ehf_update_device(dev); \
944 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
945 int nr = sensor_attr->index; \
946 return sprintf(buf, "%d\n", temp1_from_reg(data->reg[nr])); \
947}
948
949show_tol_temp(tolerance)
950show_tol_temp(target_temp)
951
952static ssize_t
953store_target_temp(struct device *dev, struct device_attribute *attr,
954 const char *buf, size_t count)
955{
David Hubbard1ea6dd32007-06-24 11:16:15 +0200956 struct w83627ehf_data *data = dev_get_drvdata(dev);
Rudolf Marek08c79952006-07-05 18:14:31 +0200957 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
958 int nr = sensor_attr->index;
959 u8 val = temp1_to_reg(simple_strtoul(buf, NULL, 10), 0, 127000);
960
961 mutex_lock(&data->update_lock);
962 data->target_temp[nr] = val;
David Hubbard1ea6dd32007-06-24 11:16:15 +0200963 w83627ehf_write_value(data, W83627EHF_REG_TARGET[nr], val);
Rudolf Marek08c79952006-07-05 18:14:31 +0200964 mutex_unlock(&data->update_lock);
965 return count;
966}
967
968static ssize_t
969store_tolerance(struct device *dev, struct device_attribute *attr,
970 const char *buf, size_t count)
971{
David Hubbard1ea6dd32007-06-24 11:16:15 +0200972 struct w83627ehf_data *data = dev_get_drvdata(dev);
Rudolf Marek08c79952006-07-05 18:14:31 +0200973 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
974 int nr = sensor_attr->index;
975 u16 reg;
976 /* Limit the temp to 0C - 15C */
977 u8 val = temp1_to_reg(simple_strtoul(buf, NULL, 10), 0, 15000);
978
979 mutex_lock(&data->update_lock);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200980 reg = w83627ehf_read_value(data, W83627EHF_REG_TOLERANCE[nr]);
Rudolf Marek08c79952006-07-05 18:14:31 +0200981 data->tolerance[nr] = val;
982 if (nr == 1)
983 reg = (reg & 0x0f) | (val << 4);
984 else
985 reg = (reg & 0xf0) | val;
David Hubbard1ea6dd32007-06-24 11:16:15 +0200986 w83627ehf_write_value(data, W83627EHF_REG_TOLERANCE[nr], reg);
Rudolf Marek08c79952006-07-05 18:14:31 +0200987 mutex_unlock(&data->update_lock);
988 return count;
989}
990
991static struct sensor_device_attribute sda_pwm[] = {
992 SENSOR_ATTR(pwm1, S_IWUSR | S_IRUGO, show_pwm, store_pwm, 0),
993 SENSOR_ATTR(pwm2, S_IWUSR | S_IRUGO, show_pwm, store_pwm, 1),
994 SENSOR_ATTR(pwm3, S_IWUSR | S_IRUGO, show_pwm, store_pwm, 2),
995 SENSOR_ATTR(pwm4, S_IWUSR | S_IRUGO, show_pwm, store_pwm, 3),
996};
997
998static struct sensor_device_attribute sda_pwm_mode[] = {
999 SENSOR_ATTR(pwm1_mode, S_IWUSR | S_IRUGO, show_pwm_mode,
1000 store_pwm_mode, 0),
1001 SENSOR_ATTR(pwm2_mode, S_IWUSR | S_IRUGO, show_pwm_mode,
1002 store_pwm_mode, 1),
1003 SENSOR_ATTR(pwm3_mode, S_IWUSR | S_IRUGO, show_pwm_mode,
1004 store_pwm_mode, 2),
1005 SENSOR_ATTR(pwm4_mode, S_IWUSR | S_IRUGO, show_pwm_mode,
1006 store_pwm_mode, 3),
1007};
1008
1009static struct sensor_device_attribute sda_pwm_enable[] = {
1010 SENSOR_ATTR(pwm1_enable, S_IWUSR | S_IRUGO, show_pwm_enable,
1011 store_pwm_enable, 0),
1012 SENSOR_ATTR(pwm2_enable, S_IWUSR | S_IRUGO, show_pwm_enable,
1013 store_pwm_enable, 1),
1014 SENSOR_ATTR(pwm3_enable, S_IWUSR | S_IRUGO, show_pwm_enable,
1015 store_pwm_enable, 2),
1016 SENSOR_ATTR(pwm4_enable, S_IWUSR | S_IRUGO, show_pwm_enable,
1017 store_pwm_enable, 3),
1018};
1019
1020static struct sensor_device_attribute sda_target_temp[] = {
1021 SENSOR_ATTR(pwm1_target, S_IWUSR | S_IRUGO, show_target_temp,
1022 store_target_temp, 0),
1023 SENSOR_ATTR(pwm2_target, S_IWUSR | S_IRUGO, show_target_temp,
1024 store_target_temp, 1),
1025 SENSOR_ATTR(pwm3_target, S_IWUSR | S_IRUGO, show_target_temp,
1026 store_target_temp, 2),
1027 SENSOR_ATTR(pwm4_target, S_IWUSR | S_IRUGO, show_target_temp,
1028 store_target_temp, 3),
1029};
1030
1031static struct sensor_device_attribute sda_tolerance[] = {
1032 SENSOR_ATTR(pwm1_tolerance, S_IWUSR | S_IRUGO, show_tolerance,
1033 store_tolerance, 0),
1034 SENSOR_ATTR(pwm2_tolerance, S_IWUSR | S_IRUGO, show_tolerance,
1035 store_tolerance, 1),
1036 SENSOR_ATTR(pwm3_tolerance, S_IWUSR | S_IRUGO, show_tolerance,
1037 store_tolerance, 2),
1038 SENSOR_ATTR(pwm4_tolerance, S_IWUSR | S_IRUGO, show_tolerance,
1039 store_tolerance, 3),
1040};
1041
Rudolf Marek08c79952006-07-05 18:14:31 +02001042/* Smart Fan registers */
1043
1044#define fan_functions(reg, REG) \
1045static ssize_t show_##reg(struct device *dev, struct device_attribute *attr, \
1046 char *buf) \
1047{ \
1048 struct w83627ehf_data *data = w83627ehf_update_device(dev); \
1049 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
1050 int nr = sensor_attr->index; \
1051 return sprintf(buf, "%d\n", data->reg[nr]); \
1052}\
1053static ssize_t \
1054store_##reg(struct device *dev, struct device_attribute *attr, \
1055 const char *buf, size_t count) \
1056{\
David Hubbard1ea6dd32007-06-24 11:16:15 +02001057 struct w83627ehf_data *data = dev_get_drvdata(dev); \
Rudolf Marek08c79952006-07-05 18:14:31 +02001058 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
1059 int nr = sensor_attr->index; \
1060 u32 val = SENSORS_LIMIT(simple_strtoul(buf, NULL, 10), 1, 255); \
1061 mutex_lock(&data->update_lock); \
1062 data->reg[nr] = val; \
David Hubbard1ea6dd32007-06-24 11:16:15 +02001063 w83627ehf_write_value(data, W83627EHF_REG_##REG[nr], val); \
Rudolf Marek08c79952006-07-05 18:14:31 +02001064 mutex_unlock(&data->update_lock); \
1065 return count; \
1066}
1067
1068fan_functions(fan_min_output, FAN_MIN_OUTPUT)
1069
1070#define fan_time_functions(reg, REG) \
1071static ssize_t show_##reg(struct device *dev, struct device_attribute *attr, \
1072 char *buf) \
1073{ \
1074 struct w83627ehf_data *data = w83627ehf_update_device(dev); \
1075 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
1076 int nr = sensor_attr->index; \
1077 return sprintf(buf, "%d\n", \
1078 step_time_from_reg(data->reg[nr], data->pwm_mode[nr])); \
1079} \
1080\
1081static ssize_t \
1082store_##reg(struct device *dev, struct device_attribute *attr, \
1083 const char *buf, size_t count) \
1084{ \
David Hubbard1ea6dd32007-06-24 11:16:15 +02001085 struct w83627ehf_data *data = dev_get_drvdata(dev); \
Rudolf Marek08c79952006-07-05 18:14:31 +02001086 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
1087 int nr = sensor_attr->index; \
1088 u8 val = step_time_to_reg(simple_strtoul(buf, NULL, 10), \
1089 data->pwm_mode[nr]); \
1090 mutex_lock(&data->update_lock); \
1091 data->reg[nr] = val; \
David Hubbard1ea6dd32007-06-24 11:16:15 +02001092 w83627ehf_write_value(data, W83627EHF_REG_##REG[nr], val); \
Rudolf Marek08c79952006-07-05 18:14:31 +02001093 mutex_unlock(&data->update_lock); \
1094 return count; \
1095} \
1096
1097fan_time_functions(fan_stop_time, FAN_STOP_TIME)
1098
David Hubbard1ea6dd32007-06-24 11:16:15 +02001099static ssize_t show_name(struct device *dev, struct device_attribute *attr,
1100 char *buf)
1101{
1102 struct w83627ehf_data *data = dev_get_drvdata(dev);
1103
1104 return sprintf(buf, "%s\n", data->name);
1105}
1106static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
Rudolf Marek08c79952006-07-05 18:14:31 +02001107
1108static struct sensor_device_attribute sda_sf3_arrays_fan4[] = {
1109 SENSOR_ATTR(pwm4_stop_time, S_IWUSR | S_IRUGO, show_fan_stop_time,
1110 store_fan_stop_time, 3),
1111 SENSOR_ATTR(pwm4_min_output, S_IWUSR | S_IRUGO, show_fan_min_output,
1112 store_fan_min_output, 3),
1113};
1114
1115static struct sensor_device_attribute sda_sf3_arrays[] = {
1116 SENSOR_ATTR(pwm1_stop_time, S_IWUSR | S_IRUGO, show_fan_stop_time,
1117 store_fan_stop_time, 0),
1118 SENSOR_ATTR(pwm2_stop_time, S_IWUSR | S_IRUGO, show_fan_stop_time,
1119 store_fan_stop_time, 1),
1120 SENSOR_ATTR(pwm3_stop_time, S_IWUSR | S_IRUGO, show_fan_stop_time,
1121 store_fan_stop_time, 2),
1122 SENSOR_ATTR(pwm1_min_output, S_IWUSR | S_IRUGO, show_fan_min_output,
1123 store_fan_min_output, 0),
1124 SENSOR_ATTR(pwm2_min_output, S_IWUSR | S_IRUGO, show_fan_min_output,
1125 store_fan_min_output, 1),
1126 SENSOR_ATTR(pwm3_min_output, S_IWUSR | S_IRUGO, show_fan_min_output,
1127 store_fan_min_output, 2),
1128};
1129
Jean Delvare08e7e272005-04-25 22:43:25 +02001130/*
David Hubbard1ea6dd32007-06-24 11:16:15 +02001131 * Driver and device management
Jean Delvare08e7e272005-04-25 22:43:25 +02001132 */
1133
David Hubbardc18beb52006-09-24 21:04:38 +02001134static void w83627ehf_device_remove_files(struct device *dev)
1135{
1136 /* some entries in the following arrays may not have been used in
1137 * device_create_file(), but device_remove_file() will ignore them */
1138 int i;
David Hubbard1ea6dd32007-06-24 11:16:15 +02001139 struct w83627ehf_data *data = dev_get_drvdata(dev);
David Hubbardc18beb52006-09-24 21:04:38 +02001140
1141 for (i = 0; i < ARRAY_SIZE(sda_sf3_arrays); i++)
1142 device_remove_file(dev, &sda_sf3_arrays[i].dev_attr);
1143 for (i = 0; i < ARRAY_SIZE(sda_sf3_arrays_fan4); i++)
1144 device_remove_file(dev, &sda_sf3_arrays_fan4[i].dev_attr);
David Hubbard1ea6dd32007-06-24 11:16:15 +02001145 for (i = 0; i < data->in_num; i++) {
David Hubbardc18beb52006-09-24 21:04:38 +02001146 device_remove_file(dev, &sda_in_input[i].dev_attr);
1147 device_remove_file(dev, &sda_in_alarm[i].dev_attr);
1148 device_remove_file(dev, &sda_in_min[i].dev_attr);
1149 device_remove_file(dev, &sda_in_max[i].dev_attr);
1150 }
1151 for (i = 0; i < 5; i++) {
1152 device_remove_file(dev, &sda_fan_input[i].dev_attr);
1153 device_remove_file(dev, &sda_fan_alarm[i].dev_attr);
1154 device_remove_file(dev, &sda_fan_div[i].dev_attr);
1155 device_remove_file(dev, &sda_fan_min[i].dev_attr);
1156 }
1157 for (i = 0; i < 4; i++) {
1158 device_remove_file(dev, &sda_pwm[i].dev_attr);
1159 device_remove_file(dev, &sda_pwm_mode[i].dev_attr);
1160 device_remove_file(dev, &sda_pwm_enable[i].dev_attr);
1161 device_remove_file(dev, &sda_target_temp[i].dev_attr);
1162 device_remove_file(dev, &sda_tolerance[i].dev_attr);
1163 }
1164 for (i = 0; i < ARRAY_SIZE(sda_temp); i++)
1165 device_remove_file(dev, &sda_temp[i].dev_attr);
David Hubbard1ea6dd32007-06-24 11:16:15 +02001166
1167 device_remove_file(dev, &dev_attr_name);
David Hubbardc18beb52006-09-24 21:04:38 +02001168}
1169
David Hubbard1ea6dd32007-06-24 11:16:15 +02001170/* Get the monitoring functions started */
1171static inline void __devinit w83627ehf_init_device(struct w83627ehf_data *data)
Jean Delvare08e7e272005-04-25 22:43:25 +02001172{
1173 int i;
1174 u8 tmp;
1175
1176 /* Start monitoring is needed */
David Hubbard1ea6dd32007-06-24 11:16:15 +02001177 tmp = w83627ehf_read_value(data, W83627EHF_REG_CONFIG);
Jean Delvare08e7e272005-04-25 22:43:25 +02001178 if (!(tmp & 0x01))
David Hubbard1ea6dd32007-06-24 11:16:15 +02001179 w83627ehf_write_value(data, W83627EHF_REG_CONFIG,
Jean Delvare08e7e272005-04-25 22:43:25 +02001180 tmp | 0x01);
1181
1182 /* Enable temp2 and temp3 if needed */
1183 for (i = 0; i < 2; i++) {
David Hubbard1ea6dd32007-06-24 11:16:15 +02001184 tmp = w83627ehf_read_value(data,
Jean Delvare08e7e272005-04-25 22:43:25 +02001185 W83627EHF_REG_TEMP_CONFIG[i]);
1186 if (tmp & 0x01)
David Hubbard1ea6dd32007-06-24 11:16:15 +02001187 w83627ehf_write_value(data,
Jean Delvare08e7e272005-04-25 22:43:25 +02001188 W83627EHF_REG_TEMP_CONFIG[i],
1189 tmp & 0xfe);
1190 }
1191}
1192
David Hubbard1ea6dd32007-06-24 11:16:15 +02001193static int __devinit w83627ehf_probe(struct platform_device *pdev)
Jean Delvare08e7e272005-04-25 22:43:25 +02001194{
David Hubbard1ea6dd32007-06-24 11:16:15 +02001195 struct device *dev = &pdev->dev;
1196 struct w83627ehf_sio_data *sio_data = dev->platform_data;
Jean Delvare08e7e272005-04-25 22:43:25 +02001197 struct w83627ehf_data *data;
David Hubbard1ea6dd32007-06-24 11:16:15 +02001198 struct resource *res;
Rudolf Marek08c79952006-07-05 18:14:31 +02001199 u8 fan4pin, fan5pin;
Jean Delvare08e7e272005-04-25 22:43:25 +02001200 int i, err = 0;
1201
David Hubbard1ea6dd32007-06-24 11:16:15 +02001202 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
1203 if (!request_region(res->start, IOREGION_LENGTH, DRVNAME)) {
Jean Delvare08e7e272005-04-25 22:43:25 +02001204 err = -EBUSY;
David Hubbard1ea6dd32007-06-24 11:16:15 +02001205 dev_err(dev, "Failed to request region 0x%lx-0x%lx\n",
1206 (unsigned long)res->start,
1207 (unsigned long)res->start + IOREGION_LENGTH - 1);
Jean Delvare08e7e272005-04-25 22:43:25 +02001208 goto exit;
1209 }
1210
Deepak Saxenaba9c2e82005-10-17 23:08:32 +02001211 if (!(data = kzalloc(sizeof(struct w83627ehf_data), GFP_KERNEL))) {
Jean Delvare08e7e272005-04-25 22:43:25 +02001212 err = -ENOMEM;
1213 goto exit_release;
1214 }
Jean Delvare08e7e272005-04-25 22:43:25 +02001215
David Hubbard1ea6dd32007-06-24 11:16:15 +02001216 data->addr = res->start;
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001217 mutex_init(&data->lock);
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001218 mutex_init(&data->update_lock);
David Hubbard1ea6dd32007-06-24 11:16:15 +02001219 data->name = w83627ehf_device_names[sio_data->kind];
1220 platform_set_drvdata(pdev, data);
Jean Delvare08e7e272005-04-25 22:43:25 +02001221
David Hubbard1ea6dd32007-06-24 11:16:15 +02001222 /* 627EHG and 627EHF have 10 voltage inputs; DHG has 9 */
1223 data->in_num = (sio_data->kind == w83627dhg) ? 9 : 10;
Jean Delvare08e7e272005-04-25 22:43:25 +02001224
1225 /* Initialize the chip */
David Hubbard1ea6dd32007-06-24 11:16:15 +02001226 w83627ehf_init_device(data);
Jean Delvare08e7e272005-04-25 22:43:25 +02001227
1228 /* A few vars need to be filled upon startup */
1229 for (i = 0; i < 5; i++)
David Hubbard1ea6dd32007-06-24 11:16:15 +02001230 data->fan_min[i] = w83627ehf_read_value(data,
Jean Delvare08e7e272005-04-25 22:43:25 +02001231 W83627EHF_REG_FAN_MIN[i]);
1232
Rudolf Marek08c79952006-07-05 18:14:31 +02001233 /* fan4 and fan5 share some pins with the GPIO and serial flash */
1234
David Hubbard1ea6dd32007-06-24 11:16:15 +02001235 superio_enter(sio_data->sioreg);
1236 fan5pin = superio_inb(sio_data->sioreg, 0x24) & 0x2;
1237 fan4pin = superio_inb(sio_data->sioreg, 0x29) & 0x6;
1238 superio_exit(sio_data->sioreg);
Rudolf Marek08c79952006-07-05 18:14:31 +02001239
Jean Delvare08e7e272005-04-25 22:43:25 +02001240 /* It looks like fan4 and fan5 pins can be alternatively used
Rudolf Marek14992c72006-10-08 22:02:09 +02001241 as fan on/off switches, but fan5 control is write only :/
1242 We assume that if the serial interface is disabled, designers
1243 connected fan5 as input unless they are emitting log 1, which
1244 is not the default. */
Rudolf Marek08c79952006-07-05 18:14:31 +02001245
Jean Delvare08e7e272005-04-25 22:43:25 +02001246 data->has_fan = 0x07; /* fan1, fan2 and fan3 */
David Hubbard1ea6dd32007-06-24 11:16:15 +02001247 i = w83627ehf_read_value(data, W83627EHF_REG_FANDIV1);
Rudolf Marek08c79952006-07-05 18:14:31 +02001248 if ((i & (1 << 2)) && (!fan4pin))
Jean Delvare08e7e272005-04-25 22:43:25 +02001249 data->has_fan |= (1 << 3);
Rudolf Marek14992c72006-10-08 22:02:09 +02001250 if (!(i & (1 << 1)) && (!fan5pin))
Jean Delvare08e7e272005-04-25 22:43:25 +02001251 data->has_fan |= (1 << 4);
1252
1253 /* Register sysfs hooks */
Rudolf Marek08c79952006-07-05 18:14:31 +02001254 for (i = 0; i < ARRAY_SIZE(sda_sf3_arrays); i++)
David Hubbardc18beb52006-09-24 21:04:38 +02001255 if ((err = device_create_file(dev,
1256 &sda_sf3_arrays[i].dev_attr)))
1257 goto exit_remove;
Rudolf Marek08c79952006-07-05 18:14:31 +02001258
1259 /* if fan4 is enabled create the sf3 files for it */
1260 if (data->has_fan & (1 << 3))
David Hubbardc18beb52006-09-24 21:04:38 +02001261 for (i = 0; i < ARRAY_SIZE(sda_sf3_arrays_fan4); i++) {
1262 if ((err = device_create_file(dev,
1263 &sda_sf3_arrays_fan4[i].dev_attr)))
1264 goto exit_remove;
1265 }
Rudolf Marek08c79952006-07-05 18:14:31 +02001266
David Hubbard1ea6dd32007-06-24 11:16:15 +02001267 for (i = 0; i < data->in_num; i++)
David Hubbardc18beb52006-09-24 21:04:38 +02001268 if ((err = device_create_file(dev, &sda_in_input[i].dev_attr))
1269 || (err = device_create_file(dev,
1270 &sda_in_alarm[i].dev_attr))
1271 || (err = device_create_file(dev,
1272 &sda_in_min[i].dev_attr))
1273 || (err = device_create_file(dev,
1274 &sda_in_max[i].dev_attr)))
1275 goto exit_remove;
Rudolf Marekcf0676f2006-03-23 16:25:22 +01001276
Yuan Mu412fec82006-02-05 23:24:16 +01001277 for (i = 0; i < 5; i++) {
Rudolf Marek08c79952006-07-05 18:14:31 +02001278 if (data->has_fan & (1 << i)) {
David Hubbardc18beb52006-09-24 21:04:38 +02001279 if ((err = device_create_file(dev,
1280 &sda_fan_input[i].dev_attr))
1281 || (err = device_create_file(dev,
1282 &sda_fan_alarm[i].dev_attr))
1283 || (err = device_create_file(dev,
1284 &sda_fan_div[i].dev_attr))
1285 || (err = device_create_file(dev,
1286 &sda_fan_min[i].dev_attr)))
1287 goto exit_remove;
1288 if (i < 4 && /* w83627ehf only has 4 pwm */
1289 ((err = device_create_file(dev,
1290 &sda_pwm[i].dev_attr))
1291 || (err = device_create_file(dev,
1292 &sda_pwm_mode[i].dev_attr))
1293 || (err = device_create_file(dev,
1294 &sda_pwm_enable[i].dev_attr))
1295 || (err = device_create_file(dev,
1296 &sda_target_temp[i].dev_attr))
1297 || (err = device_create_file(dev,
1298 &sda_tolerance[i].dev_attr))))
1299 goto exit_remove;
Rudolf Marek08c79952006-07-05 18:14:31 +02001300 }
Jean Delvare08e7e272005-04-25 22:43:25 +02001301 }
Rudolf Marek08c79952006-07-05 18:14:31 +02001302
Yuan Mu412fec82006-02-05 23:24:16 +01001303 for (i = 0; i < ARRAY_SIZE(sda_temp); i++)
David Hubbardc18beb52006-09-24 21:04:38 +02001304 if ((err = device_create_file(dev, &sda_temp[i].dev_attr)))
1305 goto exit_remove;
1306
David Hubbard1ea6dd32007-06-24 11:16:15 +02001307 err = device_create_file(dev, &dev_attr_name);
1308 if (err)
1309 goto exit_remove;
1310
David Hubbardc18beb52006-09-24 21:04:38 +02001311 data->class_dev = hwmon_device_register(dev);
1312 if (IS_ERR(data->class_dev)) {
1313 err = PTR_ERR(data->class_dev);
1314 goto exit_remove;
1315 }
Jean Delvare08e7e272005-04-25 22:43:25 +02001316
1317 return 0;
1318
David Hubbardc18beb52006-09-24 21:04:38 +02001319exit_remove:
1320 w83627ehf_device_remove_files(dev);
Jean Delvare08e7e272005-04-25 22:43:25 +02001321 kfree(data);
David Hubbard1ea6dd32007-06-24 11:16:15 +02001322 platform_set_drvdata(pdev, NULL);
Jean Delvare08e7e272005-04-25 22:43:25 +02001323exit_release:
David Hubbard1ea6dd32007-06-24 11:16:15 +02001324 release_region(res->start, IOREGION_LENGTH);
Jean Delvare08e7e272005-04-25 22:43:25 +02001325exit:
1326 return err;
1327}
1328
David Hubbard1ea6dd32007-06-24 11:16:15 +02001329static int __devexit w83627ehf_remove(struct platform_device *pdev)
Jean Delvare08e7e272005-04-25 22:43:25 +02001330{
David Hubbard1ea6dd32007-06-24 11:16:15 +02001331 struct w83627ehf_data *data = platform_get_drvdata(pdev);
Jean Delvare08e7e272005-04-25 22:43:25 +02001332
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001333 hwmon_device_unregister(data->class_dev);
David Hubbard1ea6dd32007-06-24 11:16:15 +02001334 w83627ehf_device_remove_files(&pdev->dev);
1335 release_region(data->addr, IOREGION_LENGTH);
1336 platform_set_drvdata(pdev, NULL);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001337 kfree(data);
Jean Delvare08e7e272005-04-25 22:43:25 +02001338
1339 return 0;
1340}
1341
David Hubbard1ea6dd32007-06-24 11:16:15 +02001342static struct platform_driver w83627ehf_driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +01001343 .driver = {
Jean Delvare87218842006-09-03 22:36:14 +02001344 .owner = THIS_MODULE,
David Hubbard1ea6dd32007-06-24 11:16:15 +02001345 .name = DRVNAME,
Laurent Riffardcdaf7932005-11-26 20:37:41 +01001346 },
David Hubbard1ea6dd32007-06-24 11:16:15 +02001347 .probe = w83627ehf_probe,
1348 .remove = __devexit_p(w83627ehf_remove),
Jean Delvare08e7e272005-04-25 22:43:25 +02001349};
1350
David Hubbard1ea6dd32007-06-24 11:16:15 +02001351/* w83627ehf_find() looks for a '627 in the Super-I/O config space */
1352static int __init w83627ehf_find(int sioaddr, unsigned short *addr,
1353 struct w83627ehf_sio_data *sio_data)
Jean Delvare08e7e272005-04-25 22:43:25 +02001354{
David Hubbard1ea6dd32007-06-24 11:16:15 +02001355 static const char __initdata sio_name_W83627EHF[] = "W83627EHF";
1356 static const char __initdata sio_name_W83627EHG[] = "W83627EHG";
1357 static const char __initdata sio_name_W83627DHG[] = "W83627DHG";
1358
Jean Delvare08e7e272005-04-25 22:43:25 +02001359 u16 val;
David Hubbard1ea6dd32007-06-24 11:16:15 +02001360 const char *sio_name;
Jean Delvare08e7e272005-04-25 22:43:25 +02001361
David Hubbard1ea6dd32007-06-24 11:16:15 +02001362 superio_enter(sioaddr);
Jean Delvare08e7e272005-04-25 22:43:25 +02001363
David Hubbard1ea6dd32007-06-24 11:16:15 +02001364 val = (superio_inb(sioaddr, SIO_REG_DEVID) << 8)
1365 | superio_inb(sioaddr, SIO_REG_DEVID + 1);
David Hubbard657c93b2007-02-14 21:15:04 +01001366 switch (val & SIO_ID_MASK) {
David Hubbard657c93b2007-02-14 21:15:04 +01001367 case SIO_W83627EHF_ID:
David Hubbard1ea6dd32007-06-24 11:16:15 +02001368 sio_data->kind = w83627ehf;
1369 sio_name = sio_name_W83627EHF;
1370 break;
David Hubbard657c93b2007-02-14 21:15:04 +01001371 case SIO_W83627EHG_ID:
David Hubbard1ea6dd32007-06-24 11:16:15 +02001372 sio_data->kind = w83627ehf;
1373 sio_name = sio_name_W83627EHG;
1374 break;
1375 case SIO_W83627DHG_ID:
1376 sio_data->kind = w83627dhg;
1377 sio_name = sio_name_W83627DHG;
David Hubbard657c93b2007-02-14 21:15:04 +01001378 break;
1379 default:
David Hubbard1ea6dd32007-06-24 11:16:15 +02001380 pr_info(DRVNAME ": unsupported chip ID: 0x%04x\n",
David Hubbard657c93b2007-02-14 21:15:04 +01001381 val);
David Hubbard1ea6dd32007-06-24 11:16:15 +02001382 superio_exit(sioaddr);
Jean Delvare08e7e272005-04-25 22:43:25 +02001383 return -ENODEV;
1384 }
1385
David Hubbard1ea6dd32007-06-24 11:16:15 +02001386 /* We have a known chip, find the HWM I/O address */
1387 superio_select(sioaddr, W83627EHF_LD_HWM);
1388 val = (superio_inb(sioaddr, SIO_REG_ADDR) << 8)
1389 | superio_inb(sioaddr, SIO_REG_ADDR + 1);
Jean Delvare1a641fc2007-04-23 14:41:16 -07001390 *addr = val & IOREGION_ALIGNMENT;
Jean Delvare2d8672c2005-07-19 23:56:35 +02001391 if (*addr == 0) {
David Hubbard475ef852007-06-24 11:17:09 +02001392 printk(KERN_ERR DRVNAME ": Refusing to enable a Super-I/O "
1393 "device with a base I/O port 0.\n");
David Hubbard1ea6dd32007-06-24 11:16:15 +02001394 superio_exit(sioaddr);
Jean Delvare08e7e272005-04-25 22:43:25 +02001395 return -ENODEV;
1396 }
1397
1398 /* Activate logical device if needed */
David Hubbard1ea6dd32007-06-24 11:16:15 +02001399 val = superio_inb(sioaddr, SIO_REG_ENABLE);
David Hubbard475ef852007-06-24 11:17:09 +02001400 if (!(val & 0x01)) {
1401 printk(KERN_WARNING DRVNAME ": Forcibly enabling Super-I/O. "
1402 "Sensor is probably unusable.\n");
David Hubbard1ea6dd32007-06-24 11:16:15 +02001403 superio_outb(sioaddr, SIO_REG_ENABLE, val | 0x01);
David Hubbard475ef852007-06-24 11:17:09 +02001404 }
Jean Delvare08e7e272005-04-25 22:43:25 +02001405
David Hubbard1ea6dd32007-06-24 11:16:15 +02001406 superio_exit(sioaddr);
1407 pr_info(DRVNAME ": Found %s chip at %#x\n", sio_name, *addr);
1408 sio_data->sioreg = sioaddr;
1409
Jean Delvare08e7e272005-04-25 22:43:25 +02001410 return 0;
1411}
1412
David Hubbard1ea6dd32007-06-24 11:16:15 +02001413/* when Super-I/O functions move to a separate file, the Super-I/O
1414 * bus will manage the lifetime of the device and this module will only keep
1415 * track of the w83627ehf driver. But since we platform_device_alloc(), we
1416 * must keep track of the device */
1417static struct platform_device *pdev;
1418
Jean Delvare08e7e272005-04-25 22:43:25 +02001419static int __init sensors_w83627ehf_init(void)
1420{
David Hubbard1ea6dd32007-06-24 11:16:15 +02001421 int err;
1422 unsigned short address;
1423 struct resource res;
1424 struct w83627ehf_sio_data sio_data;
1425
1426 /* initialize sio_data->kind and sio_data->sioreg.
1427 *
1428 * when Super-I/O functions move to a separate file, the Super-I/O
1429 * driver will probe 0x2e and 0x4e and auto-detect the presence of a
1430 * w83627ehf hardware monitor, and call probe() */
1431 if (w83627ehf_find(0x2e, &address, &sio_data) &&
1432 w83627ehf_find(0x4e, &address, &sio_data))
Jean Delvare08e7e272005-04-25 22:43:25 +02001433 return -ENODEV;
1434
David Hubbard1ea6dd32007-06-24 11:16:15 +02001435 err = platform_driver_register(&w83627ehf_driver);
1436 if (err)
1437 goto exit;
1438
1439 if (!(pdev = platform_device_alloc(DRVNAME, address))) {
1440 err = -ENOMEM;
1441 printk(KERN_ERR DRVNAME ": Device allocation failed\n");
1442 goto exit_unregister;
1443 }
1444
1445 err = platform_device_add_data(pdev, &sio_data,
1446 sizeof(struct w83627ehf_sio_data));
1447 if (err) {
1448 printk(KERN_ERR DRVNAME ": Platform data allocation failed\n");
1449 goto exit_device_put;
1450 }
1451
1452 memset(&res, 0, sizeof(res));
1453 res.name = DRVNAME;
1454 res.start = address + IOREGION_OFFSET;
1455 res.end = address + IOREGION_OFFSET + IOREGION_LENGTH - 1;
1456 res.flags = IORESOURCE_IO;
1457 err = platform_device_add_resources(pdev, &res, 1);
1458 if (err) {
1459 printk(KERN_ERR DRVNAME ": Device resource addition failed "
1460 "(%d)\n", err);
1461 goto exit_device_put;
1462 }
1463
1464 /* platform_device_add calls probe() */
1465 err = platform_device_add(pdev);
1466 if (err) {
1467 printk(KERN_ERR DRVNAME ": Device addition failed (%d)\n",
1468 err);
1469 goto exit_device_put;
1470 }
1471
1472 return 0;
1473
1474exit_device_put:
1475 platform_device_put(pdev);
1476exit_unregister:
1477 platform_driver_unregister(&w83627ehf_driver);
1478exit:
1479 return err;
Jean Delvare08e7e272005-04-25 22:43:25 +02001480}
1481
1482static void __exit sensors_w83627ehf_exit(void)
1483{
David Hubbard1ea6dd32007-06-24 11:16:15 +02001484 platform_device_unregister(pdev);
1485 platform_driver_unregister(&w83627ehf_driver);
Jean Delvare08e7e272005-04-25 22:43:25 +02001486}
1487
1488MODULE_AUTHOR("Jean Delvare <khali@linux-fr.org>");
1489MODULE_DESCRIPTION("W83627EHF driver");
1490MODULE_LICENSE("GPL");
1491
1492module_init(sensors_w83627ehf_init);
1493module_exit(sensors_w83627ehf_exit);