blob: e01a3e97aa17ed90b5a570941430647e76ab11cc [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>
Daniel J Blueman41e9a062009-12-14 18:01:37 -08008 Daniel J Blueman <daniel.blueman@gmail.com>
Jean Delvare08e7e272005-04-25 22:43:25 +02009
10 Shamelessly ripped from the w83627hf driver
11 Copyright (C) 2003 Mark Studebaker
12
13 Thanks to Leon Moonen, Steve Cliffe and Grant Coady for their help
14 in testing and debugging this driver.
15
Jean Delvare8dd2d2c2005-07-27 21:33:15 +020016 This driver also supports the W83627EHG, which is the lead-free
17 version of the W83627EHF.
18
Jean Delvare08e7e272005-04-25 22:43:25 +020019 This program is free software; you can redistribute it and/or modify
20 it under the terms of the GNU General Public License as published by
21 the Free Software Foundation; either version 2 of the License, or
22 (at your option) any later version.
23
24 This program is distributed in the hope that it will be useful,
25 but WITHOUT ANY WARRANTY; without even the implied warranty of
26 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 GNU General Public License for more details.
28
29 You should have received a copy of the GNU General Public License
30 along with this program; if not, write to the Free Software
31 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
32
33
34 Supports the following chips:
35
David Hubbard657c93b2007-02-14 21:15:04 +010036 Chip #vin #fan #pwm #temp chip IDs man ID
37 w83627ehf 10 5 4 3 0x8850 0x88 0x5ca3
38 0x8860 0xa1
39 w83627dhg 9 5 4 3 0xa020 0xc1 0x5ca3
Jean Delvarec1e48dc2009-06-15 18:39:50 +020040 w83627dhg-p 9 5 4 3 0xb070 0xc1 0x5ca3
Gong Jun237c8d2f2009-03-30 21:46:42 +020041 w83667hg 9 5 3 3 0xa510 0xc1 0x5ca3
Jean Delvare08e7e272005-04-25 22:43:25 +020042*/
43
44#include <linux/module.h>
45#include <linux/init.h>
46#include <linux/slab.h>
David Hubbard1ea6dd32007-06-24 11:16:15 +020047#include <linux/jiffies.h>
48#include <linux/platform_device.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040049#include <linux/hwmon.h>
Yuan Mu412fec82006-02-05 23:24:16 +010050#include <linux/hwmon-sysfs.h>
Jean Delvarefc18d6c2007-06-24 11:19:42 +020051#include <linux/hwmon-vid.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040052#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010053#include <linux/mutex.h>
Jean Delvareb9acb642009-01-07 16:37:35 +010054#include <linux/acpi.h>
H Hartley Sweeten6055fae2009-09-15 17:18:13 +020055#include <linux/io.h>
Jean Delvare08e7e272005-04-25 22:43:25 +020056#include "lm75.h"
57
Jean Delvarec1e48dc2009-06-15 18:39:50 +020058enum kinds { w83627ehf, w83627dhg, w83627dhg_p, w83667hg };
David Hubbard1ea6dd32007-06-24 11:16:15 +020059
60/* used to set data->name = w83627ehf_device_names[data->sio_kind] */
61static const char * w83627ehf_device_names[] = {
62 "w83627ehf",
63 "w83627dhg",
Jean Delvarec1e48dc2009-06-15 18:39:50 +020064 "w83627dhg",
Gong Jun237c8d2f2009-03-30 21:46:42 +020065 "w83667hg",
David Hubbard1ea6dd32007-06-24 11:16:15 +020066};
67
Jean Delvare67b671b2007-12-06 23:13:42 +010068static unsigned short force_id;
69module_param(force_id, ushort, 0);
70MODULE_PARM_DESC(force_id, "Override the detected device ID");
71
David Hubbard1ea6dd32007-06-24 11:16:15 +020072#define DRVNAME "w83627ehf"
Jean Delvare08e7e272005-04-25 22:43:25 +020073
74/*
75 * Super-I/O constants and functions
76 */
77
Jean Delvare08e7e272005-04-25 22:43:25 +020078#define W83627EHF_LD_HWM 0x0b
Gong Jun237c8d2f2009-03-30 21:46:42 +020079#define W83667HG_LD_VID 0x0d
Jean Delvare08e7e272005-04-25 22:43:25 +020080
81#define SIO_REG_LDSEL 0x07 /* Logical device select */
82#define SIO_REG_DEVID 0x20 /* Device ID (2 bytes) */
Jean Delvarefc18d6c2007-06-24 11:19:42 +020083#define SIO_REG_EN_VRM10 0x2C /* GPIO3, GPIO4 selection */
Jean Delvare08e7e272005-04-25 22:43:25 +020084#define SIO_REG_ENABLE 0x30 /* Logical device enable */
85#define SIO_REG_ADDR 0x60 /* Logical device address (2 bytes) */
Jean Delvarefc18d6c2007-06-24 11:19:42 +020086#define SIO_REG_VID_CTRL 0xF0 /* VID control */
87#define SIO_REG_VID_DATA 0xF1 /* VID data */
Jean Delvare08e7e272005-04-25 22:43:25 +020088
David Hubbard657c93b2007-02-14 21:15:04 +010089#define SIO_W83627EHF_ID 0x8850
90#define SIO_W83627EHG_ID 0x8860
91#define SIO_W83627DHG_ID 0xa020
Jean Delvarec1e48dc2009-06-15 18:39:50 +020092#define SIO_W83627DHG_P_ID 0xb070
Gong Jun237c8d2f2009-03-30 21:46:42 +020093#define SIO_W83667HG_ID 0xa510
David Hubbard657c93b2007-02-14 21:15:04 +010094#define SIO_ID_MASK 0xFFF0
Jean Delvare08e7e272005-04-25 22:43:25 +020095
96static inline void
David Hubbard1ea6dd32007-06-24 11:16:15 +020097superio_outb(int ioreg, int reg, int val)
Jean Delvare08e7e272005-04-25 22:43:25 +020098{
David Hubbard1ea6dd32007-06-24 11:16:15 +020099 outb(reg, ioreg);
100 outb(val, ioreg + 1);
Jean Delvare08e7e272005-04-25 22:43:25 +0200101}
102
103static inline int
David Hubbard1ea6dd32007-06-24 11:16:15 +0200104superio_inb(int ioreg, int reg)
Jean Delvare08e7e272005-04-25 22:43:25 +0200105{
David Hubbard1ea6dd32007-06-24 11:16:15 +0200106 outb(reg, ioreg);
107 return inb(ioreg + 1);
Jean Delvare08e7e272005-04-25 22:43:25 +0200108}
109
110static inline void
David Hubbard1ea6dd32007-06-24 11:16:15 +0200111superio_select(int ioreg, int ld)
Jean Delvare08e7e272005-04-25 22:43:25 +0200112{
David Hubbard1ea6dd32007-06-24 11:16:15 +0200113 outb(SIO_REG_LDSEL, ioreg);
114 outb(ld, ioreg + 1);
Jean Delvare08e7e272005-04-25 22:43:25 +0200115}
116
117static inline void
David Hubbard1ea6dd32007-06-24 11:16:15 +0200118superio_enter(int ioreg)
Jean Delvare08e7e272005-04-25 22:43:25 +0200119{
David Hubbard1ea6dd32007-06-24 11:16:15 +0200120 outb(0x87, ioreg);
121 outb(0x87, ioreg);
Jean Delvare08e7e272005-04-25 22:43:25 +0200122}
123
124static inline void
David Hubbard1ea6dd32007-06-24 11:16:15 +0200125superio_exit(int ioreg)
Jean Delvare08e7e272005-04-25 22:43:25 +0200126{
David Hubbard1ea6dd32007-06-24 11:16:15 +0200127 outb(0x02, ioreg);
128 outb(0x02, ioreg + 1);
Jean Delvare08e7e272005-04-25 22:43:25 +0200129}
130
131/*
132 * ISA constants
133 */
134
Jean Delvare1a641fc2007-04-23 14:41:16 -0700135#define IOREGION_ALIGNMENT ~7
136#define IOREGION_OFFSET 5
137#define IOREGION_LENGTH 2
David Hubbard1ea6dd32007-06-24 11:16:15 +0200138#define ADDR_REG_OFFSET 0
139#define DATA_REG_OFFSET 1
Jean Delvare08e7e272005-04-25 22:43:25 +0200140
141#define W83627EHF_REG_BANK 0x4E
142#define W83627EHF_REG_CONFIG 0x40
David Hubbard657c93b2007-02-14 21:15:04 +0100143
144/* Not currently used:
145 * REG_MAN_ID has the value 0x5ca3 for all supported chips.
146 * REG_CHIP_ID == 0x88/0xa1/0xc1 depending on chip model.
147 * REG_MAN_ID is at port 0x4f
148 * REG_CHIP_ID is at port 0x58 */
Jean Delvare08e7e272005-04-25 22:43:25 +0200149
150static const u16 W83627EHF_REG_FAN[] = { 0x28, 0x29, 0x2a, 0x3f, 0x553 };
151static const u16 W83627EHF_REG_FAN_MIN[] = { 0x3b, 0x3c, 0x3d, 0x3e, 0x55c };
152
Rudolf Marekcf0676f2006-03-23 16:25:22 +0100153/* The W83627EHF registers for nr=7,8,9 are in bank 5 */
154#define W83627EHF_REG_IN_MAX(nr) ((nr < 7) ? (0x2b + (nr) * 2) : \
155 (0x554 + (((nr) - 7) * 2)))
156#define W83627EHF_REG_IN_MIN(nr) ((nr < 7) ? (0x2c + (nr) * 2) : \
157 (0x555 + (((nr) - 7) * 2)))
158#define W83627EHF_REG_IN(nr) ((nr < 7) ? (0x20 + (nr)) : \
159 (0x550 + (nr) - 7))
160
Jean Delvare08e7e272005-04-25 22:43:25 +0200161#define W83627EHF_REG_TEMP1 0x27
162#define W83627EHF_REG_TEMP1_HYST 0x3a
163#define W83627EHF_REG_TEMP1_OVER 0x39
164static const u16 W83627EHF_REG_TEMP[] = { 0x150, 0x250 };
165static const u16 W83627EHF_REG_TEMP_HYST[] = { 0x153, 0x253 };
166static const u16 W83627EHF_REG_TEMP_OVER[] = { 0x155, 0x255 };
167static const u16 W83627EHF_REG_TEMP_CONFIG[] = { 0x152, 0x252 };
168
169/* Fan clock dividers are spread over the following five registers */
170#define W83627EHF_REG_FANDIV1 0x47
171#define W83627EHF_REG_FANDIV2 0x4B
172#define W83627EHF_REG_VBAT 0x5D
173#define W83627EHF_REG_DIODE 0x59
174#define W83627EHF_REG_SMI_OVT 0x4C
175
Jean Delvarea4589db2006-03-23 16:30:29 +0100176#define W83627EHF_REG_ALARM1 0x459
177#define W83627EHF_REG_ALARM2 0x45A
178#define W83627EHF_REG_ALARM3 0x45B
179
Rudolf Marek08c79952006-07-05 18:14:31 +0200180/* SmartFan registers */
Daniel J Blueman41e9a062009-12-14 18:01:37 -0800181#define W83627EHF_REG_FAN_STEPUP_TIME 0x0f
182#define W83627EHF_REG_FAN_STEPDOWN_TIME 0x0e
183
Rudolf Marek08c79952006-07-05 18:14:31 +0200184/* DC or PWM output fan configuration */
185static const u8 W83627EHF_REG_PWM_ENABLE[] = {
186 0x04, /* SYS FAN0 output mode and PWM mode */
187 0x04, /* CPU FAN0 output mode and PWM mode */
188 0x12, /* AUX FAN mode */
Daniel J Blueman41e9a062009-12-14 18:01:37 -0800189 0x62, /* CPU FAN1 mode */
Rudolf Marek08c79952006-07-05 18:14:31 +0200190};
191
192static const u8 W83627EHF_PWM_MODE_SHIFT[] = { 0, 1, 0, 6 };
193static const u8 W83627EHF_PWM_ENABLE_SHIFT[] = { 2, 4, 1, 4 };
194
195/* FAN Duty Cycle, be used to control */
196static const u8 W83627EHF_REG_PWM[] = { 0x01, 0x03, 0x11, 0x61 };
197static const u8 W83627EHF_REG_TARGET[] = { 0x05, 0x06, 0x13, 0x63 };
198static const u8 W83627EHF_REG_TOLERANCE[] = { 0x07, 0x07, 0x14, 0x62 };
199
Rudolf Marek08c79952006-07-05 18:14:31 +0200200/* Advanced Fan control, some values are common for all fans */
Daniel J Blueman41e9a062009-12-14 18:01:37 -0800201static const u8 W83627EHF_REG_FAN_START_OUTPUT[] = { 0x0a, 0x0b, 0x16, 0x65 };
202static const u8 W83627EHF_REG_FAN_STOP_OUTPUT[] = { 0x08, 0x09, 0x15, 0x64 };
203static const u8 W83627EHF_REG_FAN_STOP_TIME[] = { 0x0c, 0x0d, 0x17, 0x66 };
204static const u8 W83627EHF_REG_FAN_MAX_OUTPUT[] = { 0xff, 0x67, 0xff, 0x69 };
205static const u8 W83627EHF_REG_FAN_STEP_OUTPUT[] = { 0xff, 0x68, 0xff, 0x6a };
Rudolf Marek08c79952006-07-05 18:14:31 +0200206
Jean Delvare08e7e272005-04-25 22:43:25 +0200207/*
208 * Conversions
209 */
210
Rudolf Marek08c79952006-07-05 18:14:31 +0200211/* 1 is PWM mode, output in ms */
212static inline unsigned int step_time_from_reg(u8 reg, u8 mode)
213{
214 return mode ? 100 * reg : 400 * reg;
215}
216
217static inline u8 step_time_to_reg(unsigned int msec, u8 mode)
218{
219 return SENSORS_LIMIT((mode ? (msec + 50) / 100 :
220 (msec + 200) / 400), 1, 255);
221}
222
Jean Delvare08e7e272005-04-25 22:43:25 +0200223static inline unsigned int
224fan_from_reg(u8 reg, unsigned int div)
225{
226 if (reg == 0 || reg == 255)
227 return 0;
228 return 1350000U / (reg * div);
229}
230
231static inline unsigned int
232div_from_reg(u8 reg)
233{
234 return 1 << reg;
235}
236
237static inline int
238temp1_from_reg(s8 reg)
239{
240 return reg * 1000;
241}
242
243static inline s8
Christian Hohnstaedt5bfedac2007-08-16 11:40:10 +0200244temp1_to_reg(long temp, int min, int max)
Jean Delvare08e7e272005-04-25 22:43:25 +0200245{
Rudolf Marek08c79952006-07-05 18:14:31 +0200246 if (temp <= min)
247 return min / 1000;
248 if (temp >= max)
249 return max / 1000;
Jean Delvare08e7e272005-04-25 22:43:25 +0200250 if (temp < 0)
251 return (temp - 500) / 1000;
252 return (temp + 500) / 1000;
253}
254
Rudolf Marekcf0676f2006-03-23 16:25:22 +0100255/* Some of analog inputs have internal scaling (2x), 8mV is ADC LSB */
256
257static u8 scale_in[10] = { 8, 8, 16, 16, 8, 8, 8, 16, 16, 8 };
258
259static inline long in_from_reg(u8 reg, u8 nr)
260{
261 return reg * scale_in[nr];
262}
263
264static inline u8 in_to_reg(u32 val, u8 nr)
265{
266 return SENSORS_LIMIT(((val + (scale_in[nr] / 2)) / scale_in[nr]), 0, 255);
267}
268
Jean Delvare08e7e272005-04-25 22:43:25 +0200269/*
270 * Data structures and manipulation thereof
271 */
272
273struct w83627ehf_data {
David Hubbard1ea6dd32007-06-24 11:16:15 +0200274 int addr; /* IO base of hw monitor block */
275 const char *name;
276
Tony Jones1beeffe2007-08-20 13:46:20 -0700277 struct device *hwmon_dev;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100278 struct mutex lock;
Jean Delvare08e7e272005-04-25 22:43:25 +0200279
Guenter Roeckda2e0252010-08-14 21:08:55 +0200280 const u8 *REG_FAN_START_OUTPUT;
281 const u8 *REG_FAN_STOP_OUTPUT;
282 const u8 *REG_FAN_MAX_OUTPUT;
283 const u8 *REG_FAN_STEP_OUTPUT;
284
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100285 struct mutex update_lock;
Jean Delvare08e7e272005-04-25 22:43:25 +0200286 char valid; /* !=0 if following fields are valid */
287 unsigned long last_updated; /* In jiffies */
288
289 /* Register values */
David Hubbard1ea6dd32007-06-24 11:16:15 +0200290 u8 in_num; /* number of in inputs we have */
Rudolf Marekcf0676f2006-03-23 16:25:22 +0100291 u8 in[10]; /* Register value */
292 u8 in_max[10]; /* Register value */
293 u8 in_min[10]; /* Register value */
Jean Delvare08e7e272005-04-25 22:43:25 +0200294 u8 fan[5];
295 u8 fan_min[5];
296 u8 fan_div[5];
297 u8 has_fan; /* some fan inputs can be disabled */
Jean Delvareda667362007-06-24 11:21:02 +0200298 u8 temp_type[3];
Jean Delvare08e7e272005-04-25 22:43:25 +0200299 s8 temp1;
300 s8 temp1_max;
301 s8 temp1_max_hyst;
302 s16 temp[2];
303 s16 temp_max[2];
304 s16 temp_max_hyst[2];
Jean Delvarea4589db2006-03-23 16:30:29 +0100305 u32 alarms;
Rudolf Marek08c79952006-07-05 18:14:31 +0200306
307 u8 pwm_mode[4]; /* 0->DC variable voltage, 1->PWM variable duty cycle */
308 u8 pwm_enable[4]; /* 1->manual
Daniel J Blueman41e9a062009-12-14 18:01:37 -0800309 2->thermal cruise mode (also called SmartFan I)
310 3->fan speed cruise mode
311 4->variable thermal cruise (also called SmartFan III) */
Gong Jun237c8d2f2009-03-30 21:46:42 +0200312 u8 pwm_num; /* number of pwm */
Rudolf Marek08c79952006-07-05 18:14:31 +0200313 u8 pwm[4];
314 u8 target_temp[4];
315 u8 tolerance[4];
316
Daniel J Blueman41e9a062009-12-14 18:01:37 -0800317 u8 fan_start_output[4]; /* minimum fan speed when spinning up */
318 u8 fan_stop_output[4]; /* minimum fan speed when spinning down */
319 u8 fan_stop_time[4]; /* time at minimum before disabling fan */
320 u8 fan_max_output[4]; /* maximum fan speed */
321 u8 fan_step_output[4]; /* rate of change output value */
Jean Delvarefc18d6c2007-06-24 11:19:42 +0200322
323 u8 vid;
324 u8 vrm;
Gong Juna157d062009-03-30 21:46:43 +0200325
326 u8 temp3_disable;
327 u8 in6_skip;
Jean Delvare08e7e272005-04-25 22:43:25 +0200328};
329
David Hubbard1ea6dd32007-06-24 11:16:15 +0200330struct w83627ehf_sio_data {
331 int sioreg;
332 enum kinds kind;
333};
334
Jean Delvare08e7e272005-04-25 22:43:25 +0200335static inline int is_word_sized(u16 reg)
336{
337 return (((reg & 0xff00) == 0x100
338 || (reg & 0xff00) == 0x200)
339 && ((reg & 0x00ff) == 0x50
340 || (reg & 0x00ff) == 0x53
341 || (reg & 0x00ff) == 0x55));
342}
343
Jean Delvare09568952007-08-11 13:57:05 +0200344/* Registers 0x50-0x5f are banked */
David Hubbard1ea6dd32007-06-24 11:16:15 +0200345static inline void w83627ehf_set_bank(struct w83627ehf_data *data, u16 reg)
Jean Delvare08e7e272005-04-25 22:43:25 +0200346{
Jean Delvare09568952007-08-11 13:57:05 +0200347 if ((reg & 0x00f0) == 0x50) {
David Hubbard1ea6dd32007-06-24 11:16:15 +0200348 outb_p(W83627EHF_REG_BANK, data->addr + ADDR_REG_OFFSET);
349 outb_p(reg >> 8, data->addr + DATA_REG_OFFSET);
Jean Delvare08e7e272005-04-25 22:43:25 +0200350 }
351}
352
Jean Delvare09568952007-08-11 13:57:05 +0200353/* Not strictly necessary, but play it safe for now */
David Hubbard1ea6dd32007-06-24 11:16:15 +0200354static inline void w83627ehf_reset_bank(struct w83627ehf_data *data, u16 reg)
Jean Delvare08e7e272005-04-25 22:43:25 +0200355{
356 if (reg & 0xff00) {
David Hubbard1ea6dd32007-06-24 11:16:15 +0200357 outb_p(W83627EHF_REG_BANK, data->addr + ADDR_REG_OFFSET);
358 outb_p(0, data->addr + DATA_REG_OFFSET);
Jean Delvare08e7e272005-04-25 22:43:25 +0200359 }
360}
361
David Hubbard1ea6dd32007-06-24 11:16:15 +0200362static u16 w83627ehf_read_value(struct w83627ehf_data *data, u16 reg)
Jean Delvare08e7e272005-04-25 22:43:25 +0200363{
Jean Delvare08e7e272005-04-25 22:43:25 +0200364 int res, word_sized = is_word_sized(reg);
365
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100366 mutex_lock(&data->lock);
Jean Delvare08e7e272005-04-25 22:43:25 +0200367
David Hubbard1ea6dd32007-06-24 11:16:15 +0200368 w83627ehf_set_bank(data, reg);
369 outb_p(reg & 0xff, data->addr + ADDR_REG_OFFSET);
370 res = inb_p(data->addr + DATA_REG_OFFSET);
Jean Delvare08e7e272005-04-25 22:43:25 +0200371 if (word_sized) {
372 outb_p((reg & 0xff) + 1,
David Hubbard1ea6dd32007-06-24 11:16:15 +0200373 data->addr + ADDR_REG_OFFSET);
374 res = (res << 8) + inb_p(data->addr + DATA_REG_OFFSET);
Jean Delvare08e7e272005-04-25 22:43:25 +0200375 }
David Hubbard1ea6dd32007-06-24 11:16:15 +0200376 w83627ehf_reset_bank(data, reg);
Jean Delvare08e7e272005-04-25 22:43:25 +0200377
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100378 mutex_unlock(&data->lock);
Jean Delvare08e7e272005-04-25 22:43:25 +0200379
380 return res;
381}
382
David Hubbard1ea6dd32007-06-24 11:16:15 +0200383static int w83627ehf_write_value(struct w83627ehf_data *data, u16 reg, u16 value)
Jean Delvare08e7e272005-04-25 22:43:25 +0200384{
Jean Delvare08e7e272005-04-25 22:43:25 +0200385 int word_sized = is_word_sized(reg);
386
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100387 mutex_lock(&data->lock);
Jean Delvare08e7e272005-04-25 22:43:25 +0200388
David Hubbard1ea6dd32007-06-24 11:16:15 +0200389 w83627ehf_set_bank(data, reg);
390 outb_p(reg & 0xff, data->addr + ADDR_REG_OFFSET);
Jean Delvare08e7e272005-04-25 22:43:25 +0200391 if (word_sized) {
David Hubbard1ea6dd32007-06-24 11:16:15 +0200392 outb_p(value >> 8, data->addr + DATA_REG_OFFSET);
Jean Delvare08e7e272005-04-25 22:43:25 +0200393 outb_p((reg & 0xff) + 1,
David Hubbard1ea6dd32007-06-24 11:16:15 +0200394 data->addr + ADDR_REG_OFFSET);
Jean Delvare08e7e272005-04-25 22:43:25 +0200395 }
David Hubbard1ea6dd32007-06-24 11:16:15 +0200396 outb_p(value & 0xff, data->addr + DATA_REG_OFFSET);
397 w83627ehf_reset_bank(data, reg);
Jean Delvare08e7e272005-04-25 22:43:25 +0200398
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100399 mutex_unlock(&data->lock);
Jean Delvare08e7e272005-04-25 22:43:25 +0200400 return 0;
401}
402
403/* This function assumes that the caller holds data->update_lock */
David Hubbard1ea6dd32007-06-24 11:16:15 +0200404static void w83627ehf_write_fan_div(struct w83627ehf_data *data, int nr)
Jean Delvare08e7e272005-04-25 22:43:25 +0200405{
Jean Delvare08e7e272005-04-25 22:43:25 +0200406 u8 reg;
407
408 switch (nr) {
409 case 0:
David Hubbard1ea6dd32007-06-24 11:16:15 +0200410 reg = (w83627ehf_read_value(data, W83627EHF_REG_FANDIV1) & 0xcf)
Jean Delvare08e7e272005-04-25 22:43:25 +0200411 | ((data->fan_div[0] & 0x03) << 4);
Rudolf Marek14992c72006-10-08 22:02:09 +0200412 /* fan5 input control bit is write only, compute the value */
413 reg |= (data->has_fan & (1 << 4)) ? 1 : 0;
David Hubbard1ea6dd32007-06-24 11:16:15 +0200414 w83627ehf_write_value(data, W83627EHF_REG_FANDIV1, reg);
415 reg = (w83627ehf_read_value(data, W83627EHF_REG_VBAT) & 0xdf)
Jean Delvare08e7e272005-04-25 22:43:25 +0200416 | ((data->fan_div[0] & 0x04) << 3);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200417 w83627ehf_write_value(data, W83627EHF_REG_VBAT, reg);
Jean Delvare08e7e272005-04-25 22:43:25 +0200418 break;
419 case 1:
David Hubbard1ea6dd32007-06-24 11:16:15 +0200420 reg = (w83627ehf_read_value(data, W83627EHF_REG_FANDIV1) & 0x3f)
Jean Delvare08e7e272005-04-25 22:43:25 +0200421 | ((data->fan_div[1] & 0x03) << 6);
Rudolf Marek14992c72006-10-08 22:02:09 +0200422 /* fan5 input control bit is write only, compute the value */
423 reg |= (data->has_fan & (1 << 4)) ? 1 : 0;
David Hubbard1ea6dd32007-06-24 11:16:15 +0200424 w83627ehf_write_value(data, W83627EHF_REG_FANDIV1, reg);
425 reg = (w83627ehf_read_value(data, W83627EHF_REG_VBAT) & 0xbf)
Jean Delvare08e7e272005-04-25 22:43:25 +0200426 | ((data->fan_div[1] & 0x04) << 4);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200427 w83627ehf_write_value(data, W83627EHF_REG_VBAT, reg);
Jean Delvare08e7e272005-04-25 22:43:25 +0200428 break;
429 case 2:
David Hubbard1ea6dd32007-06-24 11:16:15 +0200430 reg = (w83627ehf_read_value(data, W83627EHF_REG_FANDIV2) & 0x3f)
Jean Delvare08e7e272005-04-25 22:43:25 +0200431 | ((data->fan_div[2] & 0x03) << 6);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200432 w83627ehf_write_value(data, W83627EHF_REG_FANDIV2, reg);
433 reg = (w83627ehf_read_value(data, W83627EHF_REG_VBAT) & 0x7f)
Jean Delvare08e7e272005-04-25 22:43:25 +0200434 | ((data->fan_div[2] & 0x04) << 5);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200435 w83627ehf_write_value(data, W83627EHF_REG_VBAT, reg);
Jean Delvare08e7e272005-04-25 22:43:25 +0200436 break;
437 case 3:
David Hubbard1ea6dd32007-06-24 11:16:15 +0200438 reg = (w83627ehf_read_value(data, W83627EHF_REG_DIODE) & 0xfc)
Jean Delvare08e7e272005-04-25 22:43:25 +0200439 | (data->fan_div[3] & 0x03);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200440 w83627ehf_write_value(data, W83627EHF_REG_DIODE, reg);
441 reg = (w83627ehf_read_value(data, W83627EHF_REG_SMI_OVT) & 0x7f)
Jean Delvare08e7e272005-04-25 22:43:25 +0200442 | ((data->fan_div[3] & 0x04) << 5);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200443 w83627ehf_write_value(data, W83627EHF_REG_SMI_OVT, reg);
Jean Delvare08e7e272005-04-25 22:43:25 +0200444 break;
445 case 4:
David Hubbard1ea6dd32007-06-24 11:16:15 +0200446 reg = (w83627ehf_read_value(data, W83627EHF_REG_DIODE) & 0x73)
Jean Delvare33725ad2007-04-17 00:32:27 -0700447 | ((data->fan_div[4] & 0x03) << 2)
Jean Delvare08e7e272005-04-25 22:43:25 +0200448 | ((data->fan_div[4] & 0x04) << 5);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200449 w83627ehf_write_value(data, W83627EHF_REG_DIODE, reg);
Jean Delvare08e7e272005-04-25 22:43:25 +0200450 break;
451 }
452}
453
Mark M. Hoffmanea7be662007-08-05 12:19:01 -0400454static void w83627ehf_update_fan_div(struct w83627ehf_data *data)
455{
456 int i;
457
458 i = w83627ehf_read_value(data, W83627EHF_REG_FANDIV1);
459 data->fan_div[0] = (i >> 4) & 0x03;
460 data->fan_div[1] = (i >> 6) & 0x03;
461 i = w83627ehf_read_value(data, W83627EHF_REG_FANDIV2);
462 data->fan_div[2] = (i >> 6) & 0x03;
463 i = w83627ehf_read_value(data, W83627EHF_REG_VBAT);
464 data->fan_div[0] |= (i >> 3) & 0x04;
465 data->fan_div[1] |= (i >> 4) & 0x04;
466 data->fan_div[2] |= (i >> 5) & 0x04;
467 if (data->has_fan & ((1 << 3) | (1 << 4))) {
468 i = w83627ehf_read_value(data, W83627EHF_REG_DIODE);
469 data->fan_div[3] = i & 0x03;
470 data->fan_div[4] = ((i >> 2) & 0x03)
471 | ((i >> 5) & 0x04);
472 }
473 if (data->has_fan & (1 << 3)) {
474 i = w83627ehf_read_value(data, W83627EHF_REG_SMI_OVT);
475 data->fan_div[3] |= (i >> 5) & 0x04;
476 }
477}
478
Jean Delvare08e7e272005-04-25 22:43:25 +0200479static struct w83627ehf_data *w83627ehf_update_device(struct device *dev)
480{
David Hubbard1ea6dd32007-06-24 11:16:15 +0200481 struct w83627ehf_data *data = dev_get_drvdata(dev);
Rudolf Marek08c79952006-07-05 18:14:31 +0200482 int pwmcfg = 0, tolerance = 0; /* shut up the compiler */
Jean Delvare08e7e272005-04-25 22:43:25 +0200483 int i;
484
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100485 mutex_lock(&data->update_lock);
Jean Delvare08e7e272005-04-25 22:43:25 +0200486
Jean Delvare6b3e4642007-06-24 11:19:01 +0200487 if (time_after(jiffies, data->last_updated + HZ + HZ/2)
Jean Delvare08e7e272005-04-25 22:43:25 +0200488 || !data->valid) {
489 /* Fan clock dividers */
Mark M. Hoffmanea7be662007-08-05 12:19:01 -0400490 w83627ehf_update_fan_div(data);
Jean Delvare08e7e272005-04-25 22:43:25 +0200491
Rudolf Marekcf0676f2006-03-23 16:25:22 +0100492 /* Measured voltages and limits */
David Hubbard1ea6dd32007-06-24 11:16:15 +0200493 for (i = 0; i < data->in_num; i++) {
494 data->in[i] = w83627ehf_read_value(data,
Rudolf Marekcf0676f2006-03-23 16:25:22 +0100495 W83627EHF_REG_IN(i));
David Hubbard1ea6dd32007-06-24 11:16:15 +0200496 data->in_min[i] = w83627ehf_read_value(data,
Rudolf Marekcf0676f2006-03-23 16:25:22 +0100497 W83627EHF_REG_IN_MIN(i));
David Hubbard1ea6dd32007-06-24 11:16:15 +0200498 data->in_max[i] = w83627ehf_read_value(data,
Rudolf Marekcf0676f2006-03-23 16:25:22 +0100499 W83627EHF_REG_IN_MAX(i));
500 }
501
Jean Delvare08e7e272005-04-25 22:43:25 +0200502 /* Measured fan speeds and limits */
503 for (i = 0; i < 5; i++) {
504 if (!(data->has_fan & (1 << i)))
505 continue;
506
David Hubbard1ea6dd32007-06-24 11:16:15 +0200507 data->fan[i] = w83627ehf_read_value(data,
Jean Delvare08e7e272005-04-25 22:43:25 +0200508 W83627EHF_REG_FAN[i]);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200509 data->fan_min[i] = w83627ehf_read_value(data,
Jean Delvare08e7e272005-04-25 22:43:25 +0200510 W83627EHF_REG_FAN_MIN[i]);
511
512 /* If we failed to measure the fan speed and clock
513 divider can be increased, let's try that for next
514 time */
515 if (data->fan[i] == 0xff
516 && data->fan_div[i] < 0x07) {
David Hubbard1ea6dd32007-06-24 11:16:15 +0200517 dev_dbg(dev, "Increasing fan%d "
Jean Delvare08e7e272005-04-25 22:43:25 +0200518 "clock divider from %u to %u\n",
Jean Delvare33725ad2007-04-17 00:32:27 -0700519 i + 1, div_from_reg(data->fan_div[i]),
Jean Delvare08e7e272005-04-25 22:43:25 +0200520 div_from_reg(data->fan_div[i] + 1));
521 data->fan_div[i]++;
David Hubbard1ea6dd32007-06-24 11:16:15 +0200522 w83627ehf_write_fan_div(data, i);
Jean Delvare08e7e272005-04-25 22:43:25 +0200523 /* Preserve min limit if possible */
524 if (data->fan_min[i] >= 2
525 && data->fan_min[i] != 255)
David Hubbard1ea6dd32007-06-24 11:16:15 +0200526 w83627ehf_write_value(data,
Jean Delvare08e7e272005-04-25 22:43:25 +0200527 W83627EHF_REG_FAN_MIN[i],
528 (data->fan_min[i] /= 2));
529 }
530 }
531
Guenter Roeckda2e0252010-08-14 21:08:55 +0200532 for (i = 0; i < data->pwm_num; i++) {
533 if (!(data->has_fan & (1 << i)))
534 continue;
535
Jean Delvare77fa49d2009-01-07 16:37:35 +0100536 /* pwmcfg, tolerance mapped for i=0, i=1 to same reg */
Rudolf Marek08c79952006-07-05 18:14:31 +0200537 if (i != 1) {
David Hubbard1ea6dd32007-06-24 11:16:15 +0200538 pwmcfg = w83627ehf_read_value(data,
Rudolf Marek08c79952006-07-05 18:14:31 +0200539 W83627EHF_REG_PWM_ENABLE[i]);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200540 tolerance = w83627ehf_read_value(data,
Rudolf Marek08c79952006-07-05 18:14:31 +0200541 W83627EHF_REG_TOLERANCE[i]);
542 }
543 data->pwm_mode[i] =
544 ((pwmcfg >> W83627EHF_PWM_MODE_SHIFT[i]) & 1)
545 ? 0 : 1;
546 data->pwm_enable[i] =
547 ((pwmcfg >> W83627EHF_PWM_ENABLE_SHIFT[i])
548 & 3) + 1;
David Hubbard1ea6dd32007-06-24 11:16:15 +0200549 data->pwm[i] = w83627ehf_read_value(data,
Rudolf Marek08c79952006-07-05 18:14:31 +0200550 W83627EHF_REG_PWM[i]);
Daniel J Blueman41e9a062009-12-14 18:01:37 -0800551 data->fan_start_output[i] = w83627ehf_read_value(data,
552 W83627EHF_REG_FAN_START_OUTPUT[i]);
553 data->fan_stop_output[i] = w83627ehf_read_value(data,
554 W83627EHF_REG_FAN_STOP_OUTPUT[i]);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200555 data->fan_stop_time[i] = w83627ehf_read_value(data,
Rudolf Marek08c79952006-07-05 18:14:31 +0200556 W83627EHF_REG_FAN_STOP_TIME[i]);
Guenter Roeckda2e0252010-08-14 21:08:55 +0200557
558 if (data->REG_FAN_MAX_OUTPUT[i] != 0xff)
559 data->fan_max_output[i] =
560 w83627ehf_read_value(data,
561 data->REG_FAN_MAX_OUTPUT[i]);
562
563 if (data->REG_FAN_STEP_OUTPUT[i] != 0xff)
564 data->fan_step_output[i] =
565 w83627ehf_read_value(data,
566 data->REG_FAN_STEP_OUTPUT[i]);
567
Rudolf Marek08c79952006-07-05 18:14:31 +0200568 data->target_temp[i] =
David Hubbard1ea6dd32007-06-24 11:16:15 +0200569 w83627ehf_read_value(data,
Rudolf Marek08c79952006-07-05 18:14:31 +0200570 W83627EHF_REG_TARGET[i]) &
571 (data->pwm_mode[i] == 1 ? 0x7f : 0xff);
572 data->tolerance[i] = (tolerance >> (i == 1 ? 4 : 0))
573 & 0x0f;
574 }
575
Jean Delvare08e7e272005-04-25 22:43:25 +0200576 /* Measured temperatures and limits */
David Hubbard1ea6dd32007-06-24 11:16:15 +0200577 data->temp1 = w83627ehf_read_value(data,
Jean Delvare08e7e272005-04-25 22:43:25 +0200578 W83627EHF_REG_TEMP1);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200579 data->temp1_max = w83627ehf_read_value(data,
Jean Delvare08e7e272005-04-25 22:43:25 +0200580 W83627EHF_REG_TEMP1_OVER);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200581 data->temp1_max_hyst = w83627ehf_read_value(data,
Jean Delvare08e7e272005-04-25 22:43:25 +0200582 W83627EHF_REG_TEMP1_HYST);
583 for (i = 0; i < 2; i++) {
David Hubbard1ea6dd32007-06-24 11:16:15 +0200584 data->temp[i] = w83627ehf_read_value(data,
Jean Delvare08e7e272005-04-25 22:43:25 +0200585 W83627EHF_REG_TEMP[i]);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200586 data->temp_max[i] = w83627ehf_read_value(data,
Jean Delvare08e7e272005-04-25 22:43:25 +0200587 W83627EHF_REG_TEMP_OVER[i]);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200588 data->temp_max_hyst[i] = w83627ehf_read_value(data,
Jean Delvare08e7e272005-04-25 22:43:25 +0200589 W83627EHF_REG_TEMP_HYST[i]);
590 }
591
David Hubbard1ea6dd32007-06-24 11:16:15 +0200592 data->alarms = w83627ehf_read_value(data,
Jean Delvarea4589db2006-03-23 16:30:29 +0100593 W83627EHF_REG_ALARM1) |
David Hubbard1ea6dd32007-06-24 11:16:15 +0200594 (w83627ehf_read_value(data,
Jean Delvarea4589db2006-03-23 16:30:29 +0100595 W83627EHF_REG_ALARM2) << 8) |
David Hubbard1ea6dd32007-06-24 11:16:15 +0200596 (w83627ehf_read_value(data,
Jean Delvarea4589db2006-03-23 16:30:29 +0100597 W83627EHF_REG_ALARM3) << 16);
598
Jean Delvare08e7e272005-04-25 22:43:25 +0200599 data->last_updated = jiffies;
600 data->valid = 1;
601 }
602
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100603 mutex_unlock(&data->update_lock);
Jean Delvare08e7e272005-04-25 22:43:25 +0200604 return data;
605}
606
607/*
608 * Sysfs callback functions
609 */
Rudolf Marekcf0676f2006-03-23 16:25:22 +0100610#define show_in_reg(reg) \
611static ssize_t \
612show_##reg(struct device *dev, struct device_attribute *attr, \
613 char *buf) \
614{ \
615 struct w83627ehf_data *data = w83627ehf_update_device(dev); \
616 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
617 int nr = sensor_attr->index; \
618 return sprintf(buf, "%ld\n", in_from_reg(data->reg[nr], nr)); \
619}
620show_in_reg(in)
621show_in_reg(in_min)
622show_in_reg(in_max)
623
624#define store_in_reg(REG, reg) \
625static ssize_t \
626store_in_##reg (struct device *dev, struct device_attribute *attr, \
627 const char *buf, size_t count) \
628{ \
David Hubbard1ea6dd32007-06-24 11:16:15 +0200629 struct w83627ehf_data *data = dev_get_drvdata(dev); \
Rudolf Marekcf0676f2006-03-23 16:25:22 +0100630 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
631 int nr = sensor_attr->index; \
632 u32 val = simple_strtoul(buf, NULL, 10); \
633 \
634 mutex_lock(&data->update_lock); \
635 data->in_##reg[nr] = in_to_reg(val, nr); \
David Hubbard1ea6dd32007-06-24 11:16:15 +0200636 w83627ehf_write_value(data, W83627EHF_REG_IN_##REG(nr), \
Rudolf Marekcf0676f2006-03-23 16:25:22 +0100637 data->in_##reg[nr]); \
638 mutex_unlock(&data->update_lock); \
639 return count; \
640}
641
642store_in_reg(MIN, min)
643store_in_reg(MAX, max)
644
Jean Delvarea4589db2006-03-23 16:30:29 +0100645static ssize_t show_alarm(struct device *dev, struct device_attribute *attr, char *buf)
646{
647 struct w83627ehf_data *data = w83627ehf_update_device(dev);
648 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
649 int nr = sensor_attr->index;
650 return sprintf(buf, "%u\n", (data->alarms >> nr) & 0x01);
651}
652
Rudolf Marekcf0676f2006-03-23 16:25:22 +0100653static struct sensor_device_attribute sda_in_input[] = {
654 SENSOR_ATTR(in0_input, S_IRUGO, show_in, NULL, 0),
655 SENSOR_ATTR(in1_input, S_IRUGO, show_in, NULL, 1),
656 SENSOR_ATTR(in2_input, S_IRUGO, show_in, NULL, 2),
657 SENSOR_ATTR(in3_input, S_IRUGO, show_in, NULL, 3),
658 SENSOR_ATTR(in4_input, S_IRUGO, show_in, NULL, 4),
659 SENSOR_ATTR(in5_input, S_IRUGO, show_in, NULL, 5),
660 SENSOR_ATTR(in6_input, S_IRUGO, show_in, NULL, 6),
661 SENSOR_ATTR(in7_input, S_IRUGO, show_in, NULL, 7),
662 SENSOR_ATTR(in8_input, S_IRUGO, show_in, NULL, 8),
663 SENSOR_ATTR(in9_input, S_IRUGO, show_in, NULL, 9),
664};
665
Jean Delvarea4589db2006-03-23 16:30:29 +0100666static struct sensor_device_attribute sda_in_alarm[] = {
667 SENSOR_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 0),
668 SENSOR_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 1),
669 SENSOR_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 2),
670 SENSOR_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 3),
671 SENSOR_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 8),
672 SENSOR_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 21),
673 SENSOR_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 20),
674 SENSOR_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 16),
675 SENSOR_ATTR(in8_alarm, S_IRUGO, show_alarm, NULL, 17),
676 SENSOR_ATTR(in9_alarm, S_IRUGO, show_alarm, NULL, 19),
677};
678
Rudolf Marekcf0676f2006-03-23 16:25:22 +0100679static struct sensor_device_attribute sda_in_min[] = {
680 SENSOR_ATTR(in0_min, S_IWUSR | S_IRUGO, show_in_min, store_in_min, 0),
681 SENSOR_ATTR(in1_min, S_IWUSR | S_IRUGO, show_in_min, store_in_min, 1),
682 SENSOR_ATTR(in2_min, S_IWUSR | S_IRUGO, show_in_min, store_in_min, 2),
683 SENSOR_ATTR(in3_min, S_IWUSR | S_IRUGO, show_in_min, store_in_min, 3),
684 SENSOR_ATTR(in4_min, S_IWUSR | S_IRUGO, show_in_min, store_in_min, 4),
685 SENSOR_ATTR(in5_min, S_IWUSR | S_IRUGO, show_in_min, store_in_min, 5),
686 SENSOR_ATTR(in6_min, S_IWUSR | S_IRUGO, show_in_min, store_in_min, 6),
687 SENSOR_ATTR(in7_min, S_IWUSR | S_IRUGO, show_in_min, store_in_min, 7),
688 SENSOR_ATTR(in8_min, S_IWUSR | S_IRUGO, show_in_min, store_in_min, 8),
689 SENSOR_ATTR(in9_min, S_IWUSR | S_IRUGO, show_in_min, store_in_min, 9),
690};
691
692static struct sensor_device_attribute sda_in_max[] = {
693 SENSOR_ATTR(in0_max, S_IWUSR | S_IRUGO, show_in_max, store_in_max, 0),
694 SENSOR_ATTR(in1_max, S_IWUSR | S_IRUGO, show_in_max, store_in_max, 1),
695 SENSOR_ATTR(in2_max, S_IWUSR | S_IRUGO, show_in_max, store_in_max, 2),
696 SENSOR_ATTR(in3_max, S_IWUSR | S_IRUGO, show_in_max, store_in_max, 3),
697 SENSOR_ATTR(in4_max, S_IWUSR | S_IRUGO, show_in_max, store_in_max, 4),
698 SENSOR_ATTR(in5_max, S_IWUSR | S_IRUGO, show_in_max, store_in_max, 5),
699 SENSOR_ATTR(in6_max, S_IWUSR | S_IRUGO, show_in_max, store_in_max, 6),
700 SENSOR_ATTR(in7_max, S_IWUSR | S_IRUGO, show_in_max, store_in_max, 7),
701 SENSOR_ATTR(in8_max, S_IWUSR | S_IRUGO, show_in_max, store_in_max, 8),
702 SENSOR_ATTR(in9_max, S_IWUSR | S_IRUGO, show_in_max, store_in_max, 9),
703};
704
Jean Delvare08e7e272005-04-25 22:43:25 +0200705#define show_fan_reg(reg) \
706static ssize_t \
Yuan Mu412fec82006-02-05 23:24:16 +0100707show_##reg(struct device *dev, struct device_attribute *attr, \
708 char *buf) \
Jean Delvare08e7e272005-04-25 22:43:25 +0200709{ \
710 struct w83627ehf_data *data = w83627ehf_update_device(dev); \
Yuan Mu412fec82006-02-05 23:24:16 +0100711 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
712 int nr = sensor_attr->index; \
Jean Delvare08e7e272005-04-25 22:43:25 +0200713 return sprintf(buf, "%d\n", \
714 fan_from_reg(data->reg[nr], \
715 div_from_reg(data->fan_div[nr]))); \
716}
717show_fan_reg(fan);
718show_fan_reg(fan_min);
719
720static ssize_t
Yuan Mu412fec82006-02-05 23:24:16 +0100721show_fan_div(struct device *dev, struct device_attribute *attr,
722 char *buf)
Jean Delvare08e7e272005-04-25 22:43:25 +0200723{
724 struct w83627ehf_data *data = w83627ehf_update_device(dev);
Yuan Mu412fec82006-02-05 23:24:16 +0100725 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
726 int nr = sensor_attr->index;
727 return sprintf(buf, "%u\n", div_from_reg(data->fan_div[nr]));
Jean Delvare08e7e272005-04-25 22:43:25 +0200728}
729
730static ssize_t
Yuan Mu412fec82006-02-05 23:24:16 +0100731store_fan_min(struct device *dev, struct device_attribute *attr,
732 const char *buf, size_t count)
Jean Delvare08e7e272005-04-25 22:43:25 +0200733{
David Hubbard1ea6dd32007-06-24 11:16:15 +0200734 struct w83627ehf_data *data = dev_get_drvdata(dev);
Yuan Mu412fec82006-02-05 23:24:16 +0100735 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
736 int nr = sensor_attr->index;
Jean Delvare08e7e272005-04-25 22:43:25 +0200737 unsigned int val = simple_strtoul(buf, NULL, 10);
738 unsigned int reg;
739 u8 new_div;
740
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100741 mutex_lock(&data->update_lock);
Jean Delvare08e7e272005-04-25 22:43:25 +0200742 if (!val) {
743 /* No min limit, alarm disabled */
744 data->fan_min[nr] = 255;
745 new_div = data->fan_div[nr]; /* No change */
746 dev_info(dev, "fan%u low limit and alarm disabled\n", nr + 1);
747 } else if ((reg = 1350000U / val) >= 128 * 255) {
748 /* Speed below this value cannot possibly be represented,
749 even with the highest divider (128) */
750 data->fan_min[nr] = 254;
751 new_div = 7; /* 128 == (1 << 7) */
752 dev_warn(dev, "fan%u low limit %u below minimum %u, set to "
753 "minimum\n", nr + 1, val, fan_from_reg(254, 128));
754 } else if (!reg) {
755 /* Speed above this value cannot possibly be represented,
756 even with the lowest divider (1) */
757 data->fan_min[nr] = 1;
758 new_div = 0; /* 1 == (1 << 0) */
759 dev_warn(dev, "fan%u low limit %u above maximum %u, set to "
Jean Delvareb9110b12005-05-02 23:08:22 +0200760 "maximum\n", nr + 1, val, fan_from_reg(1, 1));
Jean Delvare08e7e272005-04-25 22:43:25 +0200761 } else {
762 /* Automatically pick the best divider, i.e. the one such
763 that the min limit will correspond to a register value
764 in the 96..192 range */
765 new_div = 0;
766 while (reg > 192 && new_div < 7) {
767 reg >>= 1;
768 new_div++;
769 }
770 data->fan_min[nr] = reg;
771 }
772
773 /* Write both the fan clock divider (if it changed) and the new
774 fan min (unconditionally) */
775 if (new_div != data->fan_div[nr]) {
Jean Delvare158ce072007-06-17 16:09:12 +0200776 /* Preserve the fan speed reading */
777 if (data->fan[nr] != 0xff) {
778 if (new_div > data->fan_div[nr])
779 data->fan[nr] >>= new_div - data->fan_div[nr];
780 else if (data->fan[nr] & 0x80)
781 data->fan[nr] = 0xff;
782 else
783 data->fan[nr] <<= data->fan_div[nr] - new_div;
784 }
Jean Delvare08e7e272005-04-25 22:43:25 +0200785
786 dev_dbg(dev, "fan%u clock divider changed from %u to %u\n",
787 nr + 1, div_from_reg(data->fan_div[nr]),
788 div_from_reg(new_div));
789 data->fan_div[nr] = new_div;
David Hubbard1ea6dd32007-06-24 11:16:15 +0200790 w83627ehf_write_fan_div(data, nr);
Jean Delvare6b3e4642007-06-24 11:19:01 +0200791 /* Give the chip time to sample a new speed value */
792 data->last_updated = jiffies;
Jean Delvare08e7e272005-04-25 22:43:25 +0200793 }
David Hubbard1ea6dd32007-06-24 11:16:15 +0200794 w83627ehf_write_value(data, W83627EHF_REG_FAN_MIN[nr],
Jean Delvare08e7e272005-04-25 22:43:25 +0200795 data->fan_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100796 mutex_unlock(&data->update_lock);
Jean Delvare08e7e272005-04-25 22:43:25 +0200797
798 return count;
799}
800
Yuan Mu412fec82006-02-05 23:24:16 +0100801static struct sensor_device_attribute sda_fan_input[] = {
802 SENSOR_ATTR(fan1_input, S_IRUGO, show_fan, NULL, 0),
803 SENSOR_ATTR(fan2_input, S_IRUGO, show_fan, NULL, 1),
804 SENSOR_ATTR(fan3_input, S_IRUGO, show_fan, NULL, 2),
805 SENSOR_ATTR(fan4_input, S_IRUGO, show_fan, NULL, 3),
806 SENSOR_ATTR(fan5_input, S_IRUGO, show_fan, NULL, 4),
807};
Jean Delvare08e7e272005-04-25 22:43:25 +0200808
Jean Delvarea4589db2006-03-23 16:30:29 +0100809static struct sensor_device_attribute sda_fan_alarm[] = {
810 SENSOR_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 6),
811 SENSOR_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 7),
812 SENSOR_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 11),
813 SENSOR_ATTR(fan4_alarm, S_IRUGO, show_alarm, NULL, 10),
814 SENSOR_ATTR(fan5_alarm, S_IRUGO, show_alarm, NULL, 23),
815};
816
Yuan Mu412fec82006-02-05 23:24:16 +0100817static struct sensor_device_attribute sda_fan_min[] = {
818 SENSOR_ATTR(fan1_min, S_IWUSR | S_IRUGO, show_fan_min,
819 store_fan_min, 0),
820 SENSOR_ATTR(fan2_min, S_IWUSR | S_IRUGO, show_fan_min,
821 store_fan_min, 1),
822 SENSOR_ATTR(fan3_min, S_IWUSR | S_IRUGO, show_fan_min,
823 store_fan_min, 2),
824 SENSOR_ATTR(fan4_min, S_IWUSR | S_IRUGO, show_fan_min,
825 store_fan_min, 3),
826 SENSOR_ATTR(fan5_min, S_IWUSR | S_IRUGO, show_fan_min,
827 store_fan_min, 4),
828};
Jean Delvare08e7e272005-04-25 22:43:25 +0200829
Yuan Mu412fec82006-02-05 23:24:16 +0100830static struct sensor_device_attribute sda_fan_div[] = {
831 SENSOR_ATTR(fan1_div, S_IRUGO, show_fan_div, NULL, 0),
832 SENSOR_ATTR(fan2_div, S_IRUGO, show_fan_div, NULL, 1),
833 SENSOR_ATTR(fan3_div, S_IRUGO, show_fan_div, NULL, 2),
834 SENSOR_ATTR(fan4_div, S_IRUGO, show_fan_div, NULL, 3),
835 SENSOR_ATTR(fan5_div, S_IRUGO, show_fan_div, NULL, 4),
836};
Jean Delvare08e7e272005-04-25 22:43:25 +0200837
Jean Delvare08e7e272005-04-25 22:43:25 +0200838#define show_temp1_reg(reg) \
839static ssize_t \
Greg Kroah-Hartman6f637a62005-06-21 21:01:59 -0700840show_##reg(struct device *dev, struct device_attribute *attr, \
841 char *buf) \
Jean Delvare08e7e272005-04-25 22:43:25 +0200842{ \
843 struct w83627ehf_data *data = w83627ehf_update_device(dev); \
844 return sprintf(buf, "%d\n", temp1_from_reg(data->reg)); \
845}
846show_temp1_reg(temp1);
847show_temp1_reg(temp1_max);
848show_temp1_reg(temp1_max_hyst);
849
850#define store_temp1_reg(REG, reg) \
851static ssize_t \
Greg Kroah-Hartman6f637a62005-06-21 21:01:59 -0700852store_temp1_##reg(struct device *dev, struct device_attribute *attr, \
853 const char *buf, size_t count) \
Jean Delvare08e7e272005-04-25 22:43:25 +0200854{ \
David Hubbard1ea6dd32007-06-24 11:16:15 +0200855 struct w83627ehf_data *data = dev_get_drvdata(dev); \
Christian Hohnstaedt5bfedac2007-08-16 11:40:10 +0200856 long val = simple_strtol(buf, NULL, 10); \
Jean Delvare08e7e272005-04-25 22:43:25 +0200857 \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100858 mutex_lock(&data->update_lock); \
Rudolf Marek08c79952006-07-05 18:14:31 +0200859 data->temp1_##reg = temp1_to_reg(val, -128000, 127000); \
David Hubbard1ea6dd32007-06-24 11:16:15 +0200860 w83627ehf_write_value(data, W83627EHF_REG_TEMP1_##REG, \
Jean Delvare08e7e272005-04-25 22:43:25 +0200861 data->temp1_##reg); \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100862 mutex_unlock(&data->update_lock); \
Jean Delvare08e7e272005-04-25 22:43:25 +0200863 return count; \
864}
865store_temp1_reg(OVER, max);
866store_temp1_reg(HYST, max_hyst);
867
Jean Delvare08e7e272005-04-25 22:43:25 +0200868#define show_temp_reg(reg) \
869static ssize_t \
Yuan Mu412fec82006-02-05 23:24:16 +0100870show_##reg(struct device *dev, struct device_attribute *attr, \
871 char *buf) \
Jean Delvare08e7e272005-04-25 22:43:25 +0200872{ \
873 struct w83627ehf_data *data = w83627ehf_update_device(dev); \
Yuan Mu412fec82006-02-05 23:24:16 +0100874 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
875 int nr = sensor_attr->index; \
Jean Delvare08e7e272005-04-25 22:43:25 +0200876 return sprintf(buf, "%d\n", \
877 LM75_TEMP_FROM_REG(data->reg[nr])); \
878}
879show_temp_reg(temp);
880show_temp_reg(temp_max);
881show_temp_reg(temp_max_hyst);
882
883#define store_temp_reg(REG, reg) \
884static ssize_t \
Yuan Mu412fec82006-02-05 23:24:16 +0100885store_##reg(struct device *dev, struct device_attribute *attr, \
886 const char *buf, size_t count) \
Jean Delvare08e7e272005-04-25 22:43:25 +0200887{ \
David Hubbard1ea6dd32007-06-24 11:16:15 +0200888 struct w83627ehf_data *data = dev_get_drvdata(dev); \
Yuan Mu412fec82006-02-05 23:24:16 +0100889 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
890 int nr = sensor_attr->index; \
Christian Hohnstaedt5bfedac2007-08-16 11:40:10 +0200891 long val = simple_strtol(buf, NULL, 10); \
Jean Delvare08e7e272005-04-25 22:43:25 +0200892 \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100893 mutex_lock(&data->update_lock); \
Jean Delvare08e7e272005-04-25 22:43:25 +0200894 data->reg[nr] = LM75_TEMP_TO_REG(val); \
David Hubbard1ea6dd32007-06-24 11:16:15 +0200895 w83627ehf_write_value(data, W83627EHF_REG_TEMP_##REG[nr], \
Jean Delvare08e7e272005-04-25 22:43:25 +0200896 data->reg[nr]); \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100897 mutex_unlock(&data->update_lock); \
Jean Delvare08e7e272005-04-25 22:43:25 +0200898 return count; \
899}
900store_temp_reg(OVER, temp_max);
901store_temp_reg(HYST, temp_max_hyst);
902
Jean Delvareda667362007-06-24 11:21:02 +0200903static ssize_t
904show_temp_type(struct device *dev, struct device_attribute *attr, char *buf)
905{
906 struct w83627ehf_data *data = w83627ehf_update_device(dev);
907 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
908 int nr = sensor_attr->index;
909 return sprintf(buf, "%d\n", (int)data->temp_type[nr]);
910}
911
Gong Juna157d062009-03-30 21:46:43 +0200912static struct sensor_device_attribute sda_temp_input[] = {
Yuan Mu412fec82006-02-05 23:24:16 +0100913 SENSOR_ATTR(temp1_input, S_IRUGO, show_temp1, NULL, 0),
914 SENSOR_ATTR(temp2_input, S_IRUGO, show_temp, NULL, 0),
915 SENSOR_ATTR(temp3_input, S_IRUGO, show_temp, NULL, 1),
Gong Juna157d062009-03-30 21:46:43 +0200916};
917
918static struct sensor_device_attribute sda_temp_max[] = {
Yuan Mu412fec82006-02-05 23:24:16 +0100919 SENSOR_ATTR(temp1_max, S_IRUGO | S_IWUSR, show_temp1_max,
920 store_temp1_max, 0),
921 SENSOR_ATTR(temp2_max, S_IRUGO | S_IWUSR, show_temp_max,
922 store_temp_max, 0),
923 SENSOR_ATTR(temp3_max, S_IRUGO | S_IWUSR, show_temp_max,
924 store_temp_max, 1),
Gong Juna157d062009-03-30 21:46:43 +0200925};
926
927static struct sensor_device_attribute sda_temp_max_hyst[] = {
Yuan Mu412fec82006-02-05 23:24:16 +0100928 SENSOR_ATTR(temp1_max_hyst, S_IRUGO | S_IWUSR, show_temp1_max_hyst,
929 store_temp1_max_hyst, 0),
930 SENSOR_ATTR(temp2_max_hyst, S_IRUGO | S_IWUSR, show_temp_max_hyst,
931 store_temp_max_hyst, 0),
932 SENSOR_ATTR(temp3_max_hyst, S_IRUGO | S_IWUSR, show_temp_max_hyst,
933 store_temp_max_hyst, 1),
Gong Juna157d062009-03-30 21:46:43 +0200934};
935
936static struct sensor_device_attribute sda_temp_alarm[] = {
Jean Delvarea4589db2006-03-23 16:30:29 +0100937 SENSOR_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 4),
938 SENSOR_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 5),
939 SENSOR_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 13),
Gong Juna157d062009-03-30 21:46:43 +0200940};
941
942static struct sensor_device_attribute sda_temp_type[] = {
Jean Delvareda667362007-06-24 11:21:02 +0200943 SENSOR_ATTR(temp1_type, S_IRUGO, show_temp_type, NULL, 0),
944 SENSOR_ATTR(temp2_type, S_IRUGO, show_temp_type, NULL, 1),
945 SENSOR_ATTR(temp3_type, S_IRUGO, show_temp_type, NULL, 2),
Yuan Mu412fec82006-02-05 23:24:16 +0100946};
Jean Delvare08e7e272005-04-25 22:43:25 +0200947
Rudolf Marek08c79952006-07-05 18:14:31 +0200948#define show_pwm_reg(reg) \
949static ssize_t show_##reg (struct device *dev, struct device_attribute *attr, \
950 char *buf) \
951{ \
952 struct w83627ehf_data *data = w83627ehf_update_device(dev); \
953 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
954 int nr = sensor_attr->index; \
955 return sprintf(buf, "%d\n", data->reg[nr]); \
956}
957
958show_pwm_reg(pwm_mode)
959show_pwm_reg(pwm_enable)
960show_pwm_reg(pwm)
961
962static ssize_t
963store_pwm_mode(struct device *dev, struct device_attribute *attr,
964 const char *buf, size_t count)
965{
David Hubbard1ea6dd32007-06-24 11:16:15 +0200966 struct w83627ehf_data *data = dev_get_drvdata(dev);
Rudolf Marek08c79952006-07-05 18:14:31 +0200967 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
968 int nr = sensor_attr->index;
969 u32 val = simple_strtoul(buf, NULL, 10);
970 u16 reg;
971
972 if (val > 1)
973 return -EINVAL;
974 mutex_lock(&data->update_lock);
David Hubbard1ea6dd32007-06-24 11:16:15 +0200975 reg = w83627ehf_read_value(data, W83627EHF_REG_PWM_ENABLE[nr]);
Rudolf Marek08c79952006-07-05 18:14:31 +0200976 data->pwm_mode[nr] = val;
977 reg &= ~(1 << W83627EHF_PWM_MODE_SHIFT[nr]);
978 if (!val)
979 reg |= 1 << W83627EHF_PWM_MODE_SHIFT[nr];
David Hubbard1ea6dd32007-06-24 11:16:15 +0200980 w83627ehf_write_value(data, W83627EHF_REG_PWM_ENABLE[nr], reg);
Rudolf Marek08c79952006-07-05 18:14:31 +0200981 mutex_unlock(&data->update_lock);
982 return count;
983}
984
985static ssize_t
986store_pwm(struct device *dev, struct device_attribute *attr,
987 const char *buf, size_t count)
988{
David Hubbard1ea6dd32007-06-24 11:16:15 +0200989 struct w83627ehf_data *data = dev_get_drvdata(dev);
Rudolf Marek08c79952006-07-05 18:14:31 +0200990 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
991 int nr = sensor_attr->index;
992 u32 val = SENSORS_LIMIT(simple_strtoul(buf, NULL, 10), 0, 255);
993
994 mutex_lock(&data->update_lock);
995 data->pwm[nr] = val;
David Hubbard1ea6dd32007-06-24 11:16:15 +0200996 w83627ehf_write_value(data, W83627EHF_REG_PWM[nr], val);
Rudolf Marek08c79952006-07-05 18:14:31 +0200997 mutex_unlock(&data->update_lock);
998 return count;
999}
1000
1001static ssize_t
1002store_pwm_enable(struct device *dev, struct device_attribute *attr,
1003 const char *buf, size_t count)
1004{
David Hubbard1ea6dd32007-06-24 11:16:15 +02001005 struct w83627ehf_data *data = dev_get_drvdata(dev);
Rudolf Marek08c79952006-07-05 18:14:31 +02001006 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1007 int nr = sensor_attr->index;
1008 u32 val = simple_strtoul(buf, NULL, 10);
1009 u16 reg;
1010
Daniel J Blueman41e9a062009-12-14 18:01:37 -08001011 if (!val || (val > 4))
Rudolf Marek08c79952006-07-05 18:14:31 +02001012 return -EINVAL;
1013 mutex_lock(&data->update_lock);
David Hubbard1ea6dd32007-06-24 11:16:15 +02001014 reg = w83627ehf_read_value(data, W83627EHF_REG_PWM_ENABLE[nr]);
Rudolf Marek08c79952006-07-05 18:14:31 +02001015 data->pwm_enable[nr] = val;
1016 reg &= ~(0x03 << W83627EHF_PWM_ENABLE_SHIFT[nr]);
1017 reg |= (val - 1) << W83627EHF_PWM_ENABLE_SHIFT[nr];
David Hubbard1ea6dd32007-06-24 11:16:15 +02001018 w83627ehf_write_value(data, W83627EHF_REG_PWM_ENABLE[nr], reg);
Rudolf Marek08c79952006-07-05 18:14:31 +02001019 mutex_unlock(&data->update_lock);
1020 return count;
1021}
1022
1023
1024#define show_tol_temp(reg) \
1025static ssize_t show_##reg(struct device *dev, struct device_attribute *attr, \
1026 char *buf) \
1027{ \
1028 struct w83627ehf_data *data = w83627ehf_update_device(dev); \
1029 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
1030 int nr = sensor_attr->index; \
1031 return sprintf(buf, "%d\n", temp1_from_reg(data->reg[nr])); \
1032}
1033
1034show_tol_temp(tolerance)
1035show_tol_temp(target_temp)
1036
1037static ssize_t
1038store_target_temp(struct device *dev, struct device_attribute *attr,
1039 const char *buf, size_t count)
1040{
David Hubbard1ea6dd32007-06-24 11:16:15 +02001041 struct w83627ehf_data *data = dev_get_drvdata(dev);
Rudolf Marek08c79952006-07-05 18:14:31 +02001042 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr);
1043 int nr = sensor_attr->index;
1044 u8 val = temp1_to_reg(simple_strtoul(buf, NULL, 10), 0, 127000);
1045
1046 mutex_lock(&data->update_lock);
1047 data->target_temp[nr] = val;
David Hubbard1ea6dd32007-06-24 11:16:15 +02001048 w83627ehf_write_value(data, W83627EHF_REG_TARGET[nr], val);
Rudolf Marek08c79952006-07-05 18:14:31 +02001049 mutex_unlock(&data->update_lock);
1050 return count;
1051}
1052
1053static ssize_t
1054store_tolerance(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 u16 reg;
1061 /* Limit the temp to 0C - 15C */
1062 u8 val = temp1_to_reg(simple_strtoul(buf, NULL, 10), 0, 15000);
1063
1064 mutex_lock(&data->update_lock);
David Hubbard1ea6dd32007-06-24 11:16:15 +02001065 reg = w83627ehf_read_value(data, W83627EHF_REG_TOLERANCE[nr]);
Rudolf Marek08c79952006-07-05 18:14:31 +02001066 data->tolerance[nr] = val;
1067 if (nr == 1)
1068 reg = (reg & 0x0f) | (val << 4);
1069 else
1070 reg = (reg & 0xf0) | val;
David Hubbard1ea6dd32007-06-24 11:16:15 +02001071 w83627ehf_write_value(data, W83627EHF_REG_TOLERANCE[nr], reg);
Rudolf Marek08c79952006-07-05 18:14:31 +02001072 mutex_unlock(&data->update_lock);
1073 return count;
1074}
1075
1076static struct sensor_device_attribute sda_pwm[] = {
1077 SENSOR_ATTR(pwm1, S_IWUSR | S_IRUGO, show_pwm, store_pwm, 0),
1078 SENSOR_ATTR(pwm2, S_IWUSR | S_IRUGO, show_pwm, store_pwm, 1),
1079 SENSOR_ATTR(pwm3, S_IWUSR | S_IRUGO, show_pwm, store_pwm, 2),
1080 SENSOR_ATTR(pwm4, S_IWUSR | S_IRUGO, show_pwm, store_pwm, 3),
1081};
1082
1083static struct sensor_device_attribute sda_pwm_mode[] = {
1084 SENSOR_ATTR(pwm1_mode, S_IWUSR | S_IRUGO, show_pwm_mode,
1085 store_pwm_mode, 0),
1086 SENSOR_ATTR(pwm2_mode, S_IWUSR | S_IRUGO, show_pwm_mode,
1087 store_pwm_mode, 1),
1088 SENSOR_ATTR(pwm3_mode, S_IWUSR | S_IRUGO, show_pwm_mode,
1089 store_pwm_mode, 2),
1090 SENSOR_ATTR(pwm4_mode, S_IWUSR | S_IRUGO, show_pwm_mode,
1091 store_pwm_mode, 3),
1092};
1093
1094static struct sensor_device_attribute sda_pwm_enable[] = {
1095 SENSOR_ATTR(pwm1_enable, S_IWUSR | S_IRUGO, show_pwm_enable,
1096 store_pwm_enable, 0),
1097 SENSOR_ATTR(pwm2_enable, S_IWUSR | S_IRUGO, show_pwm_enable,
1098 store_pwm_enable, 1),
1099 SENSOR_ATTR(pwm3_enable, S_IWUSR | S_IRUGO, show_pwm_enable,
1100 store_pwm_enable, 2),
1101 SENSOR_ATTR(pwm4_enable, S_IWUSR | S_IRUGO, show_pwm_enable,
1102 store_pwm_enable, 3),
1103};
1104
1105static struct sensor_device_attribute sda_target_temp[] = {
1106 SENSOR_ATTR(pwm1_target, S_IWUSR | S_IRUGO, show_target_temp,
1107 store_target_temp, 0),
1108 SENSOR_ATTR(pwm2_target, S_IWUSR | S_IRUGO, show_target_temp,
1109 store_target_temp, 1),
1110 SENSOR_ATTR(pwm3_target, S_IWUSR | S_IRUGO, show_target_temp,
1111 store_target_temp, 2),
1112 SENSOR_ATTR(pwm4_target, S_IWUSR | S_IRUGO, show_target_temp,
1113 store_target_temp, 3),
1114};
1115
1116static struct sensor_device_attribute sda_tolerance[] = {
1117 SENSOR_ATTR(pwm1_tolerance, S_IWUSR | S_IRUGO, show_tolerance,
1118 store_tolerance, 0),
1119 SENSOR_ATTR(pwm2_tolerance, S_IWUSR | S_IRUGO, show_tolerance,
1120 store_tolerance, 1),
1121 SENSOR_ATTR(pwm3_tolerance, S_IWUSR | S_IRUGO, show_tolerance,
1122 store_tolerance, 2),
1123 SENSOR_ATTR(pwm4_tolerance, S_IWUSR | S_IRUGO, show_tolerance,
1124 store_tolerance, 3),
1125};
1126
Rudolf Marek08c79952006-07-05 18:14:31 +02001127/* Smart Fan registers */
1128
1129#define fan_functions(reg, REG) \
1130static ssize_t show_##reg(struct device *dev, struct device_attribute *attr, \
1131 char *buf) \
1132{ \
1133 struct w83627ehf_data *data = w83627ehf_update_device(dev); \
1134 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
1135 int nr = sensor_attr->index; \
1136 return sprintf(buf, "%d\n", data->reg[nr]); \
1137}\
1138static ssize_t \
1139store_##reg(struct device *dev, struct device_attribute *attr, \
1140 const char *buf, size_t count) \
1141{\
David Hubbard1ea6dd32007-06-24 11:16:15 +02001142 struct w83627ehf_data *data = dev_get_drvdata(dev); \
Rudolf Marek08c79952006-07-05 18:14:31 +02001143 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
1144 int nr = sensor_attr->index; \
1145 u32 val = SENSORS_LIMIT(simple_strtoul(buf, NULL, 10), 1, 255); \
1146 mutex_lock(&data->update_lock); \
1147 data->reg[nr] = val; \
Guenter Roeckda2e0252010-08-14 21:08:55 +02001148 w83627ehf_write_value(data, data->REG_##REG[nr], val); \
Rudolf Marek08c79952006-07-05 18:14:31 +02001149 mutex_unlock(&data->update_lock); \
1150 return count; \
1151}
1152
Daniel J Blueman41e9a062009-12-14 18:01:37 -08001153fan_functions(fan_start_output, FAN_START_OUTPUT)
1154fan_functions(fan_stop_output, FAN_STOP_OUTPUT)
1155fan_functions(fan_max_output, FAN_MAX_OUTPUT)
1156fan_functions(fan_step_output, FAN_STEP_OUTPUT)
Rudolf Marek08c79952006-07-05 18:14:31 +02001157
1158#define fan_time_functions(reg, REG) \
1159static ssize_t show_##reg(struct device *dev, struct device_attribute *attr, \
1160 char *buf) \
1161{ \
1162 struct w83627ehf_data *data = w83627ehf_update_device(dev); \
1163 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
1164 int nr = sensor_attr->index; \
1165 return sprintf(buf, "%d\n", \
1166 step_time_from_reg(data->reg[nr], data->pwm_mode[nr])); \
1167} \
1168\
1169static ssize_t \
1170store_##reg(struct device *dev, struct device_attribute *attr, \
1171 const char *buf, size_t count) \
1172{ \
David Hubbard1ea6dd32007-06-24 11:16:15 +02001173 struct w83627ehf_data *data = dev_get_drvdata(dev); \
Rudolf Marek08c79952006-07-05 18:14:31 +02001174 struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); \
1175 int nr = sensor_attr->index; \
1176 u8 val = step_time_to_reg(simple_strtoul(buf, NULL, 10), \
1177 data->pwm_mode[nr]); \
1178 mutex_lock(&data->update_lock); \
1179 data->reg[nr] = val; \
David Hubbard1ea6dd32007-06-24 11:16:15 +02001180 w83627ehf_write_value(data, W83627EHF_REG_##REG[nr], val); \
Rudolf Marek08c79952006-07-05 18:14:31 +02001181 mutex_unlock(&data->update_lock); \
1182 return count; \
1183} \
1184
1185fan_time_functions(fan_stop_time, FAN_STOP_TIME)
1186
David Hubbard1ea6dd32007-06-24 11:16:15 +02001187static ssize_t show_name(struct device *dev, struct device_attribute *attr,
1188 char *buf)
1189{
1190 struct w83627ehf_data *data = dev_get_drvdata(dev);
1191
1192 return sprintf(buf, "%s\n", data->name);
1193}
1194static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
Rudolf Marek08c79952006-07-05 18:14:31 +02001195
1196static struct sensor_device_attribute sda_sf3_arrays_fan4[] = {
1197 SENSOR_ATTR(pwm4_stop_time, S_IWUSR | S_IRUGO, show_fan_stop_time,
1198 store_fan_stop_time, 3),
Daniel J Blueman41e9a062009-12-14 18:01:37 -08001199 SENSOR_ATTR(pwm4_start_output, S_IWUSR | S_IRUGO, show_fan_start_output,
1200 store_fan_start_output, 3),
1201 SENSOR_ATTR(pwm4_stop_output, S_IWUSR | S_IRUGO, show_fan_stop_output,
1202 store_fan_stop_output, 3),
1203 SENSOR_ATTR(pwm4_max_output, S_IWUSR | S_IRUGO, show_fan_max_output,
1204 store_fan_max_output, 3),
1205 SENSOR_ATTR(pwm4_step_output, S_IWUSR | S_IRUGO, show_fan_step_output,
1206 store_fan_step_output, 3),
Rudolf Marek08c79952006-07-05 18:14:31 +02001207};
1208
1209static struct sensor_device_attribute sda_sf3_arrays[] = {
1210 SENSOR_ATTR(pwm1_stop_time, S_IWUSR | S_IRUGO, show_fan_stop_time,
1211 store_fan_stop_time, 0),
1212 SENSOR_ATTR(pwm2_stop_time, S_IWUSR | S_IRUGO, show_fan_stop_time,
1213 store_fan_stop_time, 1),
1214 SENSOR_ATTR(pwm3_stop_time, S_IWUSR | S_IRUGO, show_fan_stop_time,
1215 store_fan_stop_time, 2),
Daniel J Blueman41e9a062009-12-14 18:01:37 -08001216 SENSOR_ATTR(pwm1_start_output, S_IWUSR | S_IRUGO, show_fan_start_output,
1217 store_fan_start_output, 0),
1218 SENSOR_ATTR(pwm2_start_output, S_IWUSR | S_IRUGO, show_fan_start_output,
1219 store_fan_start_output, 1),
1220 SENSOR_ATTR(pwm3_start_output, S_IWUSR | S_IRUGO, show_fan_start_output,
1221 store_fan_start_output, 2),
1222 SENSOR_ATTR(pwm1_stop_output, S_IWUSR | S_IRUGO, show_fan_stop_output,
1223 store_fan_stop_output, 0),
1224 SENSOR_ATTR(pwm2_stop_output, S_IWUSR | S_IRUGO, show_fan_stop_output,
1225 store_fan_stop_output, 1),
1226 SENSOR_ATTR(pwm3_stop_output, S_IWUSR | S_IRUGO, show_fan_stop_output,
1227 store_fan_stop_output, 2),
Guenter Roeckda2e0252010-08-14 21:08:55 +02001228};
Daniel J Blueman41e9a062009-12-14 18:01:37 -08001229
Guenter Roeckda2e0252010-08-14 21:08:55 +02001230
1231/*
1232 * pwm1 and pwm3 don't support max and step settings on all chips.
1233 * Need to check support while generating/removing attribute files.
1234 */
1235static struct sensor_device_attribute sda_sf3_max_step_arrays[] = {
1236 SENSOR_ATTR(pwm1_max_output, S_IWUSR | S_IRUGO, show_fan_max_output,
1237 store_fan_max_output, 0),
1238 SENSOR_ATTR(pwm1_step_output, S_IWUSR | S_IRUGO, show_fan_step_output,
1239 store_fan_step_output, 0),
Daniel J Blueman41e9a062009-12-14 18:01:37 -08001240 SENSOR_ATTR(pwm2_max_output, S_IWUSR | S_IRUGO, show_fan_max_output,
1241 store_fan_max_output, 1),
1242 SENSOR_ATTR(pwm2_step_output, S_IWUSR | S_IRUGO, show_fan_step_output,
1243 store_fan_step_output, 1),
Guenter Roeckda2e0252010-08-14 21:08:55 +02001244 SENSOR_ATTR(pwm3_max_output, S_IWUSR | S_IRUGO, show_fan_max_output,
1245 store_fan_max_output, 2),
1246 SENSOR_ATTR(pwm3_step_output, S_IWUSR | S_IRUGO, show_fan_step_output,
1247 store_fan_step_output, 2),
Rudolf Marek08c79952006-07-05 18:14:31 +02001248};
1249
Jean Delvarefc18d6c2007-06-24 11:19:42 +02001250static ssize_t
1251show_vid(struct device *dev, struct device_attribute *attr, char *buf)
1252{
1253 struct w83627ehf_data *data = dev_get_drvdata(dev);
1254 return sprintf(buf, "%d\n", vid_from_reg(data->vid, data->vrm));
1255}
1256static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid, NULL);
1257
Jean Delvare08e7e272005-04-25 22:43:25 +02001258/*
David Hubbard1ea6dd32007-06-24 11:16:15 +02001259 * Driver and device management
Jean Delvare08e7e272005-04-25 22:43:25 +02001260 */
1261
David Hubbardc18beb52006-09-24 21:04:38 +02001262static void w83627ehf_device_remove_files(struct device *dev)
1263{
1264 /* some entries in the following arrays may not have been used in
1265 * device_create_file(), but device_remove_file() will ignore them */
1266 int i;
David Hubbard1ea6dd32007-06-24 11:16:15 +02001267 struct w83627ehf_data *data = dev_get_drvdata(dev);
David Hubbardc18beb52006-09-24 21:04:38 +02001268
1269 for (i = 0; i < ARRAY_SIZE(sda_sf3_arrays); i++)
1270 device_remove_file(dev, &sda_sf3_arrays[i].dev_attr);
Guenter Roeckda2e0252010-08-14 21:08:55 +02001271 for (i = 0; i < ARRAY_SIZE(sda_sf3_max_step_arrays); i++) {
1272 struct sensor_device_attribute *attr =
1273 &sda_sf3_max_step_arrays[i];
1274 if (data->REG_FAN_STEP_OUTPUT[attr->index] != 0xff)
1275 device_remove_file(dev, &attr->dev_attr);
1276 }
David Hubbardc18beb52006-09-24 21:04:38 +02001277 for (i = 0; i < ARRAY_SIZE(sda_sf3_arrays_fan4); i++)
1278 device_remove_file(dev, &sda_sf3_arrays_fan4[i].dev_attr);
David Hubbard1ea6dd32007-06-24 11:16:15 +02001279 for (i = 0; i < data->in_num; i++) {
Gong Juna157d062009-03-30 21:46:43 +02001280 if ((i == 6) && data->in6_skip)
1281 continue;
David Hubbardc18beb52006-09-24 21:04:38 +02001282 device_remove_file(dev, &sda_in_input[i].dev_attr);
1283 device_remove_file(dev, &sda_in_alarm[i].dev_attr);
1284 device_remove_file(dev, &sda_in_min[i].dev_attr);
1285 device_remove_file(dev, &sda_in_max[i].dev_attr);
1286 }
1287 for (i = 0; i < 5; i++) {
1288 device_remove_file(dev, &sda_fan_input[i].dev_attr);
1289 device_remove_file(dev, &sda_fan_alarm[i].dev_attr);
1290 device_remove_file(dev, &sda_fan_div[i].dev_attr);
1291 device_remove_file(dev, &sda_fan_min[i].dev_attr);
1292 }
Gong Jun237c8d2f2009-03-30 21:46:42 +02001293 for (i = 0; i < data->pwm_num; i++) {
David Hubbardc18beb52006-09-24 21:04:38 +02001294 device_remove_file(dev, &sda_pwm[i].dev_attr);
1295 device_remove_file(dev, &sda_pwm_mode[i].dev_attr);
1296 device_remove_file(dev, &sda_pwm_enable[i].dev_attr);
1297 device_remove_file(dev, &sda_target_temp[i].dev_attr);
1298 device_remove_file(dev, &sda_tolerance[i].dev_attr);
1299 }
Gong Juna157d062009-03-30 21:46:43 +02001300 for (i = 0; i < 3; i++) {
1301 if ((i == 2) && data->temp3_disable)
1302 continue;
1303 device_remove_file(dev, &sda_temp_input[i].dev_attr);
1304 device_remove_file(dev, &sda_temp_max[i].dev_attr);
1305 device_remove_file(dev, &sda_temp_max_hyst[i].dev_attr);
1306 device_remove_file(dev, &sda_temp_alarm[i].dev_attr);
1307 device_remove_file(dev, &sda_temp_type[i].dev_attr);
1308 }
David Hubbard1ea6dd32007-06-24 11:16:15 +02001309
1310 device_remove_file(dev, &dev_attr_name);
Jean Delvarecbe311f2008-01-03 21:22:44 +01001311 device_remove_file(dev, &dev_attr_cpu0_vid);
David Hubbardc18beb52006-09-24 21:04:38 +02001312}
1313
David Hubbard1ea6dd32007-06-24 11:16:15 +02001314/* Get the monitoring functions started */
1315static inline void __devinit w83627ehf_init_device(struct w83627ehf_data *data)
Jean Delvare08e7e272005-04-25 22:43:25 +02001316{
1317 int i;
Jean Delvareda667362007-06-24 11:21:02 +02001318 u8 tmp, diode;
Jean Delvare08e7e272005-04-25 22:43:25 +02001319
1320 /* Start monitoring is needed */
David Hubbard1ea6dd32007-06-24 11:16:15 +02001321 tmp = w83627ehf_read_value(data, W83627EHF_REG_CONFIG);
Jean Delvare08e7e272005-04-25 22:43:25 +02001322 if (!(tmp & 0x01))
David Hubbard1ea6dd32007-06-24 11:16:15 +02001323 w83627ehf_write_value(data, W83627EHF_REG_CONFIG,
Jean Delvare08e7e272005-04-25 22:43:25 +02001324 tmp | 0x01);
1325
1326 /* Enable temp2 and temp3 if needed */
1327 for (i = 0; i < 2; i++) {
David Hubbard1ea6dd32007-06-24 11:16:15 +02001328 tmp = w83627ehf_read_value(data,
Jean Delvare08e7e272005-04-25 22:43:25 +02001329 W83627EHF_REG_TEMP_CONFIG[i]);
Gong Juna157d062009-03-30 21:46:43 +02001330 if ((i == 1) && data->temp3_disable)
1331 continue;
Jean Delvare08e7e272005-04-25 22:43:25 +02001332 if (tmp & 0x01)
David Hubbard1ea6dd32007-06-24 11:16:15 +02001333 w83627ehf_write_value(data,
Jean Delvare08e7e272005-04-25 22:43:25 +02001334 W83627EHF_REG_TEMP_CONFIG[i],
1335 tmp & 0xfe);
1336 }
Jean Delvared3130f02007-06-24 11:20:13 +02001337
1338 /* Enable VBAT monitoring if needed */
1339 tmp = w83627ehf_read_value(data, W83627EHF_REG_VBAT);
1340 if (!(tmp & 0x01))
1341 w83627ehf_write_value(data, W83627EHF_REG_VBAT, tmp | 0x01);
Jean Delvareda667362007-06-24 11:21:02 +02001342
1343 /* Get thermal sensor types */
1344 diode = w83627ehf_read_value(data, W83627EHF_REG_DIODE);
1345 for (i = 0; i < 3; i++) {
1346 if ((tmp & (0x02 << i)))
1347 data->temp_type[i] = (diode & (0x10 << i)) ? 1 : 2;
1348 else
1349 data->temp_type[i] = 4; /* thermistor */
1350 }
Jean Delvare08e7e272005-04-25 22:43:25 +02001351}
1352
David Hubbard1ea6dd32007-06-24 11:16:15 +02001353static int __devinit w83627ehf_probe(struct platform_device *pdev)
Jean Delvare08e7e272005-04-25 22:43:25 +02001354{
David Hubbard1ea6dd32007-06-24 11:16:15 +02001355 struct device *dev = &pdev->dev;
1356 struct w83627ehf_sio_data *sio_data = dev->platform_data;
Jean Delvare08e7e272005-04-25 22:43:25 +02001357 struct w83627ehf_data *data;
David Hubbard1ea6dd32007-06-24 11:16:15 +02001358 struct resource *res;
Jean Delvarefc18d6c2007-06-24 11:19:42 +02001359 u8 fan4pin, fan5pin, en_vrm10;
Jean Delvare08e7e272005-04-25 22:43:25 +02001360 int i, err = 0;
1361
David Hubbard1ea6dd32007-06-24 11:16:15 +02001362 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
1363 if (!request_region(res->start, IOREGION_LENGTH, DRVNAME)) {
Jean Delvare08e7e272005-04-25 22:43:25 +02001364 err = -EBUSY;
David Hubbard1ea6dd32007-06-24 11:16:15 +02001365 dev_err(dev, "Failed to request region 0x%lx-0x%lx\n",
1366 (unsigned long)res->start,
1367 (unsigned long)res->start + IOREGION_LENGTH - 1);
Jean Delvare08e7e272005-04-25 22:43:25 +02001368 goto exit;
1369 }
1370
Deepak Saxenaba9c2e82005-10-17 23:08:32 +02001371 if (!(data = kzalloc(sizeof(struct w83627ehf_data), GFP_KERNEL))) {
Jean Delvare08e7e272005-04-25 22:43:25 +02001372 err = -ENOMEM;
1373 goto exit_release;
1374 }
Jean Delvare08e7e272005-04-25 22:43:25 +02001375
David Hubbard1ea6dd32007-06-24 11:16:15 +02001376 data->addr = res->start;
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001377 mutex_init(&data->lock);
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001378 mutex_init(&data->update_lock);
David Hubbard1ea6dd32007-06-24 11:16:15 +02001379 data->name = w83627ehf_device_names[sio_data->kind];
1380 platform_set_drvdata(pdev, data);
Jean Delvare08e7e272005-04-25 22:43:25 +02001381
Gong Jun237c8d2f2009-03-30 21:46:42 +02001382 /* 627EHG and 627EHF have 10 voltage inputs; 627DHG and 667HG have 9 */
1383 data->in_num = (sio_data->kind == w83627ehf) ? 10 : 9;
1384 /* 667HG has 3 pwms */
1385 data->pwm_num = (sio_data->kind == w83667hg) ? 3 : 4;
Jean Delvare08e7e272005-04-25 22:43:25 +02001386
Gong Juna157d062009-03-30 21:46:43 +02001387 /* Check temp3 configuration bit for 667HG */
1388 if (sio_data->kind == w83667hg) {
1389 data->temp3_disable = w83627ehf_read_value(data,
1390 W83627EHF_REG_TEMP_CONFIG[1]) & 0x01;
1391 data->in6_skip = !data->temp3_disable;
1392 }
1393
Guenter Roeckda2e0252010-08-14 21:08:55 +02001394 data->REG_FAN_START_OUTPUT = W83627EHF_REG_FAN_START_OUTPUT;
1395 data->REG_FAN_STOP_OUTPUT = W83627EHF_REG_FAN_STOP_OUTPUT;
1396 data->REG_FAN_MAX_OUTPUT = W83627EHF_REG_FAN_MAX_OUTPUT;
1397 data->REG_FAN_STEP_OUTPUT = W83627EHF_REG_FAN_STEP_OUTPUT;
1398
Jean Delvare08e7e272005-04-25 22:43:25 +02001399 /* Initialize the chip */
David Hubbard1ea6dd32007-06-24 11:16:15 +02001400 w83627ehf_init_device(data);
Jean Delvare08e7e272005-04-25 22:43:25 +02001401
Jean Delvarefc18d6c2007-06-24 11:19:42 +02001402 data->vrm = vid_which_vrm();
1403 superio_enter(sio_data->sioreg);
Jean Delvarefc18d6c2007-06-24 11:19:42 +02001404 /* Read VID value */
Gong Jun237c8d2f2009-03-30 21:46:42 +02001405 if (sio_data->kind == w83667hg) {
1406 /* W83667HG has different pins for VID input and output, so
1407 we can get the VID input values directly at logical device D
1408 0xe3. */
1409 superio_select(sio_data->sioreg, W83667HG_LD_VID);
1410 data->vid = superio_inb(sio_data->sioreg, 0xe3);
Jean Delvarecbe311f2008-01-03 21:22:44 +01001411 err = device_create_file(dev, &dev_attr_cpu0_vid);
1412 if (err)
1413 goto exit_release;
Jean Delvare58e6e782008-01-03 07:33:31 -05001414 } else {
Gong Jun237c8d2f2009-03-30 21:46:42 +02001415 superio_select(sio_data->sioreg, W83627EHF_LD_HWM);
1416 if (superio_inb(sio_data->sioreg, SIO_REG_VID_CTRL) & 0x80) {
1417 /* Set VID input sensibility if needed. In theory the
1418 BIOS should have set it, but in practice it's not
1419 always the case. We only do it for the W83627EHF/EHG
1420 because the W83627DHG is more complex in this
1421 respect. */
1422 if (sio_data->kind == w83627ehf) {
1423 en_vrm10 = superio_inb(sio_data->sioreg,
1424 SIO_REG_EN_VRM10);
1425 if ((en_vrm10 & 0x08) && data->vrm == 90) {
1426 dev_warn(dev, "Setting VID input "
1427 "voltage to TTL\n");
1428 superio_outb(sio_data->sioreg,
1429 SIO_REG_EN_VRM10,
1430 en_vrm10 & ~0x08);
1431 } else if (!(en_vrm10 & 0x08)
1432 && data->vrm == 100) {
1433 dev_warn(dev, "Setting VID input "
1434 "voltage to VRM10\n");
1435 superio_outb(sio_data->sioreg,
1436 SIO_REG_EN_VRM10,
1437 en_vrm10 | 0x08);
1438 }
1439 }
1440
1441 data->vid = superio_inb(sio_data->sioreg,
1442 SIO_REG_VID_DATA);
1443 if (sio_data->kind == w83627ehf) /* 6 VID pins only */
1444 data->vid &= 0x3f;
1445
1446 err = device_create_file(dev, &dev_attr_cpu0_vid);
1447 if (err)
1448 goto exit_release;
1449 } else {
1450 dev_info(dev, "VID pins in output mode, CPU VID not "
1451 "available\n");
1452 }
Jean Delvarefc18d6c2007-06-24 11:19:42 +02001453 }
1454
Rudolf Marek08c79952006-07-05 18:14:31 +02001455 /* fan4 and fan5 share some pins with the GPIO and serial flash */
Gong Jun237c8d2f2009-03-30 21:46:42 +02001456 if (sio_data->kind == w83667hg) {
1457 fan5pin = superio_inb(sio_data->sioreg, 0x27) & 0x20;
1458 fan4pin = superio_inb(sio_data->sioreg, 0x27) & 0x40;
1459 } else {
1460 fan5pin = !(superio_inb(sio_data->sioreg, 0x24) & 0x02);
1461 fan4pin = !(superio_inb(sio_data->sioreg, 0x29) & 0x06);
1462 }
David Hubbard1ea6dd32007-06-24 11:16:15 +02001463 superio_exit(sio_data->sioreg);
Rudolf Marek08c79952006-07-05 18:14:31 +02001464
Jean Delvare08e7e272005-04-25 22:43:25 +02001465 /* It looks like fan4 and fan5 pins can be alternatively used
Rudolf Marek14992c72006-10-08 22:02:09 +02001466 as fan on/off switches, but fan5 control is write only :/
1467 We assume that if the serial interface is disabled, designers
1468 connected fan5 as input unless they are emitting log 1, which
1469 is not the default. */
Rudolf Marek08c79952006-07-05 18:14:31 +02001470
Jean Delvare08e7e272005-04-25 22:43:25 +02001471 data->has_fan = 0x07; /* fan1, fan2 and fan3 */
David Hubbard1ea6dd32007-06-24 11:16:15 +02001472 i = w83627ehf_read_value(data, W83627EHF_REG_FANDIV1);
Jean Delvare1704b262009-03-30 21:46:42 +02001473 if ((i & (1 << 2)) && fan4pin)
Jean Delvare08e7e272005-04-25 22:43:25 +02001474 data->has_fan |= (1 << 3);
Jean Delvare1704b262009-03-30 21:46:42 +02001475 if (!(i & (1 << 1)) && fan5pin)
Jean Delvare08e7e272005-04-25 22:43:25 +02001476 data->has_fan |= (1 << 4);
1477
Mark M. Hoffmanea7be662007-08-05 12:19:01 -04001478 /* Read fan clock dividers immediately */
1479 w83627ehf_update_fan_div(data);
1480
Jean Delvare08e7e272005-04-25 22:43:25 +02001481 /* Register sysfs hooks */
Rudolf Marek08c79952006-07-05 18:14:31 +02001482 for (i = 0; i < ARRAY_SIZE(sda_sf3_arrays); i++)
David Hubbardc18beb52006-09-24 21:04:38 +02001483 if ((err = device_create_file(dev,
1484 &sda_sf3_arrays[i].dev_attr)))
1485 goto exit_remove;
Rudolf Marek08c79952006-07-05 18:14:31 +02001486
Guenter Roeckda2e0252010-08-14 21:08:55 +02001487 for (i = 0; i < ARRAY_SIZE(sda_sf3_max_step_arrays); i++) {
1488 struct sensor_device_attribute *attr =
1489 &sda_sf3_max_step_arrays[i];
1490 if (data->REG_FAN_STEP_OUTPUT[attr->index] != 0xff) {
1491 err = device_create_file(dev, &attr->dev_attr);
1492 if (err)
1493 goto exit_remove;
1494 }
1495 }
Rudolf Marek08c79952006-07-05 18:14:31 +02001496 /* if fan4 is enabled create the sf3 files for it */
Gong Jun237c8d2f2009-03-30 21:46:42 +02001497 if ((data->has_fan & (1 << 3)) && data->pwm_num >= 4)
David Hubbardc18beb52006-09-24 21:04:38 +02001498 for (i = 0; i < ARRAY_SIZE(sda_sf3_arrays_fan4); i++) {
1499 if ((err = device_create_file(dev,
1500 &sda_sf3_arrays_fan4[i].dev_attr)))
1501 goto exit_remove;
1502 }
Rudolf Marek08c79952006-07-05 18:14:31 +02001503
Gong Juna157d062009-03-30 21:46:43 +02001504 for (i = 0; i < data->in_num; i++) {
1505 if ((i == 6) && data->in6_skip)
1506 continue;
David Hubbardc18beb52006-09-24 21:04:38 +02001507 if ((err = device_create_file(dev, &sda_in_input[i].dev_attr))
1508 || (err = device_create_file(dev,
1509 &sda_in_alarm[i].dev_attr))
1510 || (err = device_create_file(dev,
1511 &sda_in_min[i].dev_attr))
1512 || (err = device_create_file(dev,
1513 &sda_in_max[i].dev_attr)))
1514 goto exit_remove;
Gong Juna157d062009-03-30 21:46:43 +02001515 }
Rudolf Marekcf0676f2006-03-23 16:25:22 +01001516
Yuan Mu412fec82006-02-05 23:24:16 +01001517 for (i = 0; i < 5; i++) {
Rudolf Marek08c79952006-07-05 18:14:31 +02001518 if (data->has_fan & (1 << i)) {
David Hubbardc18beb52006-09-24 21:04:38 +02001519 if ((err = device_create_file(dev,
1520 &sda_fan_input[i].dev_attr))
1521 || (err = device_create_file(dev,
1522 &sda_fan_alarm[i].dev_attr))
1523 || (err = device_create_file(dev,
1524 &sda_fan_div[i].dev_attr))
1525 || (err = device_create_file(dev,
1526 &sda_fan_min[i].dev_attr)))
1527 goto exit_remove;
Gong Jun237c8d2f2009-03-30 21:46:42 +02001528 if (i < data->pwm_num &&
David Hubbardc18beb52006-09-24 21:04:38 +02001529 ((err = device_create_file(dev,
1530 &sda_pwm[i].dev_attr))
1531 || (err = device_create_file(dev,
1532 &sda_pwm_mode[i].dev_attr))
1533 || (err = device_create_file(dev,
1534 &sda_pwm_enable[i].dev_attr))
1535 || (err = device_create_file(dev,
1536 &sda_target_temp[i].dev_attr))
1537 || (err = device_create_file(dev,
1538 &sda_tolerance[i].dev_attr))))
1539 goto exit_remove;
Rudolf Marek08c79952006-07-05 18:14:31 +02001540 }
Jean Delvare08e7e272005-04-25 22:43:25 +02001541 }
Rudolf Marek08c79952006-07-05 18:14:31 +02001542
Gong Juna157d062009-03-30 21:46:43 +02001543 for (i = 0; i < 3; i++) {
1544 if ((i == 2) && data->temp3_disable)
1545 continue;
1546 if ((err = device_create_file(dev,
1547 &sda_temp_input[i].dev_attr))
1548 || (err = device_create_file(dev,
1549 &sda_temp_max[i].dev_attr))
1550 || (err = device_create_file(dev,
1551 &sda_temp_max_hyst[i].dev_attr))
1552 || (err = device_create_file(dev,
1553 &sda_temp_alarm[i].dev_attr))
1554 || (err = device_create_file(dev,
1555 &sda_temp_type[i].dev_attr)))
David Hubbardc18beb52006-09-24 21:04:38 +02001556 goto exit_remove;
Gong Juna157d062009-03-30 21:46:43 +02001557 }
David Hubbardc18beb52006-09-24 21:04:38 +02001558
David Hubbard1ea6dd32007-06-24 11:16:15 +02001559 err = device_create_file(dev, &dev_attr_name);
1560 if (err)
1561 goto exit_remove;
1562
Tony Jones1beeffe2007-08-20 13:46:20 -07001563 data->hwmon_dev = hwmon_device_register(dev);
1564 if (IS_ERR(data->hwmon_dev)) {
1565 err = PTR_ERR(data->hwmon_dev);
David Hubbardc18beb52006-09-24 21:04:38 +02001566 goto exit_remove;
1567 }
Jean Delvare08e7e272005-04-25 22:43:25 +02001568
1569 return 0;
1570
David Hubbardc18beb52006-09-24 21:04:38 +02001571exit_remove:
1572 w83627ehf_device_remove_files(dev);
Jean Delvare08e7e272005-04-25 22:43:25 +02001573 kfree(data);
David Hubbard1ea6dd32007-06-24 11:16:15 +02001574 platform_set_drvdata(pdev, NULL);
Jean Delvare08e7e272005-04-25 22:43:25 +02001575exit_release:
David Hubbard1ea6dd32007-06-24 11:16:15 +02001576 release_region(res->start, IOREGION_LENGTH);
Jean Delvare08e7e272005-04-25 22:43:25 +02001577exit:
1578 return err;
1579}
1580
David Hubbard1ea6dd32007-06-24 11:16:15 +02001581static int __devexit w83627ehf_remove(struct platform_device *pdev)
Jean Delvare08e7e272005-04-25 22:43:25 +02001582{
David Hubbard1ea6dd32007-06-24 11:16:15 +02001583 struct w83627ehf_data *data = platform_get_drvdata(pdev);
Jean Delvare08e7e272005-04-25 22:43:25 +02001584
Tony Jones1beeffe2007-08-20 13:46:20 -07001585 hwmon_device_unregister(data->hwmon_dev);
David Hubbard1ea6dd32007-06-24 11:16:15 +02001586 w83627ehf_device_remove_files(&pdev->dev);
1587 release_region(data->addr, IOREGION_LENGTH);
1588 platform_set_drvdata(pdev, NULL);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001589 kfree(data);
Jean Delvare08e7e272005-04-25 22:43:25 +02001590
1591 return 0;
1592}
1593
David Hubbard1ea6dd32007-06-24 11:16:15 +02001594static struct platform_driver w83627ehf_driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +01001595 .driver = {
Jean Delvare87218842006-09-03 22:36:14 +02001596 .owner = THIS_MODULE,
David Hubbard1ea6dd32007-06-24 11:16:15 +02001597 .name = DRVNAME,
Laurent Riffardcdaf7932005-11-26 20:37:41 +01001598 },
David Hubbard1ea6dd32007-06-24 11:16:15 +02001599 .probe = w83627ehf_probe,
1600 .remove = __devexit_p(w83627ehf_remove),
Jean Delvare08e7e272005-04-25 22:43:25 +02001601};
1602
David Hubbard1ea6dd32007-06-24 11:16:15 +02001603/* w83627ehf_find() looks for a '627 in the Super-I/O config space */
1604static int __init w83627ehf_find(int sioaddr, unsigned short *addr,
1605 struct w83627ehf_sio_data *sio_data)
Jean Delvare08e7e272005-04-25 22:43:25 +02001606{
David Hubbard1ea6dd32007-06-24 11:16:15 +02001607 static const char __initdata sio_name_W83627EHF[] = "W83627EHF";
1608 static const char __initdata sio_name_W83627EHG[] = "W83627EHG";
1609 static const char __initdata sio_name_W83627DHG[] = "W83627DHG";
Jean Delvarec1e48dc2009-06-15 18:39:50 +02001610 static const char __initdata sio_name_W83627DHG_P[] = "W83627DHG-P";
Gong Jun237c8d2f2009-03-30 21:46:42 +02001611 static const char __initdata sio_name_W83667HG[] = "W83667HG";
David Hubbard1ea6dd32007-06-24 11:16:15 +02001612
Jean Delvare08e7e272005-04-25 22:43:25 +02001613 u16 val;
David Hubbard1ea6dd32007-06-24 11:16:15 +02001614 const char *sio_name;
Jean Delvare08e7e272005-04-25 22:43:25 +02001615
David Hubbard1ea6dd32007-06-24 11:16:15 +02001616 superio_enter(sioaddr);
Jean Delvare08e7e272005-04-25 22:43:25 +02001617
Jean Delvare67b671b2007-12-06 23:13:42 +01001618 if (force_id)
1619 val = force_id;
1620 else
1621 val = (superio_inb(sioaddr, SIO_REG_DEVID) << 8)
1622 | superio_inb(sioaddr, SIO_REG_DEVID + 1);
David Hubbard657c93b2007-02-14 21:15:04 +01001623 switch (val & SIO_ID_MASK) {
David Hubbard657c93b2007-02-14 21:15:04 +01001624 case SIO_W83627EHF_ID:
David Hubbard1ea6dd32007-06-24 11:16:15 +02001625 sio_data->kind = w83627ehf;
1626 sio_name = sio_name_W83627EHF;
1627 break;
David Hubbard657c93b2007-02-14 21:15:04 +01001628 case SIO_W83627EHG_ID:
David Hubbard1ea6dd32007-06-24 11:16:15 +02001629 sio_data->kind = w83627ehf;
1630 sio_name = sio_name_W83627EHG;
1631 break;
1632 case SIO_W83627DHG_ID:
1633 sio_data->kind = w83627dhg;
1634 sio_name = sio_name_W83627DHG;
David Hubbard657c93b2007-02-14 21:15:04 +01001635 break;
Jean Delvarec1e48dc2009-06-15 18:39:50 +02001636 case SIO_W83627DHG_P_ID:
1637 sio_data->kind = w83627dhg_p;
1638 sio_name = sio_name_W83627DHG_P;
1639 break;
Gong Jun237c8d2f2009-03-30 21:46:42 +02001640 case SIO_W83667HG_ID:
1641 sio_data->kind = w83667hg;
1642 sio_name = sio_name_W83667HG;
1643 break;
David Hubbard657c93b2007-02-14 21:15:04 +01001644 default:
Jean Delvare9f660362007-06-24 11:23:41 +02001645 if (val != 0xffff)
1646 pr_debug(DRVNAME ": unsupported chip ID: 0x%04x\n",
1647 val);
David Hubbard1ea6dd32007-06-24 11:16:15 +02001648 superio_exit(sioaddr);
Jean Delvare08e7e272005-04-25 22:43:25 +02001649 return -ENODEV;
1650 }
1651
David Hubbard1ea6dd32007-06-24 11:16:15 +02001652 /* We have a known chip, find the HWM I/O address */
1653 superio_select(sioaddr, W83627EHF_LD_HWM);
1654 val = (superio_inb(sioaddr, SIO_REG_ADDR) << 8)
1655 | superio_inb(sioaddr, SIO_REG_ADDR + 1);
Jean Delvare1a641fc2007-04-23 14:41:16 -07001656 *addr = val & IOREGION_ALIGNMENT;
Jean Delvare2d8672c2005-07-19 23:56:35 +02001657 if (*addr == 0) {
David Hubbard475ef852007-06-24 11:17:09 +02001658 printk(KERN_ERR DRVNAME ": Refusing to enable a Super-I/O "
1659 "device with a base I/O port 0.\n");
David Hubbard1ea6dd32007-06-24 11:16:15 +02001660 superio_exit(sioaddr);
Jean Delvare08e7e272005-04-25 22:43:25 +02001661 return -ENODEV;
1662 }
1663
1664 /* Activate logical device if needed */
David Hubbard1ea6dd32007-06-24 11:16:15 +02001665 val = superio_inb(sioaddr, SIO_REG_ENABLE);
David Hubbard475ef852007-06-24 11:17:09 +02001666 if (!(val & 0x01)) {
1667 printk(KERN_WARNING DRVNAME ": Forcibly enabling Super-I/O. "
1668 "Sensor is probably unusable.\n");
David Hubbard1ea6dd32007-06-24 11:16:15 +02001669 superio_outb(sioaddr, SIO_REG_ENABLE, val | 0x01);
David Hubbard475ef852007-06-24 11:17:09 +02001670 }
Jean Delvare08e7e272005-04-25 22:43:25 +02001671
David Hubbard1ea6dd32007-06-24 11:16:15 +02001672 superio_exit(sioaddr);
1673 pr_info(DRVNAME ": Found %s chip at %#x\n", sio_name, *addr);
1674 sio_data->sioreg = sioaddr;
1675
Jean Delvare08e7e272005-04-25 22:43:25 +02001676 return 0;
1677}
1678
David Hubbard1ea6dd32007-06-24 11:16:15 +02001679/* when Super-I/O functions move to a separate file, the Super-I/O
1680 * bus will manage the lifetime of the device and this module will only keep
1681 * track of the w83627ehf driver. But since we platform_device_alloc(), we
1682 * must keep track of the device */
1683static struct platform_device *pdev;
1684
Jean Delvare08e7e272005-04-25 22:43:25 +02001685static int __init sensors_w83627ehf_init(void)
1686{
David Hubbard1ea6dd32007-06-24 11:16:15 +02001687 int err;
1688 unsigned short address;
1689 struct resource res;
1690 struct w83627ehf_sio_data sio_data;
1691
1692 /* initialize sio_data->kind and sio_data->sioreg.
1693 *
1694 * when Super-I/O functions move to a separate file, the Super-I/O
1695 * driver will probe 0x2e and 0x4e and auto-detect the presence of a
1696 * w83627ehf hardware monitor, and call probe() */
1697 if (w83627ehf_find(0x2e, &address, &sio_data) &&
1698 w83627ehf_find(0x4e, &address, &sio_data))
Jean Delvare08e7e272005-04-25 22:43:25 +02001699 return -ENODEV;
1700
David Hubbard1ea6dd32007-06-24 11:16:15 +02001701 err = platform_driver_register(&w83627ehf_driver);
1702 if (err)
1703 goto exit;
1704
1705 if (!(pdev = platform_device_alloc(DRVNAME, address))) {
1706 err = -ENOMEM;
1707 printk(KERN_ERR DRVNAME ": Device allocation failed\n");
1708 goto exit_unregister;
1709 }
1710
1711 err = platform_device_add_data(pdev, &sio_data,
1712 sizeof(struct w83627ehf_sio_data));
1713 if (err) {
1714 printk(KERN_ERR DRVNAME ": Platform data allocation failed\n");
1715 goto exit_device_put;
1716 }
1717
1718 memset(&res, 0, sizeof(res));
1719 res.name = DRVNAME;
1720 res.start = address + IOREGION_OFFSET;
1721 res.end = address + IOREGION_OFFSET + IOREGION_LENGTH - 1;
1722 res.flags = IORESOURCE_IO;
Jean Delvareb9acb642009-01-07 16:37:35 +01001723
1724 err = acpi_check_resource_conflict(&res);
1725 if (err)
Hans de Goede18632f82009-02-17 19:59:54 +01001726 goto exit_device_put;
Jean Delvareb9acb642009-01-07 16:37:35 +01001727
David Hubbard1ea6dd32007-06-24 11:16:15 +02001728 err = platform_device_add_resources(pdev, &res, 1);
1729 if (err) {
1730 printk(KERN_ERR DRVNAME ": Device resource addition failed "
1731 "(%d)\n", err);
1732 goto exit_device_put;
1733 }
1734
1735 /* platform_device_add calls probe() */
1736 err = platform_device_add(pdev);
1737 if (err) {
1738 printk(KERN_ERR DRVNAME ": Device addition failed (%d)\n",
1739 err);
1740 goto exit_device_put;
1741 }
1742
1743 return 0;
1744
1745exit_device_put:
1746 platform_device_put(pdev);
1747exit_unregister:
1748 platform_driver_unregister(&w83627ehf_driver);
1749exit:
1750 return err;
Jean Delvare08e7e272005-04-25 22:43:25 +02001751}
1752
1753static void __exit sensors_w83627ehf_exit(void)
1754{
David Hubbard1ea6dd32007-06-24 11:16:15 +02001755 platform_device_unregister(pdev);
1756 platform_driver_unregister(&w83627ehf_driver);
Jean Delvare08e7e272005-04-25 22:43:25 +02001757}
1758
1759MODULE_AUTHOR("Jean Delvare <khali@linux-fr.org>");
1760MODULE_DESCRIPTION("W83627EHF driver");
1761MODULE_LICENSE("GPL");
1762
1763module_init(sensors_w83627ehf_init);
1764module_exit(sensors_w83627ehf_exit);